1
0
Fork 0
firefox/testing/web-platform/tests/css/css-view-transitions/inline-child-with-overflow-shadow-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

30 lines
537 B
HTML

<!DOCTYPE html>
<html>
<title>View transitions: inline child with overflowing shadow</title>
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
<style>
body {
background: rebeccapurple;
margin: 0;
}
.target {
width: 100px;
height: 200px;
position: absolute;
top: 100px;
left: 100px;
view-transition-name: target;
}
.child {
background: green;
font-size: 100px;
box-shadow: -20px -20px yellow;
}
</style>
<div class=target>
<span class=child>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>
</div>