mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Add tracking issues for body/document attributes
This commit is contained in:
parent
d48d8b3ea1
commit
feb16463ef
2 changed files with 14 additions and 0 deletions
|
@ -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]
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue