Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /dom/throttling/throttling-1.window.html - WPT Dashboard Interop Dashboard
// 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.");