mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
26 lines
427 B
HTML
26 lines
427 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Tests that `border-radius` causes the background to be clipped around the corners. -->
|
|
<style>
|
|
main {
|
|
display: block;
|
|
width: 16px;
|
|
height: 16px;
|
|
background: green;
|
|
overflow: hidden;
|
|
}
|
|
section {
|
|
display: block;
|
|
width: 256px;
|
|
height: 256px;
|
|
background: red;
|
|
border-radius: 50%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main><section></section></main>
|
|
</body>
|
|
</html>
|
|
|