Sign in
◑
Theme
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
23f1d29063a8db18bcd50ef9cfab2c40df25c3f0
/
.
/
Tools
/
TestWebKitAPI
/
Resources
/
cocoa
/
set-timeout-function.html
blob: 37f74d3adfac2339dfc622790679abb1f785a2ca [
file
]
<!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>