Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / unset-keyword.html
blobda178499c43c354693f87f57939983152e1567a3
1 <style>
2 span {
3 font-weight: bold;
4 color: yellow;
5 border: 5px solid red;
6 display: none;
9 .all {
10 all: unset;
13 .unset {
14 font-weight: unset;
15 color: unset;
16 border: unset;
17 display: unset;
19 </style>
20 <body>
21 <span class="all">all</span><br>
22 <div style="color: green; font-weight: normal;">
23 <span class="unset">unset</span>
24 </span>
25 </body>