dom/events/test/test_bug450876.html

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:5352d09d1f88
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">
14
15 </div>
16
17 <pre id="test">
18 <script class="testbody" type="text/javascript">
19
20 /** Test for Bug 450876 **/
21
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");
30
31 SimpleTest.finish();
32 }
33
34 SimpleTest.waitForExplicitFinish();
35 addLoadEvent(doTest);
36
37 </script>
38 </pre>
39 </body>
40 </html>
41

mercurial