mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
LibWeb: Fix crash for calculated transition duration/delays
As the parser was trying to directly unwrap an unresolved duration. Currently we are outputting the wrong results for the serialized duration, but this is still a step forwards. Fixes a crash seen on: https://evaparish.com/blog/how-i-edit
This commit is contained in:
parent
945c58c7c1
commit
18520561e7
Notes:
sideshowbarker
2024-07-17 05:09:48 +09:00
Author: https://github.com/shannonbooth
Commit: 18520561e7
Pull-request: https://github.com/SerenityOS/serenity/pull/23867
Reviewed-by: https://github.com/AtkinsSJ ✅
5 changed files with 24 additions and 6 deletions
|
@ -5354,10 +5354,10 @@ RefPtr<StyleValue> Parser::parse_transition_value(TokenStream<ComponentValue>& t
|
|||
if (auto time = parse_time(tokens); time.has_value()) {
|
||||
switch (time_value_count) {
|
||||
case 0:
|
||||
transition.duration = time.release_value().value();
|
||||
transition.duration = time.release_value();
|
||||
break;
|
||||
case 1:
|
||||
transition.delay = time.release_value().value();
|
||||
transition.delay = time.release_value();
|
||||
break;
|
||||
default:
|
||||
dbgln_if(CSS_PARSER_DEBUG, "Transition property has more than two time values");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue