diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-07-08 06:01:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-08 06:01:52 -0700 |
commit | 1fabfee27e16a237d8a6a6b2e4aaad5e67311104 (patch) | |
tree | 50242bd1621072fca6a9d8bdd286af0429469547 /components/script/dom | |
parent | 5afdf7fb5c9a4c997a287f6d61ec05857f073ce2 (diff) | |
parent | 3a4539f04338a0897cc768b93fe5f9f4a0461554 (diff) | |
download | servo-1fabfee27e16a237d8a6a6b2e4aaad5e67311104.tar.gz servo-1fabfee27e16a237d8a6a6b2e4aaad5e67311104.zip |
Auto merge of #12118 - emilio:animation-shorthand, r=SimonSapin
style: Add support to the animation shorthand and fix parsing of animation-name
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Part of #11916.
r? @SimonSapin
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12118)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom')
-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; |