LibWeb/CSS: Parse mask-origin property

This commit is contained in:
InvalidUsernameException 2025-07-18 20:36:11 +02:00 committed by Sam Atkins
commit eea6792cf7
Notes: github-actions[bot] 2025-08-06 22:10:41 +00:00
7 changed files with 25 additions and 2 deletions

View file

@ -666,6 +666,7 @@ Parser::ParseErrorOr<NonnullRefPtr<CSSStyleValue const>> Parser::parse_css_value
return ParseError::SyntaxError;
case PropertyID::MaskComposite:
case PropertyID::MaskMode:
case PropertyID::MaskOrigin:
if (auto parsed_value = parse_simple_comma_separated_value_list(property_id, tokens))
return parsed_value.release_nonnull();
return ParseError::SyntaxError;