diff options
author | Glenn Watson <gw@intuitionlibrary.com> | 2015-07-31 10:41:18 +1000 |
---|---|---|
committer | Greg Guthe <greg.guthe@gmail.com> | 2016-05-31 19:32:30 -0400 |
commit | ff995d739c488c2dc042815610af9d9f5e2c46c7 (patch) | |
tree | af8f351db4e693d0a1ac209ac44145d38c2257b1 /components/script/dom/webidls/CSSStyleDeclaration.webidl | |
parent | 40b2d424c08ce089dba8800fa310097276b3607e (diff) | |
download | servo-ff995d739c488c2dc042815610af9d9f5e2c46c7.tar.gz servo-ff995d739c488c2dc042815610af9d9f5e2c46c7.zip |
implement cssText
Diffstat (limited to 'components/script/dom/webidls/CSSStyleDeclaration.webidl')
-rw-r--r-- | components/script/dom/webidls/CSSStyleDeclaration.webidl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/webidls/CSSStyleDeclaration.webidl b/components/script/dom/webidls/CSSStyleDeclaration.webidl index 567167024ee..bab5a667f3b 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -9,8 +9,8 @@ */ interface CSSStyleDeclaration { - //[SetterThrows] - // attribute DOMString cssText; + [SetterThrows] + attribute DOMString cssText; readonly attribute unsigned long length; getter DOMString item(unsigned long index); DOMString getPropertyValue(DOMString property); |