border-image-repeat-round.html (991B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Backgrounds and Borders Test: 'border-image-repeat' set as 'round'</title> 5 <link rel="author" title="Ren Jing" href="mailto:reni2046@gmail.com"> 6 <link rel="help" href="http://www.w3.org/TR/css3-background/#border-images"> 7 <link rel="match" href="reference/border-image-repeat-round-ref.html"> 8 <meta name="assert" content="diamonds in corners should be red, and other diamonds should be orange, it should be 4 orange diamonds on each side."> 9 <meta name="fuzzy" content="maxDifference=0-111;totalPixels=0-3435"> 10 <style type="text/css"> 11 .container { 12 border: double red 1em; 13 border-image: url("support/border.png") 27 round; 14 height:64px; 15 width:64px; 16 } 17 </style> 18 </head> 19 <body> 20 <p>The test passes if diamonds in corners are red, and other diamonds are orange, there are 4 orange diamonds on each side.</p> 21 <div class="container"></div> 22 </body> 23 </html>