root-to-shared-animation-end-ref.html (482B)
1 <!DOCTYPE html> 2 <html> 3 <title>Root to shared animation test (ref)</title> 4 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/"> 5 <link rel="author" href="mailto:vmpstr@chromium.org"> 6 7 <style> 8 body, html { padding: 0; margin: 0 } 9 body { 10 background: yellow; 11 } 12 .background { 13 background: lightgreen; 14 width: 400px; 15 height: 300px; 16 } 17 .item { 18 background: blue; 19 width: 200px; 20 height: 200px; 21 } 22 </style> 23 24 <div class=background> 25 <div class=item></div> 26 </div>