mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
19 lines
272 B
HTML
19 lines
272 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;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main></main>
|
|
</body>
|
|
</html>
|
|
|