diff options
Diffstat (limited to 'components/script/dom/webidls/CSSStyleDeclaration.webidl')
-rw-r--r-- | components/script/dom/webidls/CSSStyleDeclaration.webidl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/components/script/dom/webidls/CSSStyleDeclaration.webidl b/components/script/dom/webidls/CSSStyleDeclaration.webidl index 84f9c821aad..8d587b9760a 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -336,4 +336,12 @@ partial interface CSSStyleDeclaration { [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animationTimingFunction; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animation-iteration-count; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animationIterationCount; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animation-direction; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animationDirection; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animation-play-state; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animationPlayState; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animation-fill-mode; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animationFillMode; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animation-delay; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animationDelay; }; |