blob: f3959d67250c0310ad34760e1501e7e4a9d6bdf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!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-style 'ridge' color rendering</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-06-24 -->
<link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-style-properties" />
<meta name="assert" content="The 'ridge' 'border-style' uses the color defined for rendering the ridge border." />
<style type="text/css">
div
{
border-top-color: green;
border-top-style: ridge;
border-top-width: 1in;
}
</style>
</head>
<body>
<p>Test passes if the box is a shade or shades of green.</p>
<div></div>
</body>
</html>
|