blob: 67324c71786b92d4207976284d915f1893b8007d (
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>
<html>
<head>
<title>CSS Test Background: border-radius property if horizontal value is zero</title>
<link rel="author" title="Marc Silverman" href="mailto:silverman@adobe.com">
<style type="text/css">
#rounded-div {
position: absolute;
top: 50px;
left: 5px;
width: 13em;
height: 8em;
border: solid 1em green;
}
</style>
</head>
<body>
<p>The test passes if the rectangle has four square corners (no red is shown).</p>
<div id="rounded-div">
</div>
</body>
</html>
|