blob: b598df17a0ec92234b2bfff8920344eec0d5dbc2 [file] [log] [blame] [edit]
<!DOCTYPE html>
<html>
<title>Nested View Transitions root capture with border radius (ref)</title>
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-2/">
<link rel="author" href="mailto:[email protected]">
<link rel=stylesheet href="resources/pause-view-transitions.css"></link>
<style>
body { background: lightgreen; }
#clipper {
overflow: clip;
height: 200px;
width: 100px;
border-radius: 50%;
background: rebeccapurple;
}
#i0 {
background: pink;
margin-bottom: 10px;
height: 20px;
}
</style>
<div id=clipper>
<div id=i0 class=item></div>
</div>
</html>