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
lab-007.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="lab-007-ref.html">
<meta name="assert" content="lab() with no alpha, negative b axis">
<style>
    .test { color: red; }
    .test { color: lab(55 0 -60)}
    .match { color: rgb(12.81%, 53.10%, 92.76%)} /* lab(55 0 -60) 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