1763581-1.html (524B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <script> 5 window.onload = function() { 6 setTimeout(step, 500); 7 } 8 9 var reloads = 5; 10 11 function step() { 12 if (--reloads) { 13 document.getElementById("ifr").contentWindow.location.reload(); 14 } else { 15 document.documentElement.className = ""; 16 } 17 } 18 19 function settimouestep() { 20 setTimeout(step, 500); 21 } 22 </script> 23 </head> 24 <body> 25 <iframe id="ifr" src="1763581-1-iframe.html" height="500" width="400" onload="settimouestep()"></iframe> 26 </body> 27 </html>