mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
14 lines
307 B
HTML
14 lines
307 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<link rel="match" href="../expected/clipped-overflow-with-identity-transform-ref.html" />
|
||
|
|
<style>
|
||
|
|
.outer {
|
||
|
|
width: 100px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.inner {
|
||
|
|
background: green;
|
||
|
|
height: 100px;
|
||
|
|
width: 200px;
|
||
|
|
transform: scale(1);
|
||
|
|
}
|
||
|
|
</style><div class="outer"><div class="inner"></div></div>
|