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