Auto merge of #8722 - frewsxcv:tracking-issues, r=nox

Add tracking issues for body/document attributes

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8722)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-11-29 04:36:17 +05:30
commit 2dab0e1584
2 changed files with 14 additions and 0 deletions

View file

@ -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]

View file

@ -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;
};