tor-browser

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

cpu-performance.tentative.https.window.js (419B)


      1 test(function () {
      2  assert_equals(typeof navigator.cpuPerformance, "number",
      3    "navigator.cpuPerformance returns a number");
      4  assert_true(Number.isInteger(navigator.cpuPerformance),
      5    "navigator.cpuPerformance returns an integer value");
      6  assert_true(navigator.cpuPerformance >= 0,
      7    "navigator.cpuPerformance returns a non-negative value");
      8 }, "navigator.cpuPerformance is valid, if the feature is enabled");