blob: f35ac902baf674dbe5b9571519fa97cd8d5f391b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<DOCTYPE HTML>
<html class="reftest-wait">
<body>
<div style="overflow:hidden; border:1px solid black;">
<div id="d" style="position:relative; left:10px; height:10px; background:blue;"></div>
</div>
<script>
function doTest() {
d.style.left = "50px";
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>
|