diff options
author | psvenk <45520974+psvenk@users.noreply.github.com> | 2020-05-17 15:54:13 -0400 |
---|---|---|
committer | Jack Rosenthal <jack@rosenth.al> | 2020-05-22 13:19:57 -0600 |
commit | afb7054cdd8aae8ffaf842fff0db14c4551d32fc (patch) | |
tree | a4ed3e807efc1f466bf272a83977a81ed9a5ed13 /common/content | |
parent | dbf02d0b77636eedfe83ff5d9f70920616e8e017 (diff) | |
download | pentadactyl-afb7054cdd8aae8ffaf842fff0db14c4551d32fc.tar.gz |
Make <summary> tags navigable using hints
Add "summary" to 'hinttags' in accordance with Mozilla bug 1249556:
https://bugzilla.mozilla.org/show_bug.cgi?id=1249556
Diffstat (limited to 'common/content')
-rw-r--r-- | common/content/hints.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/hints.js b/common/content/hints.js index eb10fec7..5b7d961f 100644 --- a/common/content/hints.js +++ b/common/content/hints.js @@ -1371,7 +1371,7 @@ var Hints = Module("hints", { "XPath or CSS selector strings of hintable elements for Hints mode", // Make sure to update the docs when you change this. "stringlist", ":-moz-any-link,area,button,iframe,input:not([type=hidden]):not([disabled])," + - "label[for],select,textarea," + + "label[for],select,textarea,summary," + "[onclick],[onmouseover],[onmousedown],[onmouseup],[oncommand]," + "[tabindex],[role=link],[role=button],[contenteditable=true]", { |