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/t421-rgb-clip-outside-gamut-b.xht - WPT Dashboard Interop Dashboard
<head>
<title>CSS Test: rgb() clipping outside device gamut</title>
<link rel="match" href="t421-rgb-clip-outside-gamut-b-ref.html" />
<meta name="assert" content="Test clipping of rgb() values outside the device gamut." />
<style type="text/css"><![CDATA[
table { border-spacing: 0 2px; padding: 0; border: none; }
td { border: none; padding: 0; height: 1.2em; }
]]></style>
</head>
<body>
<p><strong>WARNING: This test assumes that the device gamut is sRGB
(as it will be for many CRT monitors).</strong></p>
<p>Every row in this table should have both columns the same color:</p>
<table>
<tr>
<th style="background:white; color: black">Column 1</th>
<th style="background:black; color: white">Column 2</th>
</tr>
<tr>
<td style="background: rgb(-30, 500, -1)"> </td>
<td style="background: rgb(0, 255, 0)"> </td>
</tr>
<tr>
<td style="background: rgb(-260, -254, 300)"> </td>
<td style="background: rgb(0, 0, 255)"> </td>
</tr>
<tr>
<td style="background: rgb(-254, 256, 0)"> </td>
<td style="background: rgb(0, 255, 0)"> </td>
</tr>
<tr>
<td style="background: rgb(-10%, 200%, -1%)"> </td>
<td style="background: rgb(0, 255, 0)"> </td>
</tr>
<tr>
<td style="background: rgb(-110%, 130%, -99%)"> </td>
<td style="background: rgb(0, 255, 0)"> </td>
</tr>
<tr>
<td style="background: rgb(-99%, 101%, 0%)"> </td>
<td style="background: rgb(0, 255, 0)"> </td>
</tr>
<tr>
<td style="background: rgb(50, -30, 255)"> </td>
<td style="background: rgb(50, 0, 255)"> </td>
</tr>
<tr>
<td style="background: rgb(0, 50, 350)"> </td>
<td style="background: rgb(0, 50, 255)"> </td>
</tr>
</table>
</body>
</html>