-
Notifications
You must be signed in to change notification settings - Fork 3.1k
/
border-right-color.xht
33 lines (32 loc) · 1.35 KB
/
border-right-color.xht
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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>