tor-browser

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

exit-transition-with-anonymous-layout-object-ref.html (461B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>View transitions: exit transition with layout objects that don't have a node (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 
      7 <style>
      8 :root {
      9  scrollbar-width: none;
     10 }
     11 
     12 body {
     13  width: 100vw;
     14  height: 100vh;
     15  background: pink;
     16 }
     17 
     18 #target {
     19  width: 100px;
     20  height: 100px;
     21  background: blue;
     22 }
     23 </style>
     24 <div id="target"></div>