aboutsummaryrefslogtreecommitdiffstats
path: root/test/index.html
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2009-01-19 21:40:23 +0000
committerJohn Resig <jeresig@gmail.com>2009-01-19 21:40:23 +0000
commit96152559e0e2fa1afc70f8994e664f5805aebad5 (patch)
tree4c4bdea1c17136b53aa7260316a274921435361a /test/index.html
parentd6e541426d10b335fa3b6b481ae591ede977c480 (diff)
downloadjquery-96152559e0e2fa1afc70f8994e664f5805aebad5.tar.gz
jquery-96152559e0e2fa1afc70f8994e664f5805aebad5.zip
Landing a fix for non-link anchor tabIndex (from scott.gonzalez). Fixes ticket #3916.
Diffstat (limited to 'test/index.html')
-rw-r--r--test/index.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/index.html b/test/index.html
index e47a852c8..b5b80dd9b 100644
--- a/test/index.html
+++ b/test/index.html
@@ -198,7 +198,7 @@ Z</textarea>
</div>
<div id="tabindex-tests">
- <ol id="listWithTabIndex" tabindex="0">
+ <ol id="listWithTabIndex" tabindex="5">
<li id="foodWithNegativeTabIndex" tabindex="-1">Rice</li>
<li id="foodNoTabIndex">Beans</li>
<li>Blinis</li>
@@ -209,6 +209,9 @@ Z</textarea>
<span>...</span><a href="#" id="linkWithNoTabIndex">Eat lots of food</a><span>...</span> |
<span>...</span><a href="#" id="linkWithTabIndex" tabindex="2">Eat a little food</a><span>...</span> |
<span>...</span><a href="#" id="linkWithNegativeTabIndex" tabindex="-1">Eat no food</a><span>...</span>
+ <span>...</span><a id="linkWithNoHrefWithNoTabIndex">Eat a burger</a><span>...</span>
+ <span>...</span><a id="linkWithNoHrefWithTabIndex" tabindex="1">Eat some funyuns</a><span>...</span>
+ <span>...</span><a id="linkWithNoHrefWithNegativeTabIndex" tabindex="-1">Eat some funyuns</a><span>...</span>
</div>
</div>
</dl>