summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/color-002.html
blob: 7d2f5b318e6e885d54cf3fa1c1b21e53f48b4bac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Color 4: color property, initial value</title>
<link rel="author" title="Chris Lilley" href="mailto:chris@w3.org">
<link rel="help" href="https://drafts.csswg.org/css-color-4/#the-color-property">
<link rel="match" href="blacktext-ref.html">
<meta name="assert" content="The initial value of this property is black.">
<style>
    .test {color: initial}
</style>
<body>
    <p class="test">Test passes if this text is black</p>
</body>