tor-browser

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

fragmented-during-transition-skips-ref.html (591B)


      1 <!DOCTYPE html>
      2 <title>View transitions: fragmented elements skipped</title>
      3 <link rel="help" href="https://www.w3.org/TR/css-view-transitions-1/">
      4 <link rel="author" href="mailto:vmpstr@chromium.org">
      5 
      6 <style>
      7 #spacer {
      8  width: 100px;
      9  height: 950px;
     10  background: lightgreen;
     11 }
     12 #container {
     13  width: 500px;
     14  height: 500px;
     15  columns: 2;
     16 }
     17 #target {
     18  width: 200px;
     19  height: 200px;
     20  background: green;
     21 }
     22 #unrelated {
     23  width: 100px;
     24  height: 100px;
     25  background: lightblue;
     26 }
     27 </style>
     28 <div id=container>
     29  <div id=spacer></div>
     30  <div id=target></div>
     31 </div>
     32 <div id=unrelated></div>