mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
This is required because bounding rect used in `saveLayer()` is computed
in stacking context's coordinate space.
Fixes regression introduced in ba2926f
16 lines
298 B
HTML
16 lines
298 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../expected/transform-and-opacity-ref.html" />
|
|
<style>
|
|
#outer {
|
|
opacity: 0.5;
|
|
transform: translate(100px, 100px);
|
|
}
|
|
#inner {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<div id="outer">
|
|
<div id="inner"></div>
|
|
</div> |