1 <html xmlns=
"http://www.w3.org/1999/xhtml">
3 https://bugzilla.mozilla.org/show_bug.cgi?id=232004
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" />
12 <a target=
"_blank" href=
"https://bugzilla.mozilla.org/show_bug.cgi?id=232004">Mozilla Bug
232004</a>
14 <input id=
"one" type=
"text" />
15 <input style=
"display: none" id=
"two" type=
"text" />
17 <div id=
"content" style=
"display: none">
21 <script class=
"testbody" type=
"text/javascript">
24 /** Test for Bug
232004 **/
27 is(document.activeElement, $(
"one"),
"node one should be focused");
30 isnot(document.activeElement, $(
"two"),
31 "node two has display:none and should not take focus");