summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/lab-l-over-100-2.html
blob: e85d289d21fa0b3269b7bfb3ab22f810c79547fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Color 4: Verify lightness in Lab is always clamped to a value between 0% to 100%</title>
<link rel="help" href="https://drafts.csswg.org/css-color/#cie-lab">
<link rel="match" href="lab-l-over-100-ref.html">
<meta name="assert" content="lab() with lightness greater than 100%">
<style>
    .ref { background-color: lab(100% 150 20); width: 100px; height: 100px}
    /* l = 150 should clamp back to 100 */
    .test { background-color: lab(150% 150 20); width: 100px; height: 100px}
</style>

<body>
    <p>Test passes if you see a single color.</p>
    <div class="ref"></div>
    <div class="test"></div>
</body>