blob: 4b3ea595a92e84dffe5ee9cd23adb5d8582d835d (
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 reftest-no-flush">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1">
<style>
html {
overflow: hidden;
}
body {
margin: 0px;
padding: 0px;
}
@keyframes anim {
from { transform: translateX(0px); }
}
#target {
width: 200vw;
height: 100vh;
position: absolute;
/* Some part of this element needs to be visible initially so that */
/* a display item for this element is generated, thus the transform */
/* animation runs on the compositor. */
transform: translateX(90vw);
}
</style>
<div id="target">
<!--
Put an SVG element so that the transform display item has a blob on
Webrender which means this test properly fails without the proper fix.
-->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
<rect fill="green" width="16" height="16"></rect>
</svg>
</div>
<script>
// Waiting MozReftestInvalidate event makes this test fail for some reasons.
// so we use window.onload instead.
window.onload = () => {
target.style.animation = "anim 100s step-end reverse";
target.addEventListener("animationstart", () => {
document.documentElement.classList.remove("reftest-wait");
});
};
</script>
</html>
|