1
0
Fork 0
firefox/layout/reftests/border-radius/border-value-interpret.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

18 lines
396 B
HTML

<!doctype html>
<html>
<head>
<title>Test different types of values with border radius</title>
<style>
div { width: 200px;
height: 200px;
background: green;
border: 10px dashed black}
/* Test interpreted values */
#test1 { border-radius: 2em 10px 3em / 10px 0.5em }
</style>
</head>
<body>
<div id="test1"></div>
</body></html>