number-selected.html (479B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <script> 5 6 document.addEventListener("MozReftestInvalidate", function() { 7 document.getElementById("i").select(); 8 document.documentElement.className = ""; 9 }); 10 11 </script> 12 </head> 13 <body> 14 <input id="i" type="number" value="123"> 15 <!-- div to cover spin box area --> 16 <div style="display:block; position:absolute; background-color:black; width:200px; height:100px; top:0px; left:100px;"> 17 </body> 18 </html>