https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9ab15c4be9aa0ecef8a7ae08cc5b45f1836abad7 authored by Stephen McGruer on 05 April 2018, 13:37:39 UTC
Web Animations: remove timing objects
Tip revision: 9ab15c4
lab-004.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="lab() with no alpha, positive a axis">
<style>
    .test { color: red; }
    .test { color: lab(50 50 0)}
    .match { color: rgb(75.62%, 30.45%, 47.56%)} /* lab(50,0,0) converted to sRGB */
</style>
<body>
    <p>Test passes if the two lines of filler text are the same color.</p>
    <p class="test">Filler text. Filler text. Filler text. </p>
    <p class="match">Filler text. Filler text. Filler text. </p>
</body>
back to top