autofocus-leaves-iframe-ref.html (490B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <link rel='stylesheet' type='text/css' href='style.css'> 4 <script> 5 function loadHandler() 6 { 7 frames[0].document.getElementsByTagName('input')[0].onfocus = function() { 8 document.documentElement.removeAttribute('class'); 9 } 10 frames[0].document.getElementsByTagName('input')[0].focus(); 11 } 12 </script> 13 <body onload="loadHandler();"> 14 <iframe srcdoc="<input>"></iframe> 15 <input></input> 16 </body> 17 </html>