https://github.com/web-platform-tests/wpt
Raw File
Tip revision: fcd7eab70b2fc21f6db9d436fcc75c4b148265aa authored by Anne van Kesteren on 24 August 2018, 13:30:16 UTC
XHR: responseURL with fragment
Tip revision: fcd7eab
lch-003.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="whitetext-ref.html">
<meta name="assert" content="lch() with no alpha">
<style>
    .test { color: red; background-color: #333; padding: 3px;}
    .test { color: lch(100 0 0);} /* white (sRGB #FFFFFF) converted to LCH */
</style>
<body>
    <p class="test">Test passes if this text is white</p>
</body>
back to top