851418.html (442B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <meta charset="UTF-8"> 5 <script> 6 7 function boom() 8 { 9 var frameDoc = document.getElementById("f").contentDocument; 10 var frameRoot = frameDoc.documentElement; 11 frameDoc.write(""); 12 frameRoot.setAttribute("onload", ""); 13 frameRoot.onload; 14 document.documentElement.removeAttribute("class"); 15 } 16 17 </script> 18 </head> 19 20 <body onload="boom();"> 21 <iframe id="f" srcdoc="1"></iframe> 22 </body> 23 </html>