tor-browser

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

iframe-transition-ref.html (386B)


      1 <!DOCTYPE html>
      2 <title>View transitions: iframe</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
      4 <link rel="author" href="mailto:vmpstr@chromium.org">
      5 <style>
      6 iframe { width: 500px; height: 500px }
      7 </style>
      8 
      9 <iframe srcdoc="
     10 <style>
     11 div {
     12  width: 100px;
     13  height: 100px;
     14  background: green;
     15 }
     16 html { height: 50%; }
     17 </style>
     18 
     19 <div></div>
     20 "></iframe>