mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
16 lines
393 B
HTML
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>
|