background-attachment-local-block-002-ref.html (716B)
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: 100vh; 19 } 20 21 div#blue 22 { 23 background-color: blue; 24 height: 25vh; 25 } 26 27 div#orange 28 { 29 background-color: orange; 30 height: 25vh; 31 } 32 33 div#filler-after 34 { 35 height: 50vh; 36 } 37 </style> 38 39 <body onload="window.scroll(0, document.body.offsetHeight);"> 40 41 <div id="filler-before"></div> 42 43 <div id="blue"></div> 44 45 <div id="orange"></div> 46 47 <div id="filler-after"></div>