1478604.html (524B)
1 <!doctype html> 2 <html class="reftest-wait"> 3 <style> 4 input { 5 border: 0; 6 } 7 </style> 8 <label id="fooLabel" for="foo">Foo label</label> 9 <input id="foo" type="text" value="foo" inputmode="none"> 10 <label id="barLabel" for="bar">Bar label</label> 11 <input id="bar" type="text" value="bar" inputmode="none"> 12 <script> 13 onload = function() { 14 fooLabel.click(); 15 requestAnimationFrame(() => { 16 barLabel.click(); 17 requestAnimationFrame(() => { 18 document.documentElement.className = ""; 19 }); 20 }); 21 } 22 </script> 23 </html>