diff --git a/css-animations-1/Overview.bs b/css-animations-1/Overview.bs index 3b16f042f39..320e337e5a0 100644 --- a/css-animations-1/Overview.bs +++ b/css-animations-1/Overview.bs @@ -229,6 +229,10 @@ 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, @@ -254,8 +258,8 @@ Declaring Keyframes @keyframes None { /* ... */ } - However, those names can be specified with a <>, - so the following are both valid: + They are also invalid if those names are specified with a <> + because they can not be serialized as valid <>:
 		@keyframes "initial" { /* ... */ }