ladybird/Tests/LibWeb/Ref/input/overflow-hidden-7.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

20 lines
406 B
HTML

<!DOCTYPE html>
<link rel="match" href="../expected/overflow-hidden-7-ref.html" />
<style>
.box {
overflow-y: hidden;
overflow-x: visible;
width: 200px;
height: 200px;
scrollbar-width: none;
}
.inner {
width: 300px;
height: 300px;
background-color: darkblue;
}
</style>
<div class="box">
<div class="inner"></div>
</div>