1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<html class="reftest-wait"> <head> <script> var numLoads = 0; function loaded() { numLoads++; if (numLoads == 5) { document.documentElement.className = ""; } } </script> <body> <iframe onload="loaded()" src="331883-1-inner.html"></iframe> </body> </html>