summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/t425-hsla-clip-outside-device-gamut-b.xht
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-color/t425-hsla-clip-outside-device-gamut-b.xht')
-rw-r--r--testing/web-platform/tests/css/css-color/t425-hsla-clip-outside-device-gamut-b.xht61
1 files changed, 61 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-color/t425-hsla-clip-outside-device-gamut-b.xht b/testing/web-platform/tests/css/css-color/t425-hsla-clip-outside-device-gamut-b.xht
new file mode 100644
index 0000000000..d30cf8c483
--- /dev/null
+++ b/testing/web-platform/tests/css/css-color/t425-hsla-clip-outside-device-gamut-b.xht
@@ -0,0 +1,61 @@
+<!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: hsla() 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/#hsla-color" />
+ <link rel="match" href="t425-hsla-clip-outside-device-gamut-b-ref.html" />
+ <meta name="assert" content="Test clipping of hsla() 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: hsla(240, 100%, -100%, 0.6)">&nbsp;</td>
+ <td style="background: rgb(102, 102, 102)">&nbsp;</td>
+ </tr>
+ <tr>
+ <td style="background: hsla(240, 75%, -20%, 0.4)">&nbsp;</td>
+ <td style="background: rgb(153, 153, 153)">&nbsp;</td>
+ </tr>
+ <tr>
+ <td style="background: hsla(240, 75%, 120%, 0.6)">&nbsp;</td>
+ <td style="background: white">&nbsp;</td>
+ </tr>
+ <tr>
+ <td style="background: hsla(240, 130%, 50%, 0.4)">&nbsp;</td>
+ <td style="background: rgb(153, 153, 255)">&nbsp;</td>
+ </tr>
+ <tr>
+ <td style="background: hsla(264, 130%, 50%, 0.6)">&nbsp;</td>
+ <td style="background: rgb(163, 102, 255)">&nbsp;</td>
+ </tr>
+ <tr>
+ <td style="background: hsla(0, -50%, 40%, 0.4)">&nbsp;</td>
+ <td style="background: rgb(194, 194, 194)">&nbsp;</td>
+ </tr>
+ <tr>
+ <td style="background: hsla(30, -50%, 60%, 0.6)">&nbsp;</td>
+ <td style="background: rgb(194, 194, 194)">&nbsp;</td>
+ </tr>
+ </table>
+
+ </body>
+</html>