summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/545049-1.html
blob: 9e675b0345d66f70f793c879d4b98d5a22522409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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);
</script>
</body>
</html>