Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/safari-613.1.14.0-branch
/
.
/
Tools
/
TestWebKitAPI
/
ios
/
set-timeout-function.html
blob: 37f74d3adfac2339dfc622790679abb1f785a2ca [
file
] [
log
] [
blame
] [
edit
]
<!DOCTYPE html>
<html>
<head>
<script>
var
i
=
0
;
setTimeout
(
function
()
{
i
++;
},
0
);
setTimeout
(
function
()
{
i
++;
},
10
);
setTimeout
(
function
()
{
i
++;
window
.
location
.
href
=
"?fired-"
+
i
;
},
20
);
</script>
</head>
<body>
</body>
</html>