summaryrefslogtreecommitdiffstats
path: root/layout/reftests/image/img-invalidation-local-transform-1.html
blob: 9bc45ad75977e8ce63d9321d56753f4612bbacff (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
<!DOCTYPE HTML>
<html class="reftest-wait">
<!-- test for bug 1469000 https://bugzilla.mozilla.org/show_bug.cgi?id=1469000 -->
<!-- this based on image/*/delaytest.html tests -->
<head>
<style>
  img {
    max-width: 100%;
    height: auto;
  }
</style>
</head>
<body>
<div style="width: 450px">
<img id="image1" src="img-invalidation-local-transform-1.png" srcset="img-invalidation-local-transform-1.png 400w, img-invalidation-local-transform-1.png 217w, img-invalidation-local-transform-1.png 100w">
</div>


<script>
window.addEventListener("load", forceDecode);
window.addEventListener("MozReftestInvalidate", reftestInvalidateListener);

let decodeComplete = false;
let gotReftestInvalidate = false;

function forceDecode() {
  let img = document.getElementById("image1");
  img.decode().then(function() {
    decodeComplete = true;
    maybeStartTimer();
  });
}

function reftestInvalidateListener() {
  gotReftestInvalidate = true;
  maybeStartTimer();
}

function maybeStartTimer() {
  if (decodeComplete && gotReftestInvalidate) {
    startTimer();
  }
}

function startTimer() {
  const delay = 2000;
  setTimeout("document.documentElement.className = '';", delay);
}
</script>
</body>
</html>