tor-browser

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

old-content-has-scrollbars-ref.html (863B)


      1 <!DOCTYPE html>
      2 <title>View transitions: outgoing viewport has scrollbars (ref)</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
      4 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/7859">
      5 <link rel="author" href="mailto:bokan@chromium.org">
      6 <style>
      7  html, body {
      8    width: 100%;
      9    height: 100%;
     10    background-color: lightpink;
     11  }
     12  html {
     13    overflow: hidden;
     14  }
     15  body {
     16    margin: 50px;
     17  }
     18  div {
     19    background-image:
     20      linear-gradient(45deg, #000 25%, transparent 25%),
     21      linear-gradient(45deg, transparent 75%, #000 75%),
     22      linear-gradient(45deg, transparent 75%, #000 75%),
     23      linear-gradient(45deg, #000 25%, lightgreen 25%);
     24    background-size: 200px 200px;
     25    background-position: 0 0, 0 0, -100px -100px, 100px 100px;
     26    width: 200%;
     27    height: 200%;
     28  }
     29 </style>
     30 <div></div>