tor-browser

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

one-arg.html (311B)


      1 <!doctype html>
      2 <title>just one argument</title>
      3 <script src="/resources/testharness.js"></script>
      4 <script src="/resources/testharnessreport.js"></script>
      5 <div id="log"></div>
      6 <script>
      7 async_test(t => {
      8  postMessage('');
      9  onmessage = t.step_func_done(e => {
     10    assert_equals(e.data, '');
     11  });
     12 });
     13 </script>