summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/816458-1.html
blob: 6db41128ca5b1db90300d91d3e23d8c7e66e119a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html class="reftest-wait">
<body>
<table id="t" border="1" style="width:100%">
  <tbody><tr><td></td></tr></tbody>
</table>
<script>
var t = document.getElementById("t");
window.addEventListener("MozReftestInvalidate", function() {
  t.style.transform = "rotate(90deg)";
  document.documentElement.removeAttribute("class");
});
</script>
</body>
</html>