gecko/layout/reftests/border-radius/border-value-interpret-ref.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>