tor-browser

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

test_bug401160.xhtml (718B)


      1 <html xmlns="http://www.w3.org/1999/xhtml">
      2 <!--
      3 https://bugzilla.mozilla.org/show_bug.cgi?id=401160
      4 -->
      5 <head>
      6  <title>Test for Bug 401160</title>
      7  <script src="/tests/SimpleTest/SimpleTest.js"></script>
      8  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
      9 </head>
     10 <body>
     11 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=401160">Mozilla Bug 401160</a>
     12 <label id="label" contenteditable="true"><legend></legend><div></div></label>
     13 
     14 <pre id="test">
     15 <script type="text/javascript">
     16 
     17 function do_test() {
     18  document.getElementById('label').focus();
     19  ok(true, "This is crash test - the test succeeded if we reach this line")
     20 }
     21 
     22 do_test();
     23 
     24 </script>
     25 </pre>
     26 </body>
     27 </html>