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