table-cell-background-local-003-ref.html (691B)
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 div#outer 11 { 12 height: 100px; 13 margin: 120px 0px 0px 104px; 14 overflow: auto; 15 width: 100px; 16 } 17 18 div#inner 19 { 20 background-color: green; 21 height: 300px; 22 width: 300px; 23 } 24 </style> 25 26 <body onload="document.getElementById('outer').scrollTop = 200; document.getElementById('outer').scrollLeft = 200;"> 27 28 <p>Test passes if there is a filled green square and <strong>no red</strong>. 29 30 <div id="outer"> 31 <div id="inner"></div> 32 </div>