tor-browser

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

content-visibility-animation-and-scroll-ref.html (451B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>Test that scrolling to a content-visibility: auto subtree restarts animations in it</title>
      4 <link rel="author" title="Rob Buis" href="mailto:rbuis@igalia.com">
      5 <link rel="help" href="https://drafts.csswg.org/css-contain-2/">
      6 
      7 <style>
      8 #target {
      9  position: relative;
     10  background: green;
     11  height: 100px;
     12  width: 100px;
     13  left: 100px;
     14 }
     15 </style>
     16 <body>
     17  <div id="container">
     18    <div id="target"></div>
     19  </div>
     20 </body>