summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/border-right-color.xht
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-color/border-right-color.xht')
-rw-r--r--testing/web-platform/tests/css/css-color/border-right-color.xht33
1 files changed, 33 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-color/border-right-color.xht b/testing/web-platform/tests/css/css-color/border-right-color.xht
new file mode 100644
index 0000000000..70f7721c22
--- /dev/null
+++ b/testing/web-platform/tests/css/css-color/border-right-color.xht
@@ -0,0 +1,33 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <title>CSS Test: Border-right-color set to hex with three digits with the maximum plus one value of #1000</title>
+ <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
+ <link rel="author" title="Jack Moffitt" href="http://metajack.im/"/>
+ <link rel="author" title="Ms2ger" href="mailto:Ms2ger@gmail.com"/>
+ <link rel="help" href="https://drafts.csswg.org/css-color-4/#hex-notation"/>
+ <link rel="match" href="border-color-ref.xht"/>
+
+ <meta name="assert" content="The 'border-right-color' set to #1000 is a transparent dark red square." />
+ <style type="text/css">
+ div.test
+ {
+ border: 5px solid blue;
+ height: 1in;
+ width: 1in;
+ }
+ div.test div
+ {
+ border-right-style: solid;
+ border-right-width: 1in;
+ border-right-color: #1000;
+ height: 1in;
+ width: 0;
+ }
+ </style>
+ </head>
+ <body>
+ <p>Test passes if there is a transparent square surrounded by a blue border.</p>
+ <div class="test"><div></div></div>
+ </body>
+</html>