mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
17 lines
420 B
HTML
17 lines
420 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<body>
|
|
<table>
|
|
<td id="d" style="-moz-transform:translateX(400px); width:20px; height:20px; background:lime;">
|
|
</td>
|
|
</table>
|
|
<script>
|
|
function doTest() {
|
|
document.getElementById("d").style.MozTransform = "translateX(10px)";
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
window.addEventListener("MozReftestInvalidate", doTest, false);
|
|
</script>
|
|
</body>
|
|
</html>
|