https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 89daad32c029798b7203a36f21598fcba470e07d authored by Anthony Ramine on 06 April 2018, 10:22:01 UTC
Change a const in var in idlharness.js
Tip revision: 89daad3
lch-002.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Color 4: Specifying Lab and LCH</title>
<link rel="author" title="Chris Lilley" href="mailto:chris@w3.org">
<link rel="help" href="https://drafts.csswg.org/css-color-4/#specifying-lab-lch">
<link rel="match" href="blacktext-ref.html">
<meta name="assert" content="lch() with no alpha">
<style>
    .test { color: red; }
    .test { color: lch(0 0 0)} /* black (sRGB #000000) converted to LCH */
</style>
<body>
    <p class="test">Test passes if this text is black</p>
</body>
back to top