mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-01 00:32:11 +00:00
85611a7b6d
--HG-- extra : rebase_source : a22344ee1569f58f1f0a01017bfe0d46a6a14602
18 lines
527 B
HTML
18 lines
527 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<body style="margin:0;">
|
|
<div id="t" style="width:100px; height:100px; background:yellow;">
|
|
<div style="float:left;">
|
|
<div style="position:fixed; left:50px; top:50px; width:100px; height:100px; background:orange;"></div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
function doTest() {
|
|
document.getElementById("t").style.transform = "translate(80px,20px)";
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", doTest);
|
|
</script>
|
|
</body>
|
|
</html>
|