tor-browser

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

content-escapes-clip-with-abspos-child-ref.html (538B)


      1 <!DOCTYPE html>
      2 <title>View transitions: view-transition-name element, when captured escapes its clips even if it has an abspos child (ref)</title>
      3 <link rel="help" href="https://www.w3.org/TR/css-transitions-1/">
      4 <link rel="author" href="mailto:vmpstr@chromium.org">
      5 
      6 <style>
      7 #target {
      8  width: 100px;
      9  height: 100px;
     10  background: lightblue;
     11 }
     12 #abspos {
     13  position: absolute;
     14  left: 0;
     15  width: 50px;
     16  height: 50px;
     17  background: pink;
     18 }
     19 
     20 body { background: rebeccapurple }
     21 </style>
     22 
     23 
     24 <div id=target>
     25  <div id=abspos></div>
     26 </div>