diff options
author | Patrick Walton <pcwalton@mimiga.net> | 2014-12-18 12:57:58 -0800 |
---|---|---|
committer | Patrick Walton <pcwalton@mimiga.net> | 2015-03-02 13:28:51 -0800 |
commit | 09358b908d937a3dfbb74a5bdcc083dbf2b1df1c (patch) | |
tree | 626201327ab456f51b283a95f3319b11ec907dd7 /components/script | |
parent | fed878710c5697b49ccf5185ebe08a58be27073f (diff) | |
download | servo-09358b908d937a3dfbb74a5bdcc083dbf2b1df1c.tar.gz servo-09358b908d937a3dfbb74a5bdcc083dbf2b1df1c.zip |
layout: Implement `text-shadow` per CSS-TEXT-DECORATION-3 § 4.
Diffstat (limited to 'components/script')
-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 0d716d4ab15..1d642acf17c 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -79,6 +79,7 @@ partial interface CSSStyleDeclaration { [TreatNullAs=EmptyString] attribute DOMString boxSizing; [TreatNullAs=EmptyString] attribute DOMString boxShadow; + [TreatNullAs=EmptyString] attribute DOMString textShadow; //[TreatNullAs=EmptyString] attribute DOMString float; //XXXjdm need BinaryName annotation |