tor-browser

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

test_bug386386.html (867B)


      1 <html>
      2 <head><title>Testcase for bug 386386</title>
      3 <!--
      4 https://bugzilla.mozilla.org/show_bug.cgi?id=386386
      5 -->
      6  <script src="/tests/SimpleTest/SimpleTest.js"></script>
      7 </head>
      8 <body>
      9 
     10 <iframe id="test386386" src="file_bug386386.sjs"></iframe>
     11 
     12 <script class="testbody" type="application/javascript">
     13 
     14 function boom()
     15 {
     16  var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
     17  var doc = document.getElementById("test386386").contentDocument;
     18  var observes = doc.createElementNS(XUL_NS, 'observes');
     19  doc.removeChild(doc.documentElement);
     20  doc.appendChild(observes);
     21  is(0, 0, "Test is successful if we get here without crashing");
     22  SimpleTest.finish();
     23 }
     24 
     25 function do_test() {
     26  setTimeout(boom, 200);
     27 }
     28 SimpleTest.waitForExplicitFinish();
     29 SimpleTest.requestFlakyTimeout("untriaged");
     30 addLoadEvent(do_test);
     31 </script>
     32 
     33 </body>
     34 </html>