Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-color/display-p3-linear-006.html
<!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="help" href="https://drafts.csswg.org/css-color-4/#valdef-color-display-p3-linear"> <link rel="help" href="https://drafts.csswg.org/css-color-4/#predefined-sRGB"> <link rel="help" href="https://drafts.csswg.org/css-color-4/#oklab-lab-to-predefined"> <link rel="match" href="mossgreensquare-ref.html"> <meta name="assert" content="display-p3-linear with no alpha"> <meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-24576"> <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>
/css/css-color/mossgreensquare-ref.html
<!DOCTYPE html> <meta charset="utf-8"> <title>Moss green (medium chroma) square reference</title> <style> .test { background-color: rgb(44.8436% 53.537% 28.8112%); width: 12em; height: 12em;} </style> <body> <p>Test passes if you see a moss green square, and no red.</p> <div class="test"></div> </body>