diff options
Diffstat (limited to 'components/script/dom/webidls/Document.webidl')
-rw-r--r-- | components/script/dom/webidls/Document.webidl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/components/script/dom/webidls/Document.webidl b/components/script/dom/webidls/Document.webidl index 328c54b1c2e..863824338ed 100644 --- a/components/script/dom/webidls/Document.webidl +++ b/components/script/dom/webidls/Document.webidl @@ -142,9 +142,16 @@ Document implements GlobalEventHandlers; // https://html.spec.whatwg.org/multipage/#Document-partial partial interface Document { // [TreatNullAs=EmptyString] attribute DOMString fgColor; + + // https://github.com/servo/servo/issues/8715 // [TreatNullAs=EmptyString] attribute DOMString linkColor; + + // https://github.com/servo/servo/issues/8716 // [TreatNullAs=EmptyString] attribute DOMString vlinkColor; + + // https://github.com/servo/servo/issues/8717 // [TreatNullAs=EmptyString] attribute DOMString alinkColor; + [TreatNullAs=EmptyString] attribute DOMString bgColor; [SameObject] |