diff options
author | Patrick Walton <pcwalton@mimiga.net> | 2015-01-09 07:25:49 -0800 |
---|---|---|
committer | Patrick Walton <pcwalton@mimiga.net> | 2015-01-28 16:23:31 -0800 |
commit | 0f8e436745715b68617722ae8db16c42f6eb3914 (patch) | |
tree | 3fc367b7d3a9867fb67964054e607324e1a0cb33 /components/script/dom/webidls/CSSStyleDeclaration.webidl | |
parent | aba5c16091362933e8a64059701b25df4324ff6d (diff) | |
download | servo-0f8e436745715b68617722ae8db16c42f6eb3914.tar.gz servo-0f8e436745715b68617722ae8db16c42f6eb3914.zip |
layout: Implement `text-overflow: ellipsis` per CSS-UI-3 § 6.2.
Only the one-value syntax is supported for now.
Diffstat (limited to 'components/script/dom/webidls/CSSStyleDeclaration.webidl')
-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 afe511b7e1f..88c78b72775 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -116,6 +116,7 @@ partial interface CSSStyleDeclaration { [TreatNullAs=EmptyString] attribute DOMString wordBreak; [TreatNullAs=EmptyString] attribute DOMString wordSpacing; [TreatNullAs=EmptyString] attribute DOMString wordWrap; + [TreatNullAs=EmptyString] attribute DOMString textOverflow; [TreatNullAs=EmptyString] attribute DOMString textAlign; [TreatNullAs=EmptyString] attribute DOMString textDecoration; |