summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/input/number/number-reframe-anon-text-field.html
blob: 52945d6a6310d8ab77853fb3ef0cb01ea10352ca (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";
});

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);
});

    </script>
  </head>
  <body>
    <input type="number">
  </body>
</html>