aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2015-11-28 17:53:59 -0500
committerCorey Farwell <coreyf@rwell.org>2015-11-28 17:53:59 -0500
commitfeb16463ef93421c7c45fe9c62710cce8047f949 (patch)
tree6f0c274b9bffb992646cadd9c0794020b23b5c5a /components
parentd48d8b3ea172018d50ea5dc0e0350cdc5307ea37 (diff)
downloadservo-feb16463ef93421c7c45fe9c62710cce8047f949.tar.gz
servo-feb16463ef93421c7c45fe9c62710cce8047f949.zip
Add tracking issues for body/document attributes
Diffstat (limited to 'components')
-rw-r--r--components/script/dom/webidls/Document.webidl7
-rw-r--r--components/script/dom/webidls/HTMLBodyElement.webidl7
2 files changed, 14 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]
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;
};