mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-07 17:09:07 +00:00
19 lines
486 B
HTML
19 lines
486 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
|
|
document.addEventListener("MozReftestInvalidate", function() {
|
|
document.getElementById("i").select();
|
|
document.documentElement.className = "";
|
|
}, false);
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<input id="i" type="number" value="123">
|
|
<!-- div to cover spin box area -->
|
|
<div style="display:block; position:absolute; background-color:black; width:200px; height:100px; top:0px; left:100px;">
|
|
</body>
|
|
</html>
|