mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 20:59:16 +00:00
LibWeb: Parse all
as keyword in transition
shorthand
This ensures that the parsing of the `transition` shorthand property behaves in the same way as the `transition-property` longhand.4
This commit is contained in:
parent
a3e485e2d0
commit
e7ae9c8ebf
Notes:
github-actions[bot]
2025-04-28 18:52:33 +00:00
Author: https://github.com/tcl3
Commit: e7ae9c8ebf
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4503
8 changed files with 1076 additions and 3 deletions
|
@ -17,7 +17,7 @@ namespace Web::CSS {
|
|||
class TransitionStyleValue final : public StyleValueWithDefaultOperators<TransitionStyleValue> {
|
||||
public:
|
||||
struct Transition {
|
||||
ValueComparingRefPtr<CustomIdentStyleValue const> property_name;
|
||||
ValueComparingRefPtr<CSSStyleValue const> property_name;
|
||||
TimeOrCalculated duration { CSS::Time::make_seconds(0.0) };
|
||||
TimeOrCalculated delay { CSS::Time::make_seconds(0.0) };
|
||||
ValueComparingRefPtr<EasingStyleValue const> easing;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue