diff options
author | Patrick Walton <pcwalton@mimiga.net> | 2015-05-08 12:55:32 -0700 |
---|---|---|
committer | Patrick Walton <pcwalton@mimiga.net> | 2015-05-19 16:31:20 -0700 |
commit | 7d9eda916be7b9bd95a34e90c7aef17ce5cb0a17 (patch) | |
tree | 48e521a29b2924056c80d190d22198d37807c459 /components/script/dom/webidls/HTMLFontElement.webidl | |
parent | c981e9b2e36d4428cd3d55c7f2073f398251e777 (diff) | |
download | servo-7d9eda916be7b9bd95a34e90c7aef17ce5cb0a17.tar.gz servo-7d9eda916be7b9bd95a34e90c7aef17ce5cb0a17.zip |
script: Implement the `color` attribute of the `<font>` element.
Improves Hacker News.
Diffstat (limited to 'components/script/dom/webidls/HTMLFontElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLFontElement.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLFontElement.webidl b/components/script/dom/webidls/HTMLFontElement.webidl index 9a58672baf5..03b68498db7 100644 --- a/components/script/dom/webidls/HTMLFontElement.webidl +++ b/components/script/dom/webidls/HTMLFontElement.webidl @@ -5,7 +5,7 @@ // https://www.whatwg.org/html/#htmlfontelement interface HTMLFontElement : HTMLElement { - //[TreatNullAs=EmptyString] attribute DOMString color; + [TreatNullAs=EmptyString] attribute DOMString color; // attribute DOMString face; // attribute DOMString size; }; |