diff options
author | Oleg Gaidarenko <markelog@gmail.com> | 2013-04-08 21:33:17 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-04-08 21:33:17 -0400 |
commit | f1ba486ee3faeb70faeec1688b79ed085dd6a102 (patch) | |
tree | 12eb4c8dd3ee88d4eb78e448c3c9e4c11caa1cd3 /test/index.html | |
parent | 52394ba986794423e7855ece3b4f80a1f2fb7398 (diff) | |
download | jquery-f1ba486ee3faeb70faeec1688b79ed085dd6a102.tar.gz jquery-f1ba486ee3faeb70faeec1688b79ed085dd6a102.zip |
Adjust tabIndex propHook for modern browsers and return -1 where appropriate. Close gh-1228.
Diffstat (limited to 'test/index.html')
-rw-r--r-- | test/index.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/index.html b/test/index.html index cf9590a61..07cae2ccb 100644 --- a/test/index.html +++ b/test/index.html @@ -273,6 +273,12 @@ Z</textarea> <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> + <input id="inputWithoutTabIndex"/> + <button id="buttonWithoutTabIndex"></button> + <textarea id="textareaWithoutTabIndex"></textarea> + <menu type="popup"> + <menuitem id="menuitemWithoutTabIndex" command="submitbutton" default/> + </menu> </div> <div id="liveHandlerOrder"> |