tor-browser

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

mix-blend-mode-stacking-context-001-ref.html (897B)


      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        <style>
      8            .simple {
      9                background: aqua;/*rgb(0,255,255);*/
     10                width: 140px;
     11                height: 140px;
     12                display:inline-block;
     13            }
     14            .mixed {
     15                background: black;/*rgb(0,0,0);*/
     16                margin-top: 20px;
     17                margin-left: 20px;
     18                width: 100px;
     19                height: 100px;
     20                }
     21        </style>
     22    </head>
     23    <body>
     24        <p>Test passes if you see a black rectangle with large aqua borders.
     25        You should not see a red rectangle on the page. </p>
     26        <div class="simple">
     27            <div class="mixed"></div>
     28        </div>
     29    </body>
     30 </html>