tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_bug232004.xhtml (970B)


      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">
     18  
     19 </div>
     20 <pre id="test">
     21 <script class="testbody" type="text/javascript">
     22 <![CDATA[
     23 
     24 /** Test for Bug 232004 */
     25 
     26 $("one").focus();
     27 is(document.activeElement, $("one"), "node one should be focused");
     28 
     29 $("two").focus();
     30 isnot(document.activeElement, $("two"),
     31      "node two has display:none and should not take focus");
     32 
     33 ]]>
     34 </script>
     35 </pre>
     36 </body>
     37 </html>