Files
rust_browser/tests/goldens/fixtures/033-zero-width-border.html
Zachary D. Rowitsch d78e1cab3f Phase 1D: Initial Commit
2026-01-29 21:21:29 -05:00

17 lines
219 B
HTML

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