remove-overflow-hidden-region.html (586B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <meta name="viewport" content="width=device-width, minimum-scale=0.5"> 4 <style> 5 html { 6 overflow: hidden; 7 } 8 html, body { 9 margin: 0; 10 width: 100%; 11 height: 100%; 12 } 13 div { 14 position: absolute; 15 } 16 </style> 17 <div id="green" style="background: green; width: 200%; height: 200%;"></div> 18 <div style="background: blue; width: 100%; height: 100%; height: 100%;"></div> 19 <script> 20 document.addEventListener('MozReftestInvalidate', () => { 21 green.style.width = '100%'; 22 document.documentElement.classList.remove('reftest-wait'); 23 }); 24 </script> 25 </html>