ladybird/Tests/LibWeb/Ref/expected/overflow-hidden-ref.html
Sam Atkins b7efb61fbe Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others
Now each test type has the same directories:
- input
- expected
- data

Also, tests can be in subdirectories within ./input.
2024-11-05 14:02:07 +00:00

26 lines
639 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<style>
.outer-box {
width: 300px;
height: 300px;
background-color: darkblue;
overflow: hidden;
position: relative
}
.inner-box {
width: 200px;
height: 200px;
background-color: orangered;
position: absolute;
top: 100px;
left: 100px;
}
</style>
</head>
<body>
<div class="outer-box"><div class="inner-box"></div></div>
</body>
</html>