Files
rust_browser/tests/goldens/fixtures/059-overflow-hidden.html
Zachary D. Rowitsch 2bf8ce6de8 Phase 3: Initial commit
2026-01-31 16:20:53 -05:00

24 lines
459 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.container {
width: 100px;
height: 50px;
background-color: lightgray;
overflow: hidden;
}
.content {
width: 200px;
height: 100px;
background-color: red;
}
</style>
</head>
<body>
<div class="container">
<div class="content">This text should be clipped</div>
</div>
</body>
</html>