Bumping manifests a=b2g-bump
[gecko.git] / layout / reftests / bugs / 594624-1.html
blob2b3896b5cceb9a07d262a6c0048556af1f3d43fb
1 <html class="reftest-wait">
2 <head>
3 <script>
4 function doTest() {
5 var x = document.getElementById('TB_overlay');
6 x.style.display = 'block';
7 document.documentElement.removeAttribute('class');
9 document.addEventListener("MozReftestInvalidate", doTest, false);
10 </script>
11 <style>
12 #TB_window
14 border: 1px solid red;
15 position: fixed;
16 top: 0;
17 left: 0;
20 #TB_overlay {
21 height: 200px;
22 left: 10px;
23 position: fixed;
24 top: 80px;
25 width: 200px;
26 display: none;
28 opacity: 0.1;
30 background-color: green;
32 </style>
33 </head>
34 <body>
35 SOME CONTENT
36 <div id="TB_overlay">
37 </div>
38 <div id="TB_window"></div>
40 </body>
41 </html>