summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/503364-1a.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/503364-1a.html')
-rw-r--r--layout/reftests/bugs/503364-1a.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/layout/reftests/bugs/503364-1a.html b/layout/reftests/bugs/503364-1a.html
new file mode 100644
index 0000000000..a6bc481a5a
--- /dev/null
+++ b/layout/reftests/bugs/503364-1a.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+ <head>
+ <script>
+ function doTest() {
+ var div = document.createElement('div');
+ div.setAttribute("style", "position: absolute; left: 20px; top: 20px; background: black; height: 20px; width: 20px");
+ document.getElementById("t").appendChild(div);
+ document.documentElement.className = "";
+ }
+ window.addEventListener("MozReftestInvalidate", doTest);
+ </script>
+ </head>
+ <body>
+ <table style="position: absolute; top: 100px; left: 100px;">
+ <tr>
+ <td id="t">
+ </td>
+ </tr>
+ </body>
+</html>