1544895.html (814B)
1 <html reftest-async-scroll> 2 <head> 3 <style> 4 body { 5 display: flex; 6 flex-direction: column; 7 width: 100%; 8 height: 100%; 9 } 10 .header { 11 background-color: white; 12 flex: none; 13 } 14 .content { 15 flex: auto; 16 overflow-y: scroll; 17 } 18 .inner-content { 19 height: 2000px; 20 } 21 .shadowy { 22 text-shadow: 0px 0px 1px green; 23 } 24 </style> 25 </head> 26 <body> 27 <div class="header"> Wow, This is a Great Header! </div> 28 <div class="content" 29 reftest-displayport-x="0" reftest-displayport-y="0" 30 reftest-displayport-w="800" reftest-displayport-h="1075" 31 reftest-async-scroll-y="75"> 32 <div class="inner-content"> 33 <p>Wow, This is Great Content!</p> 34 <p class="shadowy">Wow, This is Great Shadowy Content!</p> 35 <p>Wow, This is Great Visible Content!</p> 36 </div> 37 </div> 38 </body> 39 </html>