blob: 572ff8d65a74df7d9bca490534de680b4fb95919 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
Test that clipping is properly calculated when inline transforms cause a clipping root with a different position to be used. The green box should be visible.
<div style="transform: translateZ(0)"></div>
<div style="position: relative; z-index: 1; top: 50px;">
<div style="overflow: hidden;">
<div style="position: relative;">
<div style="height:50px; background-color:green;"></div>
</div>
</div>
</div>
|