wpt / css / css-color / currentcolor-001.html

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

/css/css-color/currentcolor-001.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Color 4: currentcolor</title>
<link rel="author" title="Chris Lilley" href="mailto:chris@w3.org">
<link rel="help" href="https://drafts.csswg.org/css-color-4/#currentcolor-color">
<link rel="match" href="greensquare-ref.html">
<meta name="assert" content="The keyword currentcolor takes its value from the value of the color property on the same element.">
<style>
    .outer {color: red; background-color: red; font-size: 200%; width: 6em; height: 6em; }
    .inner {color: green; background-color: currentColor; width: 6em; height: 6em; font-weight: bold;}
</style>
<body>
    <p>Test passes if you see a green square, and no red.</p>
    <div class="outer"><div class="inner">FAIL</div></div>
</body>

/css/css-color/greensquare-ref.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>Green square reference</title>
<style>
    .test { background-color: #008000; width: 12em; height: 12em;}
</style>
<body>
    <p>Test passes if you see a green square, and no red.</p>
    <div class="test"></div>
</body>