mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
dc4192c149
Fixes bug when CSS transform is applied twice to clip rect: - While calculating absolute clip rectangles in `refresh_clip_state()` - While executing `PushStackingContext` painting command. Duplicated transform is already removed for PaintableBox and this change adds this for InlinePaintable.
13 lines
289 B
HTML
13 lines
289 B
HTML
<!doctype html>
|
|
<link rel="match" href="reference/inline-paintable-inside-translated-container-ref.html" />
|
|
<style>
|
|
body {
|
|
transform: translateY(100px);
|
|
position: absolute;
|
|
margin: 0;
|
|
}
|
|
div {
|
|
overflow: hidden;
|
|
outline: 1px solid black;
|
|
}
|
|
</style><body><div><span>hello
|