LibWeb/CSS: Parse mask-clip property

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

View file

@ -664,6 +664,7 @@ Parser::ParseErrorOr<NonnullRefPtr<CSSStyleValue const>> Parser::parse_css_value
if (auto parsed_value = parse_math_depth_value(tokens); parsed_value && !tokens.has_next_token())
return parsed_value.release_nonnull();
return ParseError::SyntaxError;
case PropertyID::MaskClip:
case PropertyID::MaskComposite:
case PropertyID::MaskMode:
case PropertyID::MaskOrigin: