Sign in
webkit
/
WebKit
/
070f085f5e8356d46f8d4feb8b86126d4b0078d5
/
.
/
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>