diff options
| author | Stephen Blott | 2017-12-14 14:08:35 +0000 | 
|---|---|---|
| committer | Stephen Blott | 2017-12-14 14:12:08 +0000 | 
| commit | f2d7e185c704e3cf8f6ca0c9d3d4da2498610475 (patch) | |
| tree | 965411d361a2c3405d94015a3b8dc9aab6225ca8 /tests/dom_tests | |
| parent | 797e25231b306403167f5a3f90d6cea6d9ba6dda (diff) | |
| download | vimium-f2d7e185c704e3cf8f6ca0c9d3d4da2498610475.tar.bz2 | |
Detect click listeners for link hints.
This is a simpler version of #1167.  It detects clickable elements with
listeners added with `addEventListener()`.
It includes some of @mrmr1993's ideas from #1167 (in fact, it's mostly
those ideas tweaked into a slightly different form).
Diffstat (limited to 'tests/dom_tests')
| -rw-r--r-- | tests/dom_tests/dom_tests.coffee | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/tests/dom_tests/dom_tests.coffee b/tests/dom_tests/dom_tests.coffee index 6e422d46..d9de743e 100644 --- a/tests/dom_tests/dom_tests.coffee +++ b/tests/dom_tests/dom_tests.coffee @@ -51,6 +51,7 @@ activateLinkHintsMode = ->  # link hinting modes.  #  createGeneralHintTests = (isFilteredMode) -> +  window.vimiumOnClickAttributeName = "does-not-matter"    context "Link hints", | 
