tor-browser

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

paint-holding-in-iframe-ref.html (463B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>View transitions: display old paint during update callback (ref)</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
      5 <link rel="author" href="mailto:khushalsagar@chromium.org">
      6 <style>
      7  .new {
      8    border: 5px solid orange;
      9  }
     10 </style>
     11 
     12 <iframe id="inner" class="new" srcdoc="
     13  <style>
     14    body {
     15      background: blue;
     16    }
     17  </style>
     18  <body>
     19    This is old content
     20  </body>
     21 "></iframe>
     22 </html>