1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<html class="reftest-wait"> <head> <script type="text/javascript"> var childLoads = 0; function inc() { ++childLoads; if (childLoads >= 2) document.documentElement.removeAttribute("class"); } </script> </head> <body> <iframe src="412651-1-frame.xhtml" onload="inc();"></iframe> </body> </html>