blob: 0d5ce323beef9547ed7490b82df2a8835f6d2b26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE HTML>
<html class="reftest-wait">
<body>
<div id="d" style="background:blue; border-radius:50px; width:200px; height:100px;">
</div>
<script>
function doTest() {
var d = document.getElementById("d");
d.style.height = "200px";
document.documentElement.className = "";
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>
|