Bug 1944627 - update sidebar button checked state for non-revamped sidebar cases...
[gecko.git] / layout / reftests / display-list / 1417601-1.html
blobd52beae8078ce020fdb02d15dc4bf4456bdf6590
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <meta charset="UTF-8">
6 <style>
7 #modified {
8 left: 0px;
10 </style>
12 <script type="text/javascript">
13 function doTest() {
14 document.getElementById("modified").style.left = "10px";
15 document.documentElement.removeAttribute("class");
18 window.addEventListener("MozReftestInvalidate", doTest);
19 </script>
21 </head>
22 <body>
23 <div style="opacity:0.9">
24 <div style="position:fixed; left:300px; top:300px; width:200px; height:200px; background-color:red; z-index:-10"></div>
25 <div style="width:200px; height:200px; position:relative; background-color:green" id="modified">
26 <div style="opacity:0.9">
27 <div style="position:fixed; left:300px; top:300px; width:200px; height:200px; background-color:green; z-index:-10"></div>
28 </div>
29 </div>
30 </div>
31 </body>
32 </html>