https://github.com/web-platform-tests/wpt
Raw File
Tip revision: fe09e1e121e850ee1cf1c7f67333ad92e3904d78 authored by Morten Stenshorne on 26 March 2018, 14:00:45 UTC
[css-flexbox] Resolve min-width:auto on table item to min preferred size.
Tip revision: fe09e1e
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>
back to top