no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / display-list / retained-dl-style-change-stacking-context-4.html
bloba0df3a4c1ef09da66eed7847439aa4440d3e505e
1 <html class="reftest-wait">
2 <head>
3 <style>
4 body {
5 margin: 0px;
7 div {
8 width:100px;
9 height:100px;
10 display: inline-block;
11 position:absolute;
13 </style>
14 </head>
15 <body>
16 <div style="position:fixed;" class="reftest-display-list">
17 <div style="background-color:green;" class="reftest-no-display-list"></div>
18 <div id="second" style="background-color:red; top: 110px;"></div>
19 </div>
20 </body>
21 <script>
22 function doTest() {
23 document.getElementById("second").style.backgroundColor = "green";
24 document.documentElement.removeAttribute("class");
27 window.addEventListener("MozReftestInvalidate", doTest);
28 </script>
29 </html>