diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/bugs/816458-1.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/layout/reftests/bugs/816458-1.html b/layout/reftests/bugs/816458-1.html new file mode 100644 index 0000000000..6db41128ca --- /dev/null +++ b/layout/reftests/bugs/816458-1.html @@ -0,0 +1,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>
|