mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-05 08:31:51 +00:00
Now each test type has the same directories: - input - expected - data Also, tests can be in subdirectories within ./input.
30 lines
681 B
HTML
30 lines
681 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../expected/nested-boxes-with-hidden-overflow-and-border-radius-ref.html" />
|
|
<style>
|
|
.outer {
|
|
overflow: hidden;
|
|
border-radius: 100px;
|
|
background-color: magenta;
|
|
width: 500px;
|
|
height: 500px;
|
|
}
|
|
|
|
.middle {
|
|
overflow: hidden;
|
|
border-radius: 50px;
|
|
transform: translate(10px, 10px);
|
|
background-color: lawngreen;
|
|
}
|
|
|
|
.inner {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: black;
|
|
transform: translate(10px, 10px);
|
|
}
|
|
</style>
|
|
<div class="outer">
|
|
<div class="middle">
|
|
<div class="inner"></div>
|
|
</div>
|
|
</div>
|