Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-color/display-p3-linear-006.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Color 4: display-p3-linear and sRGB with medium chroma</title>
<link rel="author" title="Chris Lilley" href="mailto:chris@w3.org">
<link rel="match" href="mossgreensquare-ref.html">
<meta name="assert" content="display-p3-linear with no alpha">
<style>
    .test, .test2 { background-color: red; width: 12em; height: 4em; }
    .ref {background-color: rgb(44.8436% 53.537% 28.8112%); width: 12em; height: 4em; }
        /* lch(54% 35 118) converted to legacy sRGB */
    .test { background-color: color(display-p3-linear 0.183382 0.245634 0.082317); }
        /* lch(54% 35 118) converted to display-p3-linear */
    .test2 {background-color: color(srgb 0.448436 0.53537 0.288113); }
        /* lch(54% 35 118) converted to color(sRGB) */
</style>
<body>
    <p>Test passes if you see a moss green square, and no red.</p>
    <div class="test"></div>
    <div class="ref"></div>
    <div class="test2"></div>
</body>