tor-browser

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

old-content-captures-root-ref.html (411B)


      1 <!DOCTYPE html>
      2 <title>View transitions: capture root elements (ref)</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 .box {
      7  background: lightblue;
      8  width: 100px;
      9  height: 100px;
     10  contain: paint;
     11  position: absolute;
     12  font-size: 30pt;
     13 }
     14 #e1 {
     15  top: 20px;
     16  left: 20px;
     17 }
     18 </style>
     19 <div id=e1 class=box></div>