diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-09-19 12:54:49 -0400 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-09-19 12:54:49 -0400 |
commit | 2828e499d4f0f09ad05e053b6b148f1ede1f1fc6 (patch) | |
tree | b2493514b8ab1e317c66acdab729cb7d1d5a9733 /common | |
parent | 062e7e2a61b1ba8f5c82dbadb5414a598050e818 (diff) | |
download | pentadactyl-2828e499d4f0f09ad05e053b6b148f1ede1f1fc6.tar.gz |
Fix :h 'hinttags' default value.
Diffstat (limited to 'common')
-rw-r--r-- | common/content/hints.js | 2 | ||||
-rw-r--r-- | common/locale/en-US/options.xml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/common/content/hints.js b/common/content/hints.js index 4bd50348..d4774167 100644 --- a/common/content/hints.js +++ b/common/content/hints.js @@ -1281,7 +1281,7 @@ var Hints = Module("hints", { options.add(["hinttags", "ht"], "XPath or CSS selector strings of hintable elements for Hints mode", - "stringlist", "input:not([type=hidden]),a[href],area,iframe,textarea,button,select," + + "stringlist", "a[href],area,button,iframe,input:not([type=hidden]),select,textarea," + "[onclick],[onmouseover],[onmousedown],[onmouseup],[oncommand]," + "[tabindex],[role=link],[role=button],[contenteditable=true]", { diff --git a/common/locale/en-US/options.xml b/common/locale/en-US/options.xml index d7dadf5a..36d10ad7 100644 --- a/common/locale/en-US/options.xml +++ b/common/locale/en-US/options.xml @@ -892,9 +892,9 @@ <strut/> <spec>'hinttags' 'ht'</spec> <type>&option.hinttags.type;</type> - <default>a,area,button,iframe,input:not([type=hidden]),select,textarea, + <default>a[href],area,button,iframe,input:not([type=hidden]),select,textarea, [onclick],[onmouseover],[onmousedown],[onmouseup],[oncommand], - [tabindex],[role=link],[role=button]</default> + [tabindex],[role=link],[role=button],[contenteditable=true]</default> <description> <p> A list of CSS selectors or XPath expressions used to select elements |