body-frame-margin-remove-other-pres-hint.html (491B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <title></title> 5 </head> 6 <body> 7 <script type="text/javascript"> 8 function loadFrame() { 9 let frame = document.getElementById('frame'); 10 frame.contentDocument.body.removeAttribute('lang'); 11 document.documentElement.className = ""; 12 } 13 </script> 14 <iframe id=frame onload="loadFrame()" srcdoc="<body lang='en'>text</body>" marginwidth="100px" marginheight="100px" width=300px height=300px></iframe> 15 </body> 16 </html>