border-image-slice-fill-002-ref.html (615B)
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-yellow 11 { 12 background-color: yellow; 13 height: 100px; 14 padding: 50px; 15 width: 100px; 16 } 17 18 div#inner-green 19 { 20 background-color: green; 21 height: 100px; 22 } 23 </style> 24 25 <p>Test passes if there is a filled green square surrounded by a yellow square and if there is <strong>no red</strong>. 26 27 <div id="outer-yellow"> 28 <div id="inner-green"></div> 29 </div>