blob: f398bcf6d968dd10d71d6568f15a4ddec85d8dd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!doctype html>
<html class="reftest-wait">
<head>
<script>
var count = 0;
function start() {
if (++count > 10) {
document.documentElement.className = "";
return;
}
var frame = document.getElementById("frame");
frame.src = "./1277272-1-inner.html";
}
function continueTest() {
setTimeout(start.bind(window), 1);
}
</script>
</head>
<body onload="start()"></body>
<iframe id="frame">
</html>
|