tor-browser

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

test_bug1279218.html (704B)


      1 <!DOCTYPE HTML>
      2 <html>
      3  <head>
      4    <title>Test for Bug 1279218</title>
      5    <script src="/tests/SimpleTest/SimpleTest.js"></script>
      6    <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
      7    <script type="text/javascript">
      8     function load() {
      9       let applets = document.applets;
     10       is(applets.length, 0, "Applet list length should be 0, even with applet tag in body");
     11       SimpleTest.finish();
     12     }
     13 
     14     window.onload=load;
     15 
     16     SimpleTest.waitForExplicitFinish();
     17    </script>
     18  </head>
     19  <body>
     20    <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1279218">Mozilla Bug 1279218</a>
     21    <applet id="applet-test"></applet>
     22  </body>
     23 </html>