tor-browser

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

test_bug648465.html (724B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <!--
      4 https://bugzilla.mozilla.org/show_bug.cgi?id=648465
      5 -->
      6 <head>
      7  <title>Test for Bug 648465</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"
     13  href="https://bugzilla.mozilla.org/show_bug.cgi?id=648465">
     14  Mozilla Bug 648465</a>
     15 <p id="display"></p>
     16 <div id="content" style="display: none">
     17  
     18 </div>
     19 <pre id="test">
     20 <script class="testbody" type="text/javascript">
     21 
     22 /** Test for Bug 648465 */
     23 var w = window.open('about:blank');
     24 try {
     25  is(w.fullScreen, false, "can access non-allAccess properties of w");
     26 } finally {
     27  w.close();
     28 }
     29 
     30 </script>
     31 </pre>
     32 </body>
     33 </html>