tor-browser

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

1648282-1-ref.html (922B)


      1 <!DOCTYPE html>
      2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      3   - License, v. 2.0. If a copy of the MPL was not distributed with this file,
      4   - You can obtain one at http://mozilla.org/MPL/2.0/. -->
      5 <html reftest-async-scroll>
      6 
      7 <head>
      8    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
      9    <meta charset="UTF-8">
     10    <style>
     11    * {
     12        margin: 0px;
     13        padding: 0px;
     14    }
     15 
     16    .scrolled {
     17        height: 400px;
     18        opacity: 0.9;
     19        background: linear-gradient(white, green);
     20        will-change: transform;
     21    }
     22 
     23    .body {
     24        width: 500px;
     25        height: 200px;
     26        overflow: hidden scroll;
     27        background-color: red;
     28    }
     29    </style>
     30    <title>Bug 1648282</title>
     31 </head>
     32 
     33 <body>
     34    <div class="body" reftest-async-scroll-x="0" reftest-async-scroll-y="50">
     35        <div class="scrolled">
     36        </div>
     37    </div>
     38 </body>
     39 </html>