1
0
Fork 0
firefox/testing/web-platform/tests/css/css-view-transitions/new-content-ancestor-clipped-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

34 lines
411 B
HTML

<!doctype HTML>
<html>
<head>
<style>
html {
background: lightpink;
}
div {
position: relative;
width: 200px;
height: 200px;
}
.outer {
background-color: blue;
box-shadow: -50px -50px 0px 0px rgba(0,0,0,1);
left: 100px;
top: 100px;
}
.inner {
background-color: red;
left: 50px;
top: 50px;
}
</style>
</head>
<body>
</body>
<div class="outer">
<div class="inner"></div>
</div>
</html>