зеркало из https://github.com/mozilla/gecko-dev.git
bug 27652, fix loss of border on <table border>, r=mcafee
This commit is contained in:
Родитель
21199519f8
Коммит
e7fcf79431
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче