blob: 340633249a1618eea07398c40e6ff2909ed5ad47 (
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
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>Retained display list test</title>
<style type="text/css">
.box {
left: 0px;
top: 0px;
width: 400px;
height: 400px;
}
button {
position: fixed;
outline: none;
background-color: green;
border: none;
}
.red {
position: absolute;
background-color: red;
}
.translate {
transform: translateX(0px);
}
.container {
position: absolute;
top: 0px;
left: 0px;
z-index: 1;
}
</style>
</head>
<body>
<div class="container">
<div class="box red"></div>
<button class="box" id="green"></button>
</div>
<script type="text/javascript">
function doTest() {
document.getElementById("green").classList.add("translate");
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
// setTimeout(doTest, 5000);
</script>
</body>
</html>
|