Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | <html> |
michael@0 | 2 | <!-- |
michael@0 | 3 | https://bugzilla.mozilla.org/show_bug.cgi?id=450876 |
michael@0 | 4 | --> |
michael@0 | 5 | <head> |
michael@0 | 6 | <title>Test for Bug 450876 - Crash [@ nsEventStateManager::GetNextTabbableMapArea] with img usemap and tabindex</title> |
michael@0 | 7 | <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 8 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> |
michael@0 | 9 | </head> |
michael@0 | 10 | <body> |
michael@0 | 11 | <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=450876">Mozilla Bug 450876</a> |
michael@0 | 12 | <p id="display"><a href="#" id="a">link to focus from</a><img usemap="#a" tabindex="1"></p> |
michael@0 | 13 | <div id="content" style="display: none"> |
michael@0 | 14 | |
michael@0 | 15 | </div> |
michael@0 | 16 | |
michael@0 | 17 | <pre id="test"> |
michael@0 | 18 | <script class="testbody" type="text/javascript"> |
michael@0 | 19 | |
michael@0 | 20 | /** Test for Bug 450876 **/ |
michael@0 | 21 | |
michael@0 | 22 | function doTest() { |
michael@0 | 23 | is(document.activeElement, document.body, "body element should be focused"); |
michael@0 | 24 | document.getElementById('a').focus(); |
michael@0 | 25 | is(document.activeElement, document.getElementById('a'), "link should have focus"); |
michael@0 | 26 | is(document.hasFocus(), true, "document should be focused"); |
michael@0 | 27 | SpecialPowers.DOMWindowUtils.sendKeyEvent('keypress', 9, 0, 0); |
michael@0 | 28 | is(document.activeElement, document.getElementById('a'), "body element should be focused"); |
michael@0 | 29 | is(document.hasFocus(), false, "document should not be focused"); |
michael@0 | 30 | |
michael@0 | 31 | SimpleTest.finish(); |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 35 | addLoadEvent(doTest); |
michael@0 | 36 | |
michael@0 | 37 | </script> |
michael@0 | 38 | </pre> |
michael@0 | 39 | </body> |
michael@0 | 40 | </html> |
michael@0 | 41 |