background-repeat-round-002.html (756B)
1 <!DOCTYPE html> 2 <html> 3 <!-- Submitted from TestTWF Paris --> 4 5 <head> 6 7 <title>CSS Backgrounds and Borders Test: background-repeat: round basic support</title> 8 <link rel="author" title="Lea Verou" href="http://lea.verou.me" /> 9 <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-repeat" /> 10 <meta name="flags" content="image" /> 11 <meta name="assert" content="The image is repeated as often as will fit within the background positioning area. If it doesn't fit a whole number of times, it is rescaled so that it does." /> 12 <style> 13 14 html { 15 background: red url('support/swatch-green.png') no-repeat; 16 background-repeat: round; 17 } 18 19 </style> 20 21 </head> 22 <body> 23 24 <p>Test passes if there is green and <strong>no red</strong>.</p> 25 26 </body> 27 </html>