mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00

...in clip and scroll frames calculation algorithm.
Fix a regression from 719a50c
where display-list recording disagreed
with the clipping logic about whether a stacking context is transformed.
`has_css_transform()` returns true whenever the computed transform is
not `none`, which differs from an identity-matrix check. These yield
different results for cases like `translate(0, 0)`.
8 lines
No EOL
156 B
HTML
8 lines
No EOL
156 B
HTML
<!DOCTYPE html><style>
|
|
#inner {
|
|
background-color: blueviolet;
|
|
width: 100px;
|
|
height: 100px;
|
|
border-radius: 9999px;
|
|
}
|
|
</style><div id="inner"> |