capture-with-offscreen-child-translated-ref.html (512B)
1 <!doctype html> 2 <html> 3 <title>View transitions: offscreen child (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 { 9 background: pink; 10 } 11 12 .invisible { 13 position: absolute; 14 top: 100px; 15 width: 50px; 16 height: 50px; 17 background: green; 18 } 19 .target { 20 position: relative; 21 top: 200px; 22 width: 100px; 23 height: 100px; 24 background: blue; 25 } 26 </style> 27 28 <div class=target></div> 29 <div class=invisible></div>