bug 27652, fix loss of border on <table border>, r=mcafee

This commit is contained in:
karnaze%netscape.com 2000-02-14 06:06:03 +00:00
Родитель 21199519f8
Коммит e7fcf79431
2 изменённых файлов: 4 добавлений и 2 удалений

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

@ -861,7 +861,8 @@ nsHTMLTableElement::StringToAttribute(nsIAtom* aAttribute,
/* attributes that are either empty, or pixels */
else if (aAttribute == nsHTMLAtoms::border) {
if (nsGenericHTMLElement::ParseValue(aValue, 0, aResult, eHTMLUnit_Pixel)) {
PRInt32 min = (aValue.Equals("")) ? 1 : 0;
if (nsGenericHTMLElement::ParseValue(aValue, min, aResult, eHTMLUnit_Pixel)) {
return NS_CONTENT_ATTR_HAS_VALUE;
}
}

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

@ -861,7 +861,8 @@ nsHTMLTableElement::StringToAttribute(nsIAtom* aAttribute,
/* attributes that are either empty, or pixels */
else if (aAttribute == nsHTMLAtoms::border) {
if (nsGenericHTMLElement::ParseValue(aValue, 0, aResult, eHTMLUnit_Pixel)) {
PRInt32 min = (aValue.Equals("")) ? 1 : 0;
if (nsGenericHTMLElement::ParseValue(aValue, min, aResult, eHTMLUnit_Pixel)) {
return NS_CONTENT_ATTR_HAS_VALUE;
}
}