From c4c35ce9b9df962235049e01cf176bf27b9aca1d Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Fri, 9 Jun 2023 14:07:59 +0100 Subject: [PATCH] LibWeb: Alphabetize animation properties I didn't notice this when they were added, whoops --- Userland/Libraries/LibWeb/CSS/Properties.json | 98 +++++++++---------- 1 file changed, 49 insertions(+), 49 deletions(-) diff --git a/Userland/Libraries/LibWeb/CSS/Properties.json b/Userland/Libraries/LibWeb/CSS/Properties.json index 3455c61833..a9eb66bbb7 100644 --- a/Userland/Libraries/LibWeb/CSS/Properties.json +++ b/Userland/Libraries/LibWeb/CSS/Properties.json @@ -45,48 +45,12 @@ "animation-fill-mode" ] }, - "animation-name": { - "affects-layout": true, - "inherited": false, - "initial": "none", - "valid-types": [ - "string", - "custom-ident" - ], - "valid-identifiers": [ - "none" - ] - }, - "animation-duration": { + "animation-delay": { "affects-layout": true, "inherited": false, "initial": "0s", "valid-types": [ - "time [0,∞]" - ] - }, - "animation-timing-function": { - "affects-layout": true, - "inherited": false, - "initial": "ease", - "__comment": "FIXME: This is like...wrong.", - "valid-identifiers": [ - "ease", - "linear", - "ease-in-out", - "ease-in", - "ease-out" - ] - }, - "animation-iteration-count": { - "affects-layout": true, - "inherited": false, - "initial": "1", - "valid-types": [ - "number [0,∞]" - ], - "valid-identifiers": [ - "infinite" + "time [-∞,∞]" ] }, "animation-direction": { @@ -100,21 +64,12 @@ "alternate-reverse" ] }, - "animation-play-state": { - "affects-layout": false, - "inherited": false, - "initial": "running", - "valid-identifiers": [ - "running", - "paused" - ] - }, - "animation-delay": { + "animation-duration": { "affects-layout": true, "inherited": false, "initial": "0s", "valid-types": [ - "time [-∞,∞]" + "time [0,∞]" ] }, "animation-fill-mode": { @@ -128,6 +83,51 @@ "both" ] }, + "animation-iteration-count": { + "affects-layout": true, + "inherited": false, + "initial": "1", + "valid-types": [ + "number [0,∞]" + ], + "valid-identifiers": [ + "infinite" + ] + }, + "animation-name": { + "affects-layout": true, + "inherited": false, + "initial": "none", + "valid-types": [ + "string", + "custom-ident" + ], + "valid-identifiers": [ + "none" + ] + }, + "animation-play-state": { + "affects-layout": false, + "inherited": false, + "initial": "running", + "valid-identifiers": [ + "running", + "paused" + ] + }, + "animation-timing-function": { + "affects-layout": true, + "inherited": false, + "initial": "ease", + "__comment": "FIXME: This is like...wrong.", + "valid-identifiers": [ + "ease", + "linear", + "ease-in-out", + "ease-in", + "ease-out" + ] + }, "appearance": { "inherited": false, "initial": "auto",