1
0
Fork 0
firefox/layout/reftests/border-radius/border-value-interpret-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

21 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>