926155-1.html (536B)
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 = ""; 14 } 15 document.addEventListener("MozReftestInvalidate", doTest); 16 </script> 17 </body> 18 </html>