background-attachment-fixed-inline-002-ref.html (636B)
1 <!DOCTYPE html> 2 3 <meta charset="UTF-8"> 4 5 <title>CSS Reftest reference</title> 6 7 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> 8 9 <style> 10 body 11 { 12 height: 50vh; 13 margin: 0px; 14 } 15 16 div#filler-before 17 { 18 height: 125vh; 19 } 20 21 div#purple 22 { 23 background-color: purple; 24 height: 25vh; 25 width: 50vh; 26 } 27 28 div#filler-after 29 { 30 height: 50vh; 31 } 32 </style> 33 34 <body onload="window.scroll(0, document.body.offsetHeight);"> 35 36 <div id="filler-before"></div> 37 38 <div id="purple"></div> 39 40 <div id="filler-after"></div>