tor-browser

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

unexpected-global-properties.html (439B)


      1 <!doctype html>
      2 <title>unexpected members/interface objects/constructors</title>
      3 <script src="/resources/testharness.js"></script>
      4 <script src="/resources/testharnessreport.js"></script>
      5 <script>
      6 async_test(t => {
      7  const worker = new SharedWorker('unexpected-global-properties.js');
      8  worker.port.onmessage = t.step_func_done(e => {
      9    assert_equals(e.data, '');
     10  });
     11 }, 'Test unexpected properties are not in global scope');
     12 </script>