Status: PASS | Duration: 12ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-color/t422-rgba-clip-outside-device-gamut-b.xht
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS Test: rgba() clipping outside device gamut</title> <link rel="author" title="L. David Baron" href="https://dbaron.org/" /> <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" /> <link rel="help" href="http://www.w3.org/TR/css3-color/#rgba-color" /> <link rel="match" href="t422-rgba-clip-outside-device-gamut-b-ref.html" /> <meta name="assert" content="Test clipping of rgba() values outside the device gamut." /> <style type="text/css"><![CDATA[ body { background: white; color: black; } 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: rgba(-30, 500, -1, 0.6)"> </td> <td style="background: rgb(102, 255, 102)"> </td> </tr> <tr> <td style="background: rgba(-260, -254, 300, 0.4)"> </td> <td style="background: rgb(153, 153, 255)"> </td> </tr> <tr> <td style="background: rgba(-254, 256, 0, 0.6)"> </td> <td style="background: rgb(102, 255, 102)"> </td> </tr> <tr> <td style="background: rgba(-10%, 200%, -1%, 0.4)"> </td> <td style="background: rgb(153, 255, 153)"> </td> </tr> <tr> <td style="background: rgba(-110%, 130%, -99%, 0.6)"> </td> <td style="background: rgb(102, 255, 102)"> </td> </tr> <tr> <td style="background: rgba(-99%, 101%, 0%, 0.4)"> </td> <td style="background: rgb(153, 255, 153)"> </td> </tr> <tr> <td style="background: rgba(50, -30, 255, 0.6)"> </td> <td style="background: rgb(132, 102, 255)"> </td> </tr> <tr> <td style="background: rgba(0, 50, 350, 0.4)"> </td> <td style="background: rgb(153, 173, 255)"> </td> </tr> </table> </body> </html>
/css/css-color/t422-rgba-clip-outside-device-gamut-b-ref.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Reference</title> <link rel="author" title="Intel" href="http://www.intel.com"> <style> body { background: white; color: black; } table { border-spacing: 0 2px; padding: 0; border: none; } td { border: none; padding: 0; height: 1.2em; } </style> <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 colspan='2' style="background: rgb(102, 255, 102)"> </td> </tr> <tr> <td colspan='2' style="background: rgb(153, 153, 255)"> </td> </tr> <tr> <td colspan='2' style="background: rgb(102, 255, 102)"> </td> </tr> <tr> <td colspan='2' style="background: rgb(153, 255, 153)"> </td> </tr> <tr> <td colspan='2' style="background: rgb(102, 255, 102)"> </td> </tr> <tr> <td colspan='2' style="background: rgb(153, 255, 153)"> </td> </tr> <tr> <td colspan='2' style="background: rgb(132, 102, 255)"> </td> </tr> <tr> <td colspan='2' style="background: rgb(153, 173, 255)"> </td> </tr> </table> </body>