1 <!DOCTYPE html>
2 <html><head>
3 <meta charset="utf-8">
4 <title>CSS Backgrounds and Borders Test: background-size - one <length> value at minimum</title>
5 <link href="http://www.intel.com" rel="author" title="Intel">
6 <link href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" rel="reviewer" title="Gérard Talbot"> <!-- 2012-11-09 -->
7 <link href="http://www.w3.org/TR/css3-background/#the-background-size" rel="help" title="3.9. Sizing Images: the 'background-size' property">
8 <link href="reference/ref-filled-green-100px-square.htm" rel="match">
9 <meta content="image" name="flags">
10 <meta content="Check if 'background-size' is '0px', minimum width of the positioning area in length, then such value is the width of the corresponding image and therefore the background image is not to be displayed." name="assert">
11 <style>
12 div {
13 height: 100px;
14 width: 100px;
15 }
16 #ref-overlapped-green {
17 background-color: green;
18 }
19 #test-overlapped-red {
20 background-image: url(support/60x60-red.png);
21 background-repeat: no-repeat;
22 background-size: 0px;
23 bottom: 100px;
24 position: relative;
25 }
26 </style>
27 </head>
28 <body>
29 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
30 <div id="ref-overlapped-green"></div>
31 <div id="test-overlapped-red"></div>
32
33
34 </body></html>