tor-browser

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

transition-in-empty-iframe-ref.html (589B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>View transitions: Transition from an empty iframe (ref)</title>
      5  <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
      6  <link rel="author" href="mailto:bokan@chromium.org">
      7  <style>
      8    iframe {
      9      position: absolute;
     10      left: 25px;
     11      top: 25px;
     12      width: 50vw;
     13      height: 50vh;
     14    }
     15    div {
     16      background-color: skyblue;
     17      width: 100px;
     18      height: 100px;
     19    }
     20  </style>
     21 </head>
     22 
     23 <body>
     24  <iframe src="support/transition-in-empty-iframe-child.html?ref">
     25  </iframe>
     26  <div></div>
     27 </body>
     28 </html>