mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-29 14:32:55 +00:00
Now each test type has the same directories: - input - expected - data Also, tests can be in subdirectories within ./input.
23 lines
414 B
HTML
23 lines
414 B
HTML
<!doctype html>
|
|
<link rel="match" href="../expected/overflow-hidden-3-ref.html" />
|
|
<style>
|
|
body {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
#outer {
|
|
width: 200px;
|
|
height: 100px;
|
|
overflow: hidden;
|
|
}
|
|
#inner {
|
|
position: relative;
|
|
z-index: 0;
|
|
overflow: hidden;
|
|
}
|
|
#green {
|
|
width: 200px;
|
|
height: 200px;
|
|
background: green;
|
|
}
|
|
</style><body><div id="outer"><div id="inner"><div id="green">
|