diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-06-23 12:13:25 -0600 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-06-23 12:13:25 -0600 |
commit | dcb1237bb5deb84cdf921bf7b145b07eb2bd1430 (patch) | |
tree | a99f79054a5b922b2300bdedfb2b7c068bbf887f /components/script | |
parent | e869e8ad08526bbbfffd390b52e423f58b8269f1 (diff) | |
parent | 39ddbbb0e1a20e7165740860b63cdf892951a5ec (diff) | |
download | servo-dcb1237bb5deb84cdf921bf7b145b07eb2bd1430.tar.gz servo-dcb1237bb5deb84cdf921bf7b145b07eb2bd1430.zip |
Auto merge of #6425 - glennw:3d-transforms, r=pcwalton
Implement enough of 3d transforms spec to run the CSS FPS demo.
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6425)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script')
-rw-r--r-- | components/script/dom/webidls/CSSStyleDeclaration.webidl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/script/dom/webidls/CSSStyleDeclaration.webidl b/components/script/dom/webidls/CSSStyleDeclaration.webidl index d85dfc8f8ca..63220ad1ecd 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -93,6 +93,10 @@ partial interface CSSStyleDeclaration { [TreatNullAs=EmptyString] attribute DOMString transform; [TreatNullAs=EmptyString] attribute DOMString transformOrigin; + [TreatNullAs=EmptyString] attribute DOMString perspective; + [TreatNullAs=EmptyString] attribute DOMString perspectiveOrigin; + [TreatNullAs=EmptyString] attribute DOMString transformStyle; + [TreatNullAs=EmptyString] attribute DOMString backfaceVisibility; [TreatNullAs=EmptyString] attribute DOMString direction; |