summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1114526-1.html
blob: abadec0792aed223e11b909e164a8e1bf4bbe297 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
var startPaintCount = 0;
function doTest() {
  startPaintCount = window.windowUtils.paintCount;
  document.querySelector('#src').style.visibility='visible';
  document.querySelector('#dest').style.visibility='visible';
  setTimeout(check, 200);
}
var calls = 0;
function check() {
  calls++;
  if ((window.windowUtils.paintCount - startPaintCount) > 3) {
    finishSuccess();
    return;
  }
  if (calls > 10) {
    finishFail();
    return;
  }
  setTimeout(check, 200);
}
function finishSuccess() {
  cleanup();
  document.documentElement.className = "";
}
function finishFail() {
  cleanup();
  document.body.appendChild(document.createTextNode("FAIL FAIL FAIL"));
  document.documentElement.className = "";
}
function cleanup() {
  var src = document.getElementById("src");
  var dest = document.getElementById("dest");
  src.remove();
  dest.remove();
}
</script>
<style>
div {
  width: 100px;
  height: 100px;
  position: absolute;
}

#src {
  background-image: url('1114526-1.gif');
  top: -500px;
  visibility: hidden;
}

#dest {
  background-image: -moz-element(#src);
  top: 100px;
  visibility: hidden;
}
</style>
</head>
<body>
  <div id="src"></div>
  <div id="dest"></div>
<script>
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>