summaryrefslogtreecommitdiffstats
path: root/layout/reftests/display-list/1420480-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/display-list/1420480-1.html')
-rw-r--r--layout/reftests/display-list/1420480-1.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/layout/reftests/display-list/1420480-1.html b/layout/reftests/display-list/1420480-1.html
new file mode 100644
index 0000000000..d4bc59173a
--- /dev/null
+++ b/layout/reftests/display-list/1420480-1.html
@@ -0,0 +1,43 @@
+<html class="reftest-wait">
+ <head>
+ <style>
+ div {
+ width: 200px;
+ height: 200px;
+ background-color: blue;
+ opacity: 0.95;
+ position: absolute;
+ }
+ #first {
+ display: none;
+ }
+ #second {
+ width: 600px;
+ height: 800px;
+ display: none;
+ background-color: green;
+ }
+ </style>
+ </head>
+ <body>
+ <div id="first">
+ <div id="second"></div>
+ </div>
+ <div style="z-index:-2; top: 220px;"></div>
+ <div style="top: 440px;"></div>
+
+ <script>
+ function doTest2() {
+ document.getElementById("second").style.display = "block";
+ document.documentElement.removeAttribute("class");
+ }
+
+ function doTest() {
+ document.getElementById("first").style.display = "block";
+ setTimeout(doTest2, 500);
+ }
+ document.addEventListener("MozReftestInvalidate", doTest);
+ </script>
+ </body>
+</html>
+