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

25 lines
433 B
HTML

<!doctype html>
<html><head>
<title>Border-radius inheritance</title>
<style>
.div1 { width: 100px; height: 100px;
border: 10px solid black;
border-radius: 10px;
left: 50px;
top: 50px;
}
div > div {
width: 40px; height: 40px;
border: 10px solid black;
position: absolute;
border-radius: 0px;
left: 40px;
top: 40px;
}
</style>
</head>
<body>
<div class="div1"><div></div></div>
</body></html>