mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Update web-platform-tests to revision 81962ac8802223d038b188b6f9cb88a0a9c5beee
This commit is contained in:
parent
fe1a057bd1
commit
24183668c4
1960 changed files with 29853 additions and 10555 deletions
|
@ -0,0 +1,34 @@
|
|||
function timeout_trampoline(t, timeout, message) {
|
||||
t.step_timeout(function() {
|
||||
// Yield in case we managed to be called before the second interval callback.
|
||||
t.step_timeout(function() {
|
||||
assert_unreached(message);
|
||||
}, timeout);
|
||||
}, timeout);
|
||||
}
|
||||
|
||||
async_test(function(t) {
|
||||
let ctr = 0;
|
||||
let h = setInterval(t.step_func(function() {
|
||||
if (++ctr == 2) {
|
||||
clearInterval(h);
|
||||
t.done();
|
||||
return;
|
||||
}
|
||||
}) /* no interval */);
|
||||
|
||||
timeout_trampoline(t, 100, "Expected setInterval callback to be called two times");
|
||||
}, "Calling setInterval with no interval should be the same as if called with 0 interval");
|
||||
|
||||
async_test(function(t) {
|
||||
let ctr = 0;
|
||||
let h = setInterval(t.step_func(function() {
|
||||
if (++ctr == 2) {
|
||||
clearInterval(h);
|
||||
t.done();
|
||||
return;
|
||||
}
|
||||
}), undefined);
|
||||
|
||||
timeout_trampoline(t, 100, "Expected setInterval callback to be called two times");
|
||||
}, "Calling setInterval with undefined interval should be the same as if called with 0 interval");
|
Loading…
Add table
Add a link
Reference in a new issue