Bug 1729777 [wpt PR 30405] - Parsing for contain-intrinsic-size: auto <length>, a...
[gecko.git] / testing / web-platform / tests / css / css-backgrounds / background-size-one-value-1x1-image.html
blob5caf2d49566331c496a71c6c6e00342a5522ea6f
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;
15 </style>
16 </head>
17 <body>
18 <div style="background: #7957d5">
19 <div class="backgroundSize"></div>
20 </div>
21 </body>
22 </html>