1
0
Fork 0
firefox/testing/web-platform/tests/css/css-transforms/css-scale-of-clip-path-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
393 B
HTML

<!doctype HTML>
<style>
.tile {
width: 620px;
height: 671px;
position: absolute;
clip-path: circle(50%);
background-color: lightblue;
}
#container {
transform: scale(0.25);
position: relative;
left: -200px;
will-change: transform;
}
</style>
<div id=container>
<div class="tile" style="top: 520px;"></div>
<div class="tile" style="top: 688px; left: 390px;"></div>
</div>