tor-browser

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

pseudo-rendering-invalidation-ref.html (710B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>View transitions: invalidating VT pseudo elements renders correctly (ref)</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
      5 <link rel="author" href="mailto:bokan@chromium.org">
      6 
      7 <style>
      8 :root {
      9  background-color: limegreen;
     10 }
     11 
     12 div {
     13  position: absolute;
     14  left: 0px;
     15  top: 600px;
     16  width: 100px;
     17  height: 100px;
     18 
     19  display: flex;
     20  justify-content: center;
     21  flex-direction: column;
     22  align-items: center;
     23 
     24  background: darkseagreen;
     25 }
     26 </style>
     27 
     28 <div style="left: 0px; top: 100px;">Group</div>
     29 <div style="left: 150px; top: 100px;">Image-Pair</div>
     30 <div style="left: 0px; top: 250px;">Old</div>
     31 <div style="left: 150px; top: 250px;">New</div>