added default attribute handling

This commit is contained in:
peterl%netscape.com 1998-08-27 00:57:24 +00:00
Родитель 8d66d72540
Коммит c10bc7add2
4 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -86,6 +86,7 @@ void nsTableCaption::SetAttribute(nsIAtom* aAttribute, const nsString& aValue)
}
return;
}
nsTableContent::SetAttribute(aAttribute, aValue);
}
void nsTableCaption::MapAttributesInto(nsIStyleContext* aContext,

Просмотреть файл

@ -304,6 +304,7 @@ void nsTableColGroup::SetAttribute(nsIAtom* aAttribute, const nsString& aValue)
}
return;
}
nsTableContent::SetAttribute(aAttribute, aValue);
}
void nsTableColGroup::MapAttributesInto(nsIStyleContext* aContext,

Просмотреть файл

@ -245,6 +245,7 @@ void nsTableRow::SetAttribute(nsIAtom* aAttribute, const nsString& aValue)
nsHTMLTagContent::SetAttribute(aAttribute, val);
return;
}
nsTableContent::SetAttribute(aAttribute, aValue);
}
void nsTableRow::MapAttributesInto(nsIStyleContext* aContext,

Просмотреть файл

@ -93,6 +93,7 @@ void nsTableRowGroup::SetAttribute(nsIAtom* aAttribute, const nsString& aValue)
nsHTMLTagContent::SetAttribute(aAttribute, val);
return;
}
nsTableContent::SetAttribute(aAttribute, aValue);
}
void nsTableRowGroup::MapAttributesInto(nsIStyleContext* aContext,