clip-on-target-in-callback-ref.html (425B)
1 <!DOCTYPE html> 2 <title>View Transitions: Clip on target in callback does not clip root (Ref)</title> 3 <meta name="viewport" content="width=device-width, initial-scale=1"> 4 5 <style> 6 #container { 7 width: 200px; 8 height: 200px; 9 background: blue; 10 border: 5px solid black; 11 } 12 #target { 13 margin-top: 150px; 14 width: 100px; 15 height: 100px; 16 background: green; 17 } 18 </style> 19 20 <div id="container"> 21 <div id="target"></div> 22 </div>