diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-09-26 10:07:34 -0400 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-09-26 10:15:58 -0400 |
commit | a844b080d6728d29520b86625ca58915782cec0a (patch) | |
tree | 24e3c21ef1c81efe0897f4dc7c87c0e8a8920afa /components/script/dom/webidls/HTMLTableElement.webidl | |
parent | d39c8546b6bf03c69b1cde925c72722dfd61e588 (diff) | |
download | servo-a844b080d6728d29520b86625ca58915782cec0a.tar.gz servo-a844b080d6728d29520b86625ca58915782cec0a.zip |
Imlement 'bgcolor' IDL attrs for table elements
The content attributes and presentational hints were implemented in
the #4289 pull request. This just implements the relevant IDL
attributes.
Diffstat (limited to 'components/script/dom/webidls/HTMLTableElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLTableElement.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLTableElement.webidl b/components/script/dom/webidls/HTMLTableElement.webidl index 3a614efce1f..546d146bc15 100644 --- a/components/script/dom/webidls/HTMLTableElement.webidl +++ b/components/script/dom/webidls/HTMLTableElement.webidl @@ -34,7 +34,7 @@ partial interface HTMLTableElement { // attribute DOMString summary; // attribute DOMString width; - //[TreatNullAs=EmptyString] attribute DOMString bgColor; + [TreatNullAs=EmptyString] attribute DOMString bgColor; //[TreatNullAs=EmptyString] attribute DOMString cellPadding; //[TreatNullAs=EmptyString] attribute DOMString cellSpacing; }; |