mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-29 22:42:52 +00:00
Now each test type has the same directories: - input - expected - data Also, tests can be in subdirectories within ./input.
20 lines
406 B
HTML
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>
|