2009-09-25 03:52:13 +04:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html class="reftest-wait">
|
|
|
|
<body>
|
2010-09-09 19:21:47 +04:00
|
|
|
<div id="d" style="background:blue; border-radius:50px; width:200px; height:100px;">
|
2009-09-25 03:52:13 +04:00
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
function doTest() {
|
|
|
|
var d = document.getElementById("d");
|
|
|
|
d.style.height = "200px";
|
|
|
|
document.documentElement.className = "";
|
|
|
|
}
|
2017-01-17 13:50:25 +03:00
|
|
|
window.addEventListener("MozReftestInvalidate", doTest);
|
2009-09-25 03:52:13 +04:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|