Enabling MULTIPLE attribute change for selects.

This commit is contained in:
pollmann%netscape.com 1999-05-19 00:59:06 +00:00
Родитель 53b70212da
Коммит e720a8638b
2 изменённых файлов: 10 добавлений и 2 удалений

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

@ -969,6 +969,10 @@ nsHTMLSelectElement::GetStyleHintForAttributeChange(
const nsIAtom* aAttribute,
PRInt32 *aHint) const
{
nsGenericHTMLElement::GetStyleHintForCommonAttributes(this, aAttribute, aHint);
if (nsHTMLAtoms::multiple == aAttribute) {
*aHint = NS_STYLE_HINT_FRAMECHANGE;
} else {
nsGenericHTMLElement::GetStyleHintForCommonAttributes(this, aAttribute, aHint);
}
return NS_OK;
}

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

@ -969,6 +969,10 @@ nsHTMLSelectElement::GetStyleHintForAttributeChange(
const nsIAtom* aAttribute,
PRInt32 *aHint) const
{
nsGenericHTMLElement::GetStyleHintForCommonAttributes(this, aAttribute, aHint);
if (nsHTMLAtoms::multiple == aAttribute) {
*aHint = NS_STYLE_HINT_FRAMECHANGE;
} else {
nsGenericHTMLElement::GetStyleHintForCommonAttributes(this, aAttribute, aHint);
}
return NS_OK;
}