wpt / css / css-color / color-002.html

Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-color/color-002.html

<!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>

/css/css-color/blacktext-ref.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>Black text reference</title>
<style>
    .test { color: #000000}
</style>
<body>
    <p class="test">Test passes if this text is black</p>
</body>