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