tor-browser

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

test_bug830858.xhtml (1054B)


      1 <?xml version="1.0"?>
      2 <?xml-stylesheet type="text/css" href="chrome://global/skin"?>
      3 <?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
      4 <!--
      5 https://bugzilla.mozilla.org/show_bug.cgi?id=830858
      6 -->
      7 <window title="Mozilla Bug 830858"
      8        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
      9         onload="runTests()">
     10  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
     11 
     12  <!-- test code goes here -->
     13  <script type="application/javascript">
     14  <![CDATA[
     15 
     16  /** Test for Bug 830858 */
     17 
     18  function runTests() {
     19    window.openDialog("file_bug830858.xhtml", "_blank", "chrome,width=600,height=550,noopener", window);
     20  }
     21 
     22  function finishedTests() {
     23    SimpleTest.finish();
     24  }
     25 
     26  SimpleTest.waitForExplicitFinish();
     27 
     28  ]]>
     29  </script>
     30 
     31  <!-- test results are displayed in the html:body -->
     32  <body xmlns="http://www.w3.org/1999/xhtml">
     33  <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=830858"
     34     target="_blank">Mozilla Bug 830858</a>
     35  </body>
     36 </window>