tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

iframe-and-main-frame-transition-old-main-ref.html (449B)


      1 <!DOCTYPE html>
      2 <title>View transitions: iframe and main frame transition at the same time (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 }
     13 
     14 body {
     15  background: green;
     16 }
     17 </style>
     18 
     19 <iframe srcdoc="
     20 <style>
     21 body {
     22  background: orange;
     23 }
     24 </style>
     25 "></iframe>