1349646-ref.html (346B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <style> 4 button { 5 padding: 0px; 6 border:none; 7 font-size: 64px; 8 background-color: green; 9 } 10 </style> 11 <div> 12 <button id="button1"><span>Menu1</span></button> 13 </div> 14 <script> 15 window.onload = () => { 16 button1.focus(); 17 document.documentElement.classList.remove('reftest-wait'); 18 } 19 </script> 20 </html>