blob: 509da8c70df42fe9149d73529af519bbe9c2f2be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html class="reftest-wait">
<body>
<div id="empty" style="position:fixed; z-index: 4; left:200px; top:200px; width: 0px">
<div style="position:fixed; width:400px; height: 400px; background-color:green; top: 200px; left: 200px"></div>
</div>
<div style="width:400px; height: 400px; background-color:blue"></div>
<script>
function doTest() {
document.getElementById("empty").style.left = "201px";
document.documentElement.removeAttribute("class");
}
document.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>
|