tenfourfox/layout/reftests/border-radius/border-value-interpret-ref.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

22 lines
556 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;
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>