dom/tests/mochitest/general/test_focus_legend_noparent.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

michael@0 1 <html>
michael@0 2 <head>
michael@0 3 <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
michael@0 4 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
michael@0 5 <script type="text/javascript">
michael@0 6
michael@0 7 SimpleTest.waitForExplicitFinish();
michael@0 8
michael@0 9 function runTest()
michael@0 10 {
michael@0 11 window.focus();
michael@0 12 var g = document.createElementNS("http://www.w3.org/1999/xhtml", "legend");
michael@0 13 document.body.appendChild(g);
michael@0 14 setTimeout(g.focus.bind(g), 0);
michael@0 15 setTimeout(done, 10);
michael@0 16 }
michael@0 17
michael@0 18 function done()
michael@0 19 {
michael@0 20 ok(document.hasFocus(), "document is still focused");
michael@0 21 is(document.activeElement, document.body, "document has no focused element")
michael@0 22 SimpleTest.finish();
michael@0 23 }
michael@0 24
michael@0 25 SimpleTest.waitForFocus(runTest);
michael@0 26 </script>
michael@0 27 </head>
michael@0 28
michael@0 29 <p id="display"></p>
michael@0 30 <div id="content" style="display: none">
michael@0 31 </div>
michael@0 32
michael@0 33 <body onblur="dump('blurred window!\n')"></body>
michael@0 34 </html>

mercurial