diff options
Diffstat (limited to 'components/script/dom/webidls/HTMLBodyElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLBodyElement.webidl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/components/script/dom/webidls/HTMLBodyElement.webidl b/components/script/dom/webidls/HTMLBodyElement.webidl index 4bea5004408..50e834d1813 100644 --- a/components/script/dom/webidls/HTMLBodyElement.webidl +++ b/components/script/dom/webidls/HTMLBodyElement.webidl @@ -12,9 +12,16 @@ HTMLBodyElement implements WindowEventHandlers; // https://html.spec.whatwg.org/multipage/#HTMLBodyElement-partial partial interface HTMLBodyElement { [TreatNullAs=EmptyString] attribute DOMString text; + + // https://github.com/servo/servo/issues/8715 //[TreatNullAs=EmptyString] attribute DOMString link; + + // https://github.com/servo/servo/issues/8716 //[TreatNullAs=EmptyString] attribute DOMString vLink; + + // https://github.com/servo/servo/issues/8717 //[TreatNullAs=EmptyString] attribute DOMString aLink; + [TreatNullAs=EmptyString] attribute DOMString bgColor; // attribute DOMString background; }; |