Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: LayoutTests/fast/css/unset-keyword.html

Issue 775153002: Implement unset value handling (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add test Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/css/unset-keyword-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <style>
2 span {
3 font-weight: bold;
4 color: yellow;
5 border: 5px solid red;
6 display: none;
7 }
8
9 .all {
10 all: unset;
11 }
12
13 .unset {
14 font-weight: unset;
15 color: unset;
16 border: unset;
17 display: unset;
18 }
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>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css/unset-keyword-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698