Bumping manifests a=b2g-bump
[gecko.git] / layout / reftests / bugs / 505743-1.html
blobd09190e1dee5bf597d9f31904a8264068ee8cae1
1 <!DOCTYPE HTML>
2 <html class="reftest-wait">
3 <head>
4 <style>
5 #a {
6 display: block;
7 opacity:1;
8 overflow:hidden;
9 width: 100px;
10 height: 100px;
11 background-color: lime;
13 </style>
14 </head>
15 <body>
16 <span id="a"></span>
17 <script>
18 function doe() {
19 document.getElementById('a').style.opacity = '0';
20 document.documentElement.removeAttribute("class");
22 document.addEventListener("MozReftestInvalidate", doe, false);
23 </script>
24 </body>
25 </html>