blob: b072b51809513428d7eb640850230b45d7310a2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// META: script=resources/throttling.js
setup(() => waitForLoad()
.then(() => "setup done"));
promise_test(t => inFrame(t)
.then(win => win.busy(100))
.then(() => getThrottlingRate(100))
.then(rate => {
assert_less_than(rate, 10, "Timeout was throttled");
}), "Don't throttle parent when all budget in iframe has been used");
|