tor-browser

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

location_search.html (464B)


      1 <!DOCTYPE HTML>
      2 <html>
      3  <head>
      4    <title>location_search</title>
      5    <script src="/resources/testharness.js"></script>
      6    <script src="/resources/testharnessreport.js"></script>
      7  </head>
      8  <body>
      9    <div id="log"></div>
     10    <script>
     11    test(function () {
     12      window.history.pushState(1, document.title, '?x=1');
     13      var search = location.search;
     14 
     15      assert_equals(search, "?x=1", "search");
     16 
     17    }, "location search");
     18    </script>
     19  </body>
     20 </html>