Files
servo/tests/wpt/css-tests/css-backgrounds-3_dev/xhtml1print/border-radius-horizontal-value-is-zero.xht

36 lines
1.1 KiB
HTML

<!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 Background: border-radius property if horizontal value is zero</title>
<link href="mailto:silverman@adobe.com" rel="author" title="Marc Silverman" />
<link href="http://www.w3.org/TR/css3-background/#the-border-radius" rel="help" />
<link href="reference/border-radius-horizontal-value-is-zero-ref.xht" rel="match" />
<meta content="If the horizontal radius length is zero, the corner is square, not rounded." name="assert" />
<style type="text/css">
#rounded-div {
position: absolute;
top: 50px;
left: 5px;
width: 13em;
height: 8em;
border: solid 1em green;
border-radius: 0em / 5em
}
#error {
position: absolute;
top: 50px;
left: 5px;
width: 13em;
height: 8em;
border: solid 1em red;
}
</style>
</head>
<body>
<p>The test passes if the rectangle has four square corners (no red is shown).</p>
<div id="error">
</div>
<div id="rounded-div">
</div>
</body></html>