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.
28 lines
543 B
HTML
28 lines
543 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../expected/overflow-hidden-4-ref.html" />
|
|
<style>
|
|
* {
|
|
outline: black solid 1px;
|
|
}
|
|
.outer {
|
|
background: pink;
|
|
width: 100px;
|
|
height: 100px;
|
|
overflow: hidden;
|
|
}
|
|
.middle {
|
|
transform: perspective(1200px);
|
|
background: orange;
|
|
}
|
|
.inner {
|
|
width: 300px;
|
|
height: 300px;
|
|
background: magenta;
|
|
overflow: hidden;
|
|
}
|
|
.red {
|
|
background: red;
|
|
width: 300px;
|
|
height: 300px;
|
|
}
|
|
</style><body><div class="outer"><div class="middle"><div class="inner"><div class="red">
|