summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/dom/throttling/throttling-1.window.js
blob: 86cefc8a812372e0694414a1bb31a9f72c72f4ca (plain)
1
2
3
4
5
6
7
8
9
10
// META: script=resources/throttling.js

setup(() => waitForLoad()
  .then(() => "setup done"));

promise_test(t => busy(100)
  .then(() => getThrottlingRate(100))
  .then(rate => {
    assert_greater_than(rate, 10, "Timeout wasn't throttled");
  }), "Throttle when all budget has been used.");