https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 174e1be20f6093c72294a0c62939a97f84f838ff authored by pyup-bot on 11 April 2018, 21:39:00 UTC
Update marionette_driver from 2.5.0 to 2.6.0
Tip revision: 174e1be
color-003.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="greentext-ref.html">
<meta name="assert" content="If the currentcolor keyword is set on the color property itself, it is treated as color: inherit.">
<style>
    .outer {color: green;}
    .inner {color: currentcolor;}
</style>
<body>
    <p class="outer"><span class="inner">Test passes if this text is green</span></p>
</body>
back to top