blob: c9a42716b0813034780abee0a9fb78a3c7aff655 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!doctype html>
<html>
<head>
<title>Test different types of values with border radius</title>
<!-- This bug will break when bug 451134 is fixed -->
<style>
div { width: 200px;
height: 200px;
background: green;
border: 10px dashed black;
border-top-left-radius: 2em 10px;
border-top-right-radius: 10px 0.5em;
border-bottom-right-radius: 3em 10px;
border-bottom-left-radius: 10px 0.5em;
}
</style>
</head>
<body>
<div></div>
</body></html>
|