-
Notifications
You must be signed in to change notification settings - Fork 757
Open
Labels
css-animations-1Current WorkCurrent Work
Description
The procedures to get/set CSSKeyframesRule.name and CSSKeyframeRule.keyText are loosely worded:
interface CSSKeyframesRule : CSSRule { attribute CSSOMString name; // ... };
name, of typeCSSOMStringThis attribute is the name of the keyframes, used by the
animation-nameproperty.
https://drafts.csswg.org/css-animations-1/#interface-csskeyframesrule-idl
Related: #2435
interface CSSKeyframeRule : CSSRule { attribute CSSOMString keyText; // ... };
keyText, of typeCSSOMStringThis attribute represents the keyframe selector as a comma-separated list of percentage values. The
fromandtokeywords map to0%and100%, respectively.If
keyTextis updated with an invalid keyframe selector, aSyntaxErrorexception must be thrown and the value ofkeyTextmust remain unchanged.
https://drafts.csswg.org/css-animations-1/#interface-csskeyframerule-idl
Metadata
Metadata
Assignees
Labels
css-animations-1Current WorkCurrent Work