mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +00:00
18 lines
272 B
HTML
18 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>
|
|
|