tenfourfox/layout/reftests/bugs/816458-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

16 lines
393 B
HTML

<!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");
}, false);
</script>
</body>
</html>