mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-05 23:59:53 +00:00
LibWeb/CSS: Parse mask-mode property
This commit is contained in:
parent
22d7a58998
commit
d022eea9fc
Notes:
github-actions[bot]
2025-08-06 22:11:13 +00:00
Author: https://github.com/InvalidUsernameException
Commit: d022eea9fc
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5511
Reviewed-by: https://github.com/AtkinsSJ ✅
Reviewed-by: https://github.com/Calme1709
8 changed files with 23 additions and 2 deletions
|
@ -665,6 +665,7 @@ Parser::ParseErrorOr<NonnullRefPtr<CSSStyleValue const>> Parser::parse_css_value
|
|||
return parsed_value.release_nonnull();
|
||||
return ParseError::SyntaxError;
|
||||
case PropertyID::MaskComposite:
|
||||
case PropertyID::MaskMode:
|
||||
if (auto parsed_value = parse_simple_comma_separated_value_list(property_id, tokens))
|
||||
return parsed_value.release_nonnull();
|
||||
return ParseError::SyntaxError;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue