Bumping manifests a=b2g-bump
[gecko.git] / layout / reftests / bugs / 926155-1.html
blob4b07a6bd4a4054c862b5c194d0740d5b9589f444
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <body>
4 <div style="overflow:hidden;height:100px">
5 <div style="overflow-x:hidden;position:sticky;top:50px">
6 <div id="testdiv" style="width:10px;height:10px;background-color:green"></div>
7 </div>
8 </div>
9 <script>
10 function doTest() {
11 var x = document.getElementById('testdiv');
12 x.style.width = "200px";
13 document.documentElement.className = "";
15 document.addEventListener("MozReftestInvalidate", doTest, false);
16 </script>
17 </body>
18 </html>