diff options
author | Emilio Cobos Álvarez <me@emiliocobos.me> | 2016-07-01 12:12:56 -0700 |
---|---|---|
committer | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-07-07 16:05:22 -0700 |
commit | 411ae84908f6e0c167a9a77e32d57dfa089dbafb (patch) | |
tree | b968aab6b124a863e2c17f72f657c6477129b5d9 /components/script/dom/webidls/CSSStyleDeclaration.webidl | |
parent | 4fafcb121f807c31593bd2f8731358c68b3b7810 (diff) | |
download | servo-411ae84908f6e0c167a9a77e32d57dfa089dbafb.tar.gz servo-411ae84908f6e0c167a9a77e32d57dfa089dbafb.zip |
style: Add support to the animation shorthand and fix parsing of animation-name.
Diffstat (limited to 'components/script/dom/webidls/CSSStyleDeclaration.webidl')
-rw-r--r-- | components/script/dom/webidls/CSSStyleDeclaration.webidl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/webidls/CSSStyleDeclaration.webidl b/components/script/dom/webidls/CSSStyleDeclaration.webidl index 02864d39a77..22044bcf17f 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -331,6 +331,7 @@ partial interface CSSStyleDeclaration { [SetterThrows, TreatNullAs=EmptyString] attribute DOMString alignSelf; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString align-self; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animation; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animation-name; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animationName; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString animation-duration; |