diff options
Diffstat (limited to 'components/script/dom/webidls/HTMLBodyElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLBodyElement.webidl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/components/script/dom/webidls/HTMLBodyElement.webidl b/components/script/dom/webidls/HTMLBodyElement.webidl index 981ff03490a..f68f51e866e 100644 --- a/components/script/dom/webidls/HTMLBodyElement.webidl +++ b/components/script/dom/webidls/HTMLBodyElement.webidl @@ -3,9 +3,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -// https://www.whatwg.org/html/#htmlbodyelement +// https://html.spec.whatwg.org/#the-body-element interface HTMLBodyElement : HTMLElement { - // also has obsolete members }; HTMLBodyElement implements WindowEventHandlers; @@ -16,6 +15,6 @@ partial interface HTMLBodyElement { //[TreatNullAs=EmptyString] attribute DOMString link; //[TreatNullAs=EmptyString] attribute DOMString vLink; //[TreatNullAs=EmptyString] attribute DOMString aLink; - //[TreatNullAs=EmptyString] attribute DOMString bgColor; + [TreatNullAs=EmptyString] attribute DOMString bgColor; // attribute DOMString background; }; |