servo/tests/wpt/css-tests/css-backgrounds-3_dev/html4/ttwf-css3background-border-style-double.htm

31 lines
No EOL
1.3 KiB
HTML

<!DOCTYPE html>
<html><head>
<title>CSS Backgrounds and Borders Test: border_style_double</title>
<link href="mailto:disound@gmail.com" rel="author" title="disound">
<link href="http://www.w3.org/TR/css3-background/#the-border-style" rel="help">
<meta content="image" name="flags">
<meta content="'Border-style' is a shorthand for the other four. Its four values set the top, right, bottom and left border respectively. A missing left is the same as right, a missing bottom is the same as top, and a missing right is also the same as top. 'double': Two parallel solid lines with some space between them. (The thickness of the lines is not specified, but the sum of the lines and the space must equal 'border-width'.)" name="assert">
<style>
#ref {
background-color: white;
height: 160px;
width: 160px;
}
#test {
border: black solid 5px;
border-style: double;
bottom: 160px;
height: 100px;
padding: 25px;
position: relative;
width: 100px;
}
</style>
</head>
<body>
<p>Test passes if there is a white square, border style is double, and the sum of the lines and the space must equal 5.</p>
<div id="ref"></div>
<div id="test"></div>
</body></html>