summaryrefslogtreecommitdiffstats
path: root/layout/reftests/display-list/1453541-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/display-list/1453541-1.html')
-rw-r--r--layout/reftests/display-list/1453541-1.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/display-list/1453541-1.html b/layout/reftests/display-list/1453541-1.html
new file mode 100644
index 0000000000..509da8c70d
--- /dev/null
+++ b/layout/reftests/display-list/1453541-1.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html class="reftest-wait">
+<body>
+
+<div id="empty" style="position:fixed; z-index: 4; left:200px; top:200px; width: 0px">
+ <div style="position:fixed; width:400px; height: 400px; background-color:green; top: 200px; left: 200px"></div>
+</div>
+<div style="width:400px; height: 400px; background-color:blue"></div>
+
+<script>
+ function doTest() {
+ document.getElementById("empty").style.left = "201px";
+ document.documentElement.removeAttribute("class");
+ }
+ document.addEventListener("MozReftestInvalidate", doTest);
+</script>
+</body>
+</html>