Files
rust_browser/tests/goldens/fixtures/014-border-style-none.html
2026-01-29 22:48:34 -05:00

17 lines
210 B
HTML

<html>
<head>
<style>
.box {
width: 100px;
height: 50px;
border-width: 2px;
border-style: none;
border-color: red;
}
</style>
</head>
<body>
<div class="box">No border</div>
</body>
</html>