From bfa7d6a566bea1a200aaf77213570a2aefcf60d4 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 27 Sep 2018 16:35:12 +0200 Subject: [PATCH] Update docs --- doc/changelog.asciidoc | 2 ++ qutebrowser/browser/webelem.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc index 0602a5434..094acb9a4 100644 --- a/doc/changelog.asciidoc +++ b/doc/changelog.asciidoc @@ -68,6 +68,8 @@ Changed patterns instead of globs. - In passthrough mode, Ctrl + Mousewheel now also gets passed through to the page instead of zooming. +- Editing text in an external editor now simulates a JS "input" event, which + improves compatibility with websites reacting via JS to input. Fixed ~~~~~ diff --git a/qutebrowser/browser/webelem.py b/qutebrowser/browser/webelem.py index 5ff59653b..f1e510581 100644 --- a/qutebrowser/browser/webelem.py +++ b/qutebrowser/browser/webelem.py @@ -147,7 +147,7 @@ class AbstractWebElement(collections.abc.MutableMapping): bubbles: Whether this event should bubble. cancelable: Whether this event can be cancelled. composed: Whether the event will trigger listeners outside of a - shadow root + shadow root. """ raise NotImplementedError