Status: PASS | Duration: 61ms | Subtests: 16/16 | Open test on wpt.live | wpt.fyi
Data from commit:
a50cb89 wpt: run reference-named files which are themselves tests (#836) (2026-09-03)
| Subtest | Status | Message |
|---|---|---|
| e.style['mix-blend-mode'] = "normal" should set the property value | PASS | |
| e.style['mix-blend-mode'] = "multiply" should set the property value | PASS | |
| e.style['mix-blend-mode'] = "screen" should set the property value | PASS | |
| e.style['mix-blend-mode'] = "overlay" should set the property value | PASS | |
| e.style['mix-blend-mode'] = "darken" should set the property value | PASS | |
| e.style['mix-blend-mode'] = "lighten" should set the property value | PASS | |
| e.style['mix-blend-mode'] = "color-dodge" should set the property value | PASS | |
| e.style['mix-blend-mode'] = "color-burn" should set the property value | PASS | |
| e.style['mix-blend-mode'] = "hard-light" should set the property value | PASS | |
| e.style['mix-blend-mode'] = "soft-light" should set the property value | PASS | |
| e.style['mix-blend-mode'] = "difference" should set the property value | PASS | |
| e.style['mix-blend-mode'] = "exclusion" should set the property value | PASS | |
| e.style['mix-blend-mode'] = "hue" should set the property value | PASS | |
| e.style['mix-blend-mode'] = "saturation" should set the property value | PASS | |
| e.style['mix-blend-mode'] = "color" should set the property value | PASS | |
| e.style['mix-blend-mode'] = "luminosity" should set the property value | PASS |
/css/compositing/parsing/mix-blend-mode-valid.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Compositing and Blending Level 1: parsing mix-blend-mode with valid values</title> <link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org"> <link rel="help" href="https://drafts.fxtf.org/compositing-1/#propdef-mix-blend-mode"> <meta name="assert" content="mix-blend-mode supports the full grammar '<blend-mode>'."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/parsing-testcommon.js"></script> </head> <body> <script> test_valid_value("mix-blend-mode", "normal"); test_valid_value("mix-blend-mode", "multiply"); test_valid_value("mix-blend-mode", "screen"); test_valid_value("mix-blend-mode", "overlay"); test_valid_value("mix-blend-mode", "darken"); test_valid_value("mix-blend-mode", "lighten"); test_valid_value("mix-blend-mode", "color-dodge"); test_valid_value("mix-blend-mode", "color-burn"); test_valid_value("mix-blend-mode", "hard-light"); test_valid_value("mix-blend-mode", "soft-light"); test_valid_value("mix-blend-mode", "difference"); test_valid_value("mix-blend-mode", "exclusion"); test_valid_value("mix-blend-mode", "hue"); test_valid_value("mix-blend-mode", "saturation"); test_valid_value("mix-blend-mode", "color"); test_valid_value("mix-blend-mode", "luminosity"); </script> </body> </html>