https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b71f2b352ffc54f46299931a1ada7b71e6c92877 authored by Mike Pennisi on 10 December 2018, 20:43:57 UTC
Explicitly fetch test manifest
Tip revision: b71f2b3
color-001.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Color 4: color property</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="This property describes the foreground fill color of an element’s text content.">
<style>
    .test {color: green}
</style>
<body>
    <p class="test">Test passes if this text is green</p>
</body>
back to top