tor-browser

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

test_bug342448.html (839B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <!--
      4 https://bugzilla.mozilla.org/show_bug.cgi?id=342448
      5 -->
      6 <head>
      7  <title>Test for Bug 342448</title>
      8  <script src="/tests/SimpleTest/SimpleTest.js"></script>
      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=342448">Mozilla Bug 342448</a>
     13 <p id="display"></p>
     14 <div id="content" style="display: none">
     15  
     16 </div>
     17 <pre id="test">
     18 <script class="testbody" type="text/javascript">
     19 
     20 /** Test for Bug 342448 */
     21 SimpleTest.waitForExplicitFinish();
     22 SimpleTest.requestFlakyTimeout("untriaged");
     23 try {
     24 setTimeout(1, 0);
     25 } catch (ex) {}
     26 setTimeout(function() { ok(true, "shouldn't crash when passing a number as the first arg to setTimeout"); SimpleTest.finish(); }, 100);
     27 
     28 
     29 
     30 </script>
     31 </pre>
     32 </body>
     33 </html>