dom/events/test/test_bug450876.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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>

mercurial