background-size-one-value-1x1-image.html (711B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Background Test: A single size value with a 1x1 image should work as intended</title> 5 <link rel="author" title="schenney" href="mailto:schenney@chromium.org"> 6 <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-size"> 7 <link rel="match" href="reference/background-size-one-value-1x1-image-ref.html"> 8 <style type="text/css"> 9 .backgroundSize{ 10 background: url("support/1x1-green.png"); 11 background-size: 50%; 12 background-repeat: repeat-y; 13 height: 100px; 14 } 15 </style> 16 </head> 17 <body> 18 <div style="background: #7957d5"> 19 <div class="backgroundSize"></div> 20 </div> 21 </body> 22 </html>