1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 05:08:00 +01:00

Add @tabindex and @role='button' to 'hinttags'.

This commit is contained in:
Kris Maglione
2010-10-28 15:11:21 -04:00
parent 62d4712212
commit 02c7c71337

View File

@@ -1113,7 +1113,7 @@ const Hints = Module("hints", {
options: function () { options: function () {
const DEFAULT_HINTTAGS = const DEFAULT_HINTTAGS =
util.makeXPath(["input[not(@type='hidden')]", "a", "area", "iframe", "textarea", "button", "select", util.makeXPath(["input[not(@type='hidden')]", "a", "area", "iframe", "textarea", "button", "select",
"*[@onclick or @onmouseover or @onmousedown or @onmouseup or @oncommand or @role='link']"]); "*[@onclick or @onmouseover or @onmousedown or @onmouseup or @oncommand or @tabindex or @role='link' or @role='button']"]);
options.add(["extendedhinttags", "eht"], options.add(["extendedhinttags", "eht"],
"XPath string of hintable elements activated by ';'", "XPath string of hintable elements activated by ';'",