contain-paint-ifc-011-ref.html (802B)
1 <!DOCTYPE html> 2 3 <meta charset="UTF-8"> 4 5 <title>CSS Reference Test</title> 6 7 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> 8 9 <style> 10 p 11 { 12 margin-bottom: 30px; 13 } 14 15 div 16 { 17 height: 30px; 18 } 19 20 div.orange 21 { 22 background-color: orange; 23 } 24 25 div.blue 26 { 27 background-color: blue; 28 } 29 30 div#lime 31 { 32 background-color: lime; 33 } 34 </style> 35 36 <p>Test passes if there are 5 horizontal stripes across the page in this order (from top to bottom): an orange stripe, a blue stripe, a bright green stripe, a blue stripe and then an orange stripe. 37 38 <div class="orange"></div> 39 40 <div class="blue"></div> 41 42 <div id="lime"></div> 43 44 <div class="blue"></div> 45 46 <div class="orange"></div>