repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
css
/
unset-keyword.html
blob
da178499c43c354693f87f57939983152e1567a3
1
<style>
2
span {
3
font-weight: bold;
4
color: yellow;
5
border:
5
px 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>