diff --git a/css-animations-1/Overview.bs b/css-animations-1/Overview.bs index 320e337e5a0..3b16f042f39 100644 --- a/css-animations-1/Overview.bs +++ b/css-animations-1/Overview.bs @@ -229,10 +229,6 @@ Declaring Keyframes the names are fully case-sensitive; two names are equal only if they are codepoint-by-codepoint equal. The <> additionally excludes the ''animation-name/none'' keyword. - The <> should be treated as <>, hence parsed as invalid if - is one of the CSS-wide keywords or "default"; empty string is not allowed - either. It's serialized as identifier when possible and as <> otherwise. -
For example, the following two ''@keyframes'' rules have the same name, @@ -258,8 +254,8 @@ Declaring Keyframes @keyframes None { /* ... */ } - They are also invalid if those names are specified with a <> - because they can not be serialized as valid <>: + However, those names can be specified with a <>, + so the following are both valid:
 		@keyframes "initial" { /* ... */ }