Status: PASS | Duration: 54ms | Subtests: 2/2 | 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['mask-type'] = "luminance" should set the property value | PASS | |
| e.style['mask-type'] = "alpha" should set the property value | PASS |
/css/css-masking/parsing/mask-type-valid.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Masking Module Level 1: parsing mask-type with valid values</title> <link rel="help" href="https://drafts.fxtf.org/css-masking-1/#the-mask-type"> <meta name="assert" content="mask-type supports the full grammar 'luminance | alpha'."> <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("mask-type", "luminance"); test_valid_value("mask-type", "alpha"); </script> </body> </html>