haikuwebkit/LayoutTests/fast/css/table-border-radius-with-bo...

25 lines
348 B
HTML

<!doctype html>
<html>
<head>
<style>
div {
width: 198px;
height: 98px;
}
.round {
border-radius: 10px;
}
.shadow {
box-shadow: 0 10px 2px rgba(0, 0, 0, 0.5);
}
.border {
border: 1px solid blue;
}
</style>
</head>
<body>
<div class="shadow border round">
</div>
</body>
</html>