Sign in
webkit
/
WebKit
/
a9c91ce2c5aea1dcbb1791839037fd37c48643d1
/
.
/
Tools
/
TestWebKitAPI
/
ios
/
set-timeout-function.html
blob: 37f74d3adfac2339dfc622790679abb1f785a2ca [
file
] [
log
] [
blame
]
<!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>