diff options
author | CJ Ku <cku@mozilla.com> | 2018-01-25 12:50:15 +0900 |
---|---|---|
committer | Brian Birtles <birtles@gmail.com> | 2018-01-31 22:12:34 +0000 |
commit | 174f5f7128927191efd4aef80a19c229b1c3cff1 (patch) | |
tree | f2243966b3684da7588b154486c2a7cb5fb7f24f /components/script/dom/webidls/CSSStyleDeclaration.webidl | |
parent | de3e8c9a8b86bb3b4bdc12b2ce3df3c67aa17f22 (diff) | |
download | servo-174f5f7128927191efd4aef80a19c229b1c3cff1.tar.gz servo-174f5f7128927191efd4aef80a19c229b1c3cff1.zip |
Implement scale property styling
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 598e7d3cb87..b6df0176947 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -190,6 +190,7 @@ partial interface CSSStyleDeclaration { [CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString backfaceVisibility; [CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString backface-visibility; [CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString rotate; + [CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString scale; [CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString translate; [CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString direction; |