tor-browser

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

009.html (282B)


      1 <!doctype html>
      2 <title>zero arguments</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() {
      8  assert_throws_js(TypeError, function() {
      9    postMessage();
     10  });
     11 });
     12 </script>