mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Fix WPT lint errors.
This commit is contained in:
parent
c227604a2c
commit
35db26d1a9
3 changed files with 6 additions and 11 deletions
|
@ -14,7 +14,7 @@
|
|||
var t = async_test();
|
||||
|
||||
function scheduleNextTest() {
|
||||
setTimeout(runNextTest, 0);
|
||||
t.step_timeout(runNextTest, 0);
|
||||
}
|
||||
|
||||
function runNextTest() {
|
||||
|
@ -28,9 +28,9 @@
|
|||
}
|
||||
|
||||
function verify(actual, expected, desc) {
|
||||
setTimeout(t.step_func(function() {
|
||||
t.step_timeout(function() {
|
||||
assert_equals(actual, expected, desc);
|
||||
}), 0);
|
||||
}, 0);
|
||||
}
|
||||
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue