Bug 1729777 [wpt PR 30405] - Parsing for contain-intrinsic-size: auto <length>, a...
[gecko.git] / testing / web-platform / tests / css / css-backgrounds / background-repeat-space-4.html
blob834381c76fec8ed1a6d74301937df99706d8cba2
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>CSS Background: background-repeat: background image space</title>
6 <link rel="author" title="Ethan Lin" href="mailto:ethlin@mozilla.com">
7 <link rel="author" title="Mozilla" href="https://www.mozilla.org">
8 <link rel="help" href="https://www.w3.org/TR/css3-background/#background-repeat">
9 <link rel="match" href="background-repeat-space-4-ref.html">
10 <meta name="assert" content="Test checks whether background-repeat: 'repeat space' works correctly or not.">
11 <style type="text/css">
12 .outer {
13 width: 96px;
14 height: 106px;
15 border: 1px solid black;
16 background-image: url(support/aqua-yellow-32x32.png);
17 background-repeat: repeat space;
19 .outer_graident {
20 width: 96px;
21 height: 106px;
22 border: 1px solid black;
23 background-size: 32px 32px;
24 background-image: linear-gradient(to top left, red, green);
25 background-repeat: repeat space;
27 </style>
28 </head>
29 <body>
30 <div class="outer"></div>
31 <div class="outer_graident"></div>
32 </body>
33 </html>