component-alpha-enter-1-ref.html (734B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <title>Test transition from single-alpha layer to component-alpha layer from a display port size change</title> 4 <script type="text/javascript"> 5 document.addEventListener('MozReftestInvalidate', function() { 6 var scrollbox = document.getElementById('scrollbox'); 7 scrollbox.scrollTop = 1000; 8 document.documentElement.className = ''; 9 }); 10 </script> 11 <style> 12 #scrollbox { 13 margin: 20px; 14 width: 300px; 15 height: 400px; 16 overflow-y: scroll; 17 background: linear-gradient(#FFF, #FFF); 18 } 19 20 #inner { 21 background-color: #000; 22 margin-top: 10px; 23 height: 5px; 24 line-height: 5px; 25 padding-bottom: 400px; 26 } 27 </style> 28 29 <div id="scrollbox"> 30 <div id="inner"> 31 Text 32 </div> 33 </div>