1
0
Fork 0
firefox/layout/reftests/border-radius/clipping-and-zindex-1-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

18 lines
532 B
HTML

<!DOCTYPE HTML>
<title>Test for z-index relationship to border-radius clipping of overflow</title>
<style>
#one { position: absolute; background: blue;
top: 50px; left: 50px; width: 100px; height: 100px }
#two { position: absolute; border-radius: 15px; background: fuchsia;
top: 25px; left: 75px; width: 100px; height: 100px }
#three { position: absolute; background: yellow;
top: 75px; left: 100px; width: 100px; height: 100px }
</style>
<div id="three"></div>
<div id="two"></div>
<div id="one"></div>