Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <html>
2 <!--
3 https://bugzilla.mozilla.org/show_bug.cgi?id=450876
4 -->
5 <head>
6 <title>Test for Bug 450876 - Crash [@ nsEventStateManager::GetNextTabbableMapArea] with img usemap and tabindex</title>
7 <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
8 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
9 </head>
10 <body>
11 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=450876">Mozilla Bug 450876</a>
12 <p id="display"><a href="#" id="a">link to focus from</a><img usemap="#a" tabindex="1"></p>
13 <div id="content" style="display: none">
15 </div>
17 <pre id="test">
18 <script class="testbody" type="text/javascript">
20 /** Test for Bug 450876 **/
22 function doTest() {
23 is(document.activeElement, document.body, "body element should be focused");
24 document.getElementById('a').focus();
25 is(document.activeElement, document.getElementById('a'), "link should have focus");
26 is(document.hasFocus(), true, "document should be focused");
27 SpecialPowers.DOMWindowUtils.sendKeyEvent('keypress', 9, 0, 0);
28 is(document.activeElement, document.getElementById('a'), "body element should be focused");
29 is(document.hasFocus(), false, "document should not be focused");
31 SimpleTest.finish();
32 }
34 SimpleTest.waitForExplicitFinish();
35 addLoadEvent(doTest);
37 </script>
38 </pre>
39 </body>
40 </html>