tor-browser

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

throttling-2.window.js (352B)


      1 // META: script=resources/throttling.js
      2 
      3 setup(() => waitForLoad()
      4  .then(() => "setup done"));
      5 
      6 promise_test(t => inFrame(t)
      7  .then(win => win.busy(100)
      8                  .then(() => win.getThrottlingRate(100)))
      9  .then(rate => {
     10    assert_greater_than(rate, 10, "Timeout wasn't throttled");
     11  }), "Throttle iframe when all budget has been used");