Bug 1878930 - s/RawBuffer/Span/: UniformData. r=gfx-reviewers,lsalzman
[gecko.git] / dom / xml / test / test_bug232004.xhtml
bloba15129a71eeaac9b10c2e1eac54e2ed71bfe0d3d
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <!--
3 https://bugzilla.mozilla.org/show_bug.cgi?id=232004
4 -->
5 <head>
6 <title>Test for Bug 232004</title>
7 <script src="/tests/SimpleTest/SimpleTest.js"></script>
8 <script src="/tests/SimpleTest/EventUtils.js"/>
9 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
10 </head>
11 <body>
12 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=232004">Mozilla Bug 232004</a>
13 <p id="display">
14 <input id="one" type="text" />
15 <input style="display: none" id="two" type="text" />
16 </p>
17 <div id="content" style="display: none">
19 </div>
20 <pre id="test">
21 <script class="testbody" type="text/javascript">
22 <![CDATA[
24 /** Test for Bug 232004 **/
26 $("one").focus();
27 is(document.activeElement, $("one"), "node one should be focused");
29 $("two").focus();
30 isnot(document.activeElement, $("two"),
31 "node two has display:none and should not take focus");
33 ]]>
34 </script>
35 </pre>
36 </body>
37 </html>