tor-browser

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

dialog-in-top-layer-during-transition-ref.html (480B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>View transitions: element in top layer during transition (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 div {
      9  position: fixed;
     10  top: 0;
     11  left: 0;
     12  width: 100px;
     13  height: 100px;
     14 }
     15 
     16 .dialog {
     17  background: lightgreen;
     18 }
     19 
     20 .backdrop {
     21  background: grey;
     22  top: 120px;
     23 }
     24 
     25 </style>
     26 <div class="dialog"></div>
     27 <div class="backdrop"></div>