mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
572 B
HTML
22 lines
572 B
HTML
<!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;
|
|
-moz-border-radius-topleft: 2em 10px;
|
|
-moz-border-radius-topright: 10px 0.5em;
|
|
-moz-border-radius-bottomright: 3em 10px;
|
|
-moz-border-radius-bottomleft: 10px 0.5em;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</body></html>
|