blob: 66b6fa2b7c7f13ebc09b1fae31b9956fa07d2bdc (
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
|
<!DOCTYPE html>
<html lang="en" class="reftest-wait">
<meta charset="utf-8">
<title>The green box shouldn't be invalidated when the blue box starts to move.</title>
<style>
body {
margin: 0;
}
#clip {
border: 1px solid black;
margin: 50px;
overflow: hidden;
height: 200px;
width: 400px;
position: relative;
}
#animatedTransform {
border: 1px solid blue;
width: 100px;
height: 100px;
position: absolute;
z-index: 1;
top: 50px;
left: 50px;
transition: transform ease-in-out 100s forwards;
}
#clip:hover > #animatedTransform,
#animatedTransform.animate {
transform: translateX(200px);
}
#aboveTransform {
position: relative;
margin: 50px 100px;
border: 1px solid lime;
width: 80px;
height: 80px;
z-index: 2;
}
</style>
<div id="clip">
<div id="animatedTransform"></div>
</div>
<div id="aboveTransform" class="reftest-no-paint"></div>
<script>
function doTest() {
document.getElementById("animatedTransform").className = "animate";
document.documentElement.removeAttribute("class");
}
document.addEventListener("MozReftestInvalidate", doTest);
</script>
|