mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
25e9d2ccf0
Adds ref-tests from pages used in the following PRs: https://github.com/SerenityOS/serenity/pull/16035 https://github.com/SerenityOS/serenity/pull/17591
26 lines
667 B
HTML
26 lines
667 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="match" href="reference/overflow-hidden-ref.html" />
|
|
<style>
|
|
.outer-box {
|
|
width: 300px;
|
|
height: 300px;
|
|
background-color: darkblue;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.inner-box {
|
|
width: 600px;
|
|
height: 600px;
|
|
background-color: orangered;
|
|
transform: translate(100px, 100px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="outer-box">
|
|
<div><div class="inner-box"></div></div>
|
|
</div>
|
|
</body>
|
|
</html>
|