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>