tor-browser

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

base.html (356B)


      1 <!doctype html>
      2 <meta charset=utf-8>
      3 <title>Script src with a base URL</title>
      4 <script src=/resources/testharness.js></script>
      5 <script src=/resources/testharnessreport.js></script>
      6 <base href=../beta/>
      7 <div id=log></div>
      8 <script>
      9 function do_test(path) {
     10  test(function() {
     11    assert_equals(path, "beta");
     12  });
     13 }
     14 </script>
     15 <script src=test.js></script>