mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
LibWeb: Parse view() for the animation-timeline CSS property
This commit is contained in:
parent
7d70714eac
commit
c8d91c127e
Notes:
github-actions[bot]
2025-11-28 13:25:26 +00:00
Author: https://github.com/Calme1709
Commit: c8d91c127e
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/6912
Reviewed-by: https://github.com/AtkinsSJ ✅
14 changed files with 198 additions and 44 deletions
|
|
@ -258,6 +258,8 @@ Optional<Parser::PropertyAndValue> Parser::parse_css_value_for_properties(Readon
|
|||
return parsed.release_value();
|
||||
if (auto parsed = parse_for_type(ValueType::Url); parsed.has_value())
|
||||
return parsed.release_value();
|
||||
if (auto parsed = parse_for_type(ValueType::ViewFunction); parsed.has_value())
|
||||
return parsed.release_value();
|
||||
if (auto parsed = parse_for_type(ValueType::ViewTimelineInset); parsed.has_value())
|
||||
return parsed.release_value();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue