Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
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 type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
8 <script type="text/javascript" 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>