tor-browser

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

mix-blend-mode-svg.html (1157B)


      1 <!DOCTYPE html>
      2 <html>
      3    <head>
      4        <title>CSS Test: SVG element is blended.</title>
      5        <link rel="author" title="Mihai Tica" href="mailto:mitica@adobe.com">
      6        <link rel="help" href="https://drafts.fxtf.org/compositing-1/#mix-blend-mode">
      7        <meta name="assert" content="Test checks that an SVG element blends with the parent container.">
      8        <meta name="flags" content="svg">
      9        <meta name="fuzzy" content="0-1;0-10">
     10        <link rel="reviewer" title="Rik Cabanier" href="mailto:cabanier@adobe.com">
     11        <link rel="reviewer" title="Mirela Budaes" href="mailto:mbudaes@adobe.com">
     12        <link rel="match" href="reference/mix-blend-mode-svg-ref.html">
     13        <style type="text/css">
     14            div {
     15                width: 100px;
     16                height: 100px;
     17                background: #FF0;
     18            }
     19        </style>
     20    </head>
     21    <body>
     22        <p>Test passes if you can see a green box.</p>
     23        <div>
     24            <svg width="100" height="100" style="mix-blend-mode: difference;">
     25              <rect width="100" height="100" style="fill: #F00;">
     26            </svg>
     27        </div>
     28    </body>
     29 </html>