tor-browser

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

auto-name-from-id-ref.html (460B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>View transitions: cross-document navigation with auto name</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-2/">
      5 <style>
      6 @view-transition { navigation: auto; }
      7 body {
      8  background: rebeccapurple;
      9  margin: 0;
     10 }
     11 #green {
     12  width: 100px;
     13  height: 100px;
     14  position: absolute;
     15  left: 100px;
     16  view-transition-name: auto;
     17  background: green;
     18  contain: layout;
     19 }
     20 </style>
     21 <div id="green"></div>
     22 </html>