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

34 lines
690 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.outer {
width: 150px;
height: 100px;
background-color: lightgray;
overflow: hidden;
padding: 10px;
}
.inner {
width: 200px;
height: 80px;
background-color: lightblue;
overflow: hidden;
padding: 5px;
}
.content {
width: 300px;
height: 150px;
background-color: red;
}
</style>
</head>
<body>
<div class="outer">
<div class="inner">
<div class="content">Nested clipping</div>
</div>
</div>
</body>
</html>