blob: bb1654428575c6594478ffc8acb2c0c0c194f464 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
document.addEventListener("MozReftestInvalidate", function() {
document.getElementById("i").stepUp();
document.documentElement.className = "";
}, false);
</script>
</head>
<body>
<input id="i" type="number" value="1.001" step="0.00000000000001"
style="width:100%;">
</body>
</html>
|