diff options
author | Patrick Walton <pcwalton@mimiga.net> | 2014-12-31 14:08:08 -0500 |
---|---|---|
committer | Patrick Walton <pcwalton@mimiga.net> | 2015-03-17 11:30:55 -0700 |
commit | d10627a2b3f3887dd7276db05662afbd3369b32b (patch) | |
tree | 30b4d26b0fea817826554ceade107dc2291e4ca8 /components/script/dom/webidls/CSSStyleDeclaration.webidl | |
parent | 7bd6cb00911572e8733e462156122d974ff0c8a8 (diff) | |
download | servo-d10627a2b3f3887dd7276db05662afbd3369b32b.tar.gz servo-d10627a2b3f3887dd7276db05662afbd3369b32b.zip |
layout: Implement 2D CSS transforms per CSS-TRANSFORMS § 5, 6, 7, and 8.
Diffstat (limited to 'components/script/dom/webidls/CSSStyleDeclaration.webidl')
-rw-r--r-- | components/script/dom/webidls/CSSStyleDeclaration.webidl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/components/script/dom/webidls/CSSStyleDeclaration.webidl b/components/script/dom/webidls/CSSStyleDeclaration.webidl index be5afa7244d..3be5abe1099 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -90,6 +90,9 @@ partial interface CSSStyleDeclaration { [TreatNullAs=EmptyString] attribute DOMString clip; + [TreatNullAs=EmptyString] attribute DOMString transform; + [TreatNullAs=EmptyString] attribute DOMString transformOrigin; + [TreatNullAs=EmptyString] attribute DOMString direction; [TreatNullAs=EmptyString] attribute DOMString filter; |