summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2018-09-27 16:35:12 +0200
committerFlorian Bruhin <me@the-compiler.org>2018-09-27 16:36:33 +0200
commitbfa7d6a566bea1a200aaf77213570a2aefcf60d4 (patch)
tree13d24e2ff4387b5b0436bd2447c1f72938deaa85
parent718376f15491c29a3ad4f8981f8e3a50dedd081b (diff)
downloadqutebrowser-bfa7d6a566bea1a200aaf77213570a2aefcf60d4.tar.gz
qutebrowser-bfa7d6a566bea1a200aaf77213570a2aefcf60d4.zip
Update docs
-rw-r--r--doc/changelog.asciidoc2
-rw-r--r--qutebrowser/browser/webelem.py2
2 files changed, 3 insertions, 1 deletions
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