blob: 8120b67d694c79f39ffc5bc564959f7c98fbcfb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<style>
input {
font-size: 30pt;
background-color: lightblue;
}
</style>
<script>
document.addEventListener("DOMContentLoaded", function() {
document.body.style.backgroundImage = "none";
}, false);
function PostRebuildAllStyleDataEvent() {
// trigger http://mxr.mozilla.org/mozilla-central/source/layout/base/RestyleManager.cpp?rev=a8b06549f680#1490
var m = document.createElementNS("http://www.w3.org/1998/Math/MathML", "math");
document.head.appendChild(m);
document.head.removeChild(m);
}
function reframe() {
PostRebuildAllStyleDataEvent();
document.documentElement.className = "";
}
document.addEventListener("MozReftestInvalidate", function() {
// Calling reframe now would be too early to reproduce the bug that we're
// testing for. Note that in the event that we start faling this test this
// timeout may make the failure seem intermittent when in fact we would
// always fail if it was longer.
setTimeout(reframe, 500);
}, false);
</script>
</head>
<body>
<input type="number">
</body>
</html>
|