tor-browser

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

test_bug1450164.html (900B)


      1 <!DOCTYPE HTML>
      2 <html>
      3  <!--
      4       https://bugzilla.mozilla.org/show_bug.cgi?id=1450164
      5  -->
      6  <head>
      7    <meta charset="utf-8">
      8    <title>Test for Bug 1450164</title>
      9    <script src="/tests/SimpleTest/SimpleTest.js"></script>
     10    <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
     11    <script type="application/javascript">
     12 
     13     /** Test for Bug 1450164 */
     14 
     15     function runTest() {
     16       var child = window.open("file_bug1450164.html", "", "width=100,height=100");
     17       child.onload = function() {
     18         // After the window loads, close it. If we don't crash in debug, consider that a pass.
     19         child.close();
     20       };
     21     }
     22 
     23     SimpleTest.waitForExplicitFinish();
     24     addLoadEvent(runTest);
     25 
     26    </script>
     27  </head>
     28  <body>
     29    <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1450164">Mozilla Bug 1450164</a>
     30  </body>
     31 </html>