Bug 1729777 [wpt PR 30405] - Parsing for contain-intrinsic-size: auto <length>, a...
[gecko.git] / testing / web-platform / tests / css / css-backgrounds / background-color-clip.html
blob961e161388d7f1962cfc4ecb22c18b47e60ad62e
1 <!DOCTYPE html>
2 <meta charset="utf-8">
3 <title>Background Color Clip</title>
4 <link rel="match" href="reference/background-color-clip.html">
5 <link rel="help" href="https://drafts.csswg.org/css-backgrounds-3/#background-color">
6 <meta name="assert" content="Check that the background color is clipped according to the background-clip value associated with the bottom-most background image layer.">
7 <style>
8 div {
9 width: 120px;
10 height: 100px;
11 background-color: green;
12 background-clip: border-box, content-box, border-box;
13 background-image: none, none;
14 border-style: solid;
15 border-width: 10px;
16 border-color: transparent;
18 </style>
19 <div></div>