tor-browser

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

test_transition_finish_on_compositor.html (631B)


      1 <!doctype html>
      2 <meta charset=utf-8>
      3 <script src="/resources/testharness.js"></script>
      4 <script src="/resources/testharnessreport.js"></script>
      5 <div id="log"></div>
      6 <script>
      7 'use strict';
      8 setup({explicit_done: true});
      9 // This test appears like it might get racey and cause a timeout with too low of a
     10 // precision, so we hardcode it to something reasonable.
     11 SpecialPowers.pushPrefEnv(
     12  {
     13    set: [
     14      ['privacy.reduceTimerPrecision', true],
     15      ['privacy.resistFingerprinting.reduceTimerPrecision.microseconds', 2000],
     16    ],
     17  },
     18  function() {
     19    window.open('file_transition_finish_on_compositor.html');
     20  }
     21 );
     22 </script>