diff options
author | Emilio Cobos Álvarez <me@emiliocobos.me> | 2016-06-17 05:25:50 +0200 |
---|---|---|
committer | Emilio Cobos Álvarez <me@emiliocobos.me> | 2016-06-28 15:09:53 +0000 |
commit | 818bc6d4a23184b83de9551996d3585d2db33062 (patch) | |
tree | 9872327c98c1c1be629f6e5abe64dbe93e967951 /components/script/dom/webidls/CSSStyleDeclaration.webidl | |
parent | f529786700c8c1e4724a2a06dbd494b3e6a0bdca (diff) | |
download | servo-818bc6d4a23184b83de9551996d3585d2db33062.tar.gz servo-818bc6d4a23184b83de9551996d3585d2db33062.zip |
style: parse the remaining animation longhands.
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; }; |