tor-browser

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

navigatorcookies-cookieenabled-true.html (477B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>navigator.cookieEnabled true</title>
      4 <link rel="author" title="Intel" href="http://www.intel.com">
      5 <link rel="help" href="https://html.spec.whatwg.org/#dom-navigator-cookieenabled">
      6 <script src="/resources/testharness.js"></script>
      7 <script src="/resources/testharnessreport.js"></script>
      8 
      9 <script>
     10  test(() => {
     11    assert_true(navigator.cookieEnabled);
     12  }, "navigator.cookieEnabled is true when cookies are enabled");
     13 </script>