tor-browser

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

mix-blend-mode-valid.html (1385B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>Compositing and Blending Level 1: parsing mix-blend-mode with valid values</title>
      6 <link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
      7 <link rel="help" href="https://drafts.fxtf.org/compositing-1/#propdef-mix-blend-mode">
      8 <meta name="assert" content="mix-blend-mode supports the full grammar '<blend-mode>'.">
      9 <script src="/resources/testharness.js"></script>
     10 <script src="/resources/testharnessreport.js"></script>
     11 <script src="/css/support/parsing-testcommon.js"></script>
     12 </head>
     13 <body>
     14 <script>
     15 test_valid_value("mix-blend-mode", "normal");
     16 test_valid_value("mix-blend-mode", "multiply");
     17 test_valid_value("mix-blend-mode", "screen");
     18 test_valid_value("mix-blend-mode", "overlay");
     19 test_valid_value("mix-blend-mode", "darken");
     20 test_valid_value("mix-blend-mode", "lighten");
     21 test_valid_value("mix-blend-mode", "color-dodge");
     22 test_valid_value("mix-blend-mode", "color-burn");
     23 test_valid_value("mix-blend-mode", "hard-light");
     24 test_valid_value("mix-blend-mode", "soft-light");
     25 test_valid_value("mix-blend-mode", "difference");
     26 test_valid_value("mix-blend-mode", "exclusion");
     27 test_valid_value("mix-blend-mode", "hue");
     28 test_valid_value("mix-blend-mode", "saturation");
     29 test_valid_value("mix-blend-mode", "color");
     30 test_valid_value("mix-blend-mode", "luminosity");
     31 </script>
     32 </body>
     33 </html>