tor-browser

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

023.html (275B)


      1 <!doctype html>
      2 <title>null ports</title>
      3 <script src="/resources/testharness.js"></script>
      4 <script src="/resources/testharnessreport.js"></script>
      5 <div id=log></div>
      6 <script>
      7 test(function(t) {
      8  assert_throws_js(TypeError, () => postMessage('', '*', null));
      9 });
     10 </script>