empty-render-target-capture-ref.html (427B)
1 <!DOCTYPE html> 2 <html> 3 <title>View transitions: empty render surface capture (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 <style> 7 8 .container { 9 width: 0px; 10 height: 0px; 11 } 12 .child { 13 width: 100px; 14 height: 100px; 15 background: green; 16 will-change: opacity; 17 } 18 19 </style> 20 21 <div class=container> 22 <div class=child></div> 23 </div>