iframe-and-main-frame-transition-with-name-on-iframe-ref.html (495B)
1 <!DOCTYPE html> 2 <title>View transitions: iframe and main frame transition at the same time with name on iframe (ref)</title> 3 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/"> 4 <link rel="author" href="mailto:khushalsagar@chromium.org"> 5 <style> 6 iframe { 7 position: fixed; 8 top: 0; 9 left: 0; 10 width: 50vw; 11 height: 50vh; 12 border: 1px solid orange; 13 } 14 15 body { 16 background: green; 17 } 18 </style> 19 20 <iframe srcdoc=" 21 <style> 22 body { 23 background: blue; 24 } 25 </style> 26 "></iframe>