border-image-repeat-repeat-001-ref.html (753B)
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 11 { 12 background-color: green; 13 } 14 15 div.vertical 16 { 17 height: 75px; 18 margin-left: 75px; 19 width: 50px; 20 } 21 22 div.horizontal 23 { 24 height: 50px; 25 width: 200px; 26 } 27 </style> 28 29 <p>Test passes if there are 2 identical filled green plus ("+") signs and <strong>no red</strong>. 30 31 <div class="vertical"></div> 32 33 <div class="horizontal"></div> 34 35 <div class="vertical" style="margin-bottom: 10px;"></div> 36 37 <div class="vertical"></div> 38 39 <div class="horizontal"></div> 40 41 <div class="vertical"></div>