Pass attribute-to-string calls to superclass when it's an unkown attribute/type

This commit is contained in:
kipp 1998-06-30 20:15:37 +00:00
Родитель ea122ca87d
Коммит 483aff9cd6
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -519,6 +519,9 @@ nsContentAttr nsHTMLContainer::AttributeToString(nsIAtom* aAttribute,
}
}
}
else {
ca = nsHTMLTagContent::AttributeToString(aAttribute, aValue, aResult);
}
return ca;
}