tor-browser

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

mix-blend-mode-parent-element-overflow-scroll-ref.html (922B)


      1 <!DOCTYPE html>
      2 <html>
      3    <head>
      4        <meta charset="utf-8">
      5        <title>CSS Reftest Reference</title>
      6        <link rel="author" title="Mirela Budăeș" href="mailto:mbudaes@adobe.com">
      7        <link rel="author" title="Ion Roșca" href="mailto:rosca@adobe.com">
      8        <link rel="reviewer" title="Mihai Țică" href="mailto:mitica@adobe.com">
      9        <style type="text/css">
     10            .parent {
     11                width: 140px;
     12                height: 140px;
     13                position: relative;
     14                z-index: 1;
     15                overflow:scroll;
     16            }
     17            .blended {
     18                background: lime;
     19                width: 200px;
     20                height: 200px;
     21            }
     22        </style>
     23    </head>
     24    <body>
     25        <p>Test passes if you see a scrollable lime rectangle.</p>
     26        <div class="parent">
     27            <div class="blended"></div>
     28        </div>
     29    </body>
     30 </html>