Sign in
chromium
/
external
/
w3c
/
web-platform-tests
/
refs/heads/css-build-system-update
/
.
/
html
/
webappapis
/
timers
/
negative-settimeout.html
blob: 57e88ee701d80714098b6c710aa661048dbe2182 [
file
] [
log
] [
blame
] [
edit
]
<!doctype html>
<title>
Negative timeout in setTimeout
</title>
<script
src
=
"/resources/testharness.js"
></script>
<script
src
=
"/resources/testharnessreport.js"
></script>
<script>
setTimeout
(
done
,
-
100
);
setTimeout
(
assert_unreached
,
10
);
</script>