diff options
author | Glenn Watson <gw@intuitionlibrary.com> | 2015-06-18 13:06:31 +1000 |
---|---|---|
committer | Glenn Watson <gw@intuitionlibrary.com> | 2015-06-23 14:10:44 +1000 |
commit | 39ddbbb0e1a20e7165740860b63cdf892951a5ec (patch) | |
tree | 26d78ca5b184929c5d3859f2e3f53e8e986e3101 /components/script | |
parent | d86c5879255ec9ced621412d4565a9a66ee4dc72 (diff) | |
download | servo-39ddbbb0e1a20e7165740860b63cdf892951a5ec.tar.gz servo-39ddbbb0e1a20e7165740860b63cdf892951a5ec.zip |
Implement enough of 3d transforms spec to run the CSS FPS demo.
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; |