tor-browser

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

new-content-from-root-display-none-ref.html (645B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>View transitions: capture starts with root being display none (ref)</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
      5 <link rel="author" href="mailto:vmpstr@chromium.org">
      6 <style>
      7 .tb { writing-mode: horizontal-tb; }
      8 .lr { writing-mode: vertical-lr; }
      9 .rl { writing-mode: vertical-rl; }
     10 .shared {
     11  margin: 2px;
     12  width: 100px;
     13  height: 50px;
     14  background: green;
     15  contain: paint;
     16  border: 1px solid black;
     17 }
     18 </style>
     19 
     20 <div class=tb><div id=one class=shared>T</div></div>
     21 <div class=lr><div id=two class=shared>T</div></div>
     22 <div class=rl><div id=three class=shared>T</div></div>