blob: e49ece7a4bb227951bdbe9538e35b4ea583d0a67 (
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>
<meta charset="UTF-8">
<title>Bug 1472465</title>
<style type="text/css">
#container {
border: 1px solid;
width: 500px;
height: 500px;
overflow: hidden;
}
#box {
opacity: 0.1;
position: absolute;
top: 100px
left: 100px;
z-index:1;
background-color: green;
width: 100px;
height: 100px;
}
#bg {
position:relative;
width: 2500px;
height: 2500px;
left: 300px;
top: 300px;
}
</style>
<script type="text/javascript">
function changeOpacity() {
var box = document.querySelector("#box");
box.style.opacity = "1.0";
document.documentElement.removeAttribute("class");
}
function moveBg() {
var bg = document.querySelector("#bg");
bg.style.top = "0px";
bg.style.left = "0px";
setTimeout(changeOpacity, 200);
}
function doTest() {
moveBg();
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</head>
<body>
<div id="container">
<div id="bg">
<div id="box">
Text to force layer state to inactive, that will get flattened.
</div>
</div>
</div>
</body>
</html>
|