Fixed bug #3597 - lower case alpha/roman bullets

This commit is contained in:
kipp%netscape.com 1999-03-18 21:01:52 +00:00
Родитель 87ef0ebdda
Коммит 45fde9019e
2 изменённых файлов: 6 добавлений и 4 удалений

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

@ -145,8 +145,9 @@ nsHTMLLIElement::StringToAttribute(nsIAtom* aAttribute,
nsHTMLValue& aResult)
{
if (aAttribute == nsHTMLAtoms::type) {
if (nsGenericHTMLElement::ParseEnumValue(aValue, kListItemTypeTable,
aResult)) {
if (nsGenericHTMLElement::ParseCaseSensitiveEnumValue(aValue,
kListItemTypeTable,
aResult)) {
return NS_CONTENT_ATTR_HAS_VALUE;
}
}

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

@ -145,8 +145,9 @@ nsHTMLLIElement::StringToAttribute(nsIAtom* aAttribute,
nsHTMLValue& aResult)
{
if (aAttribute == nsHTMLAtoms::type) {
if (nsGenericHTMLElement::ParseEnumValue(aValue, kListItemTypeTable,
aResult)) {
if (nsGenericHTMLElement::ParseCaseSensitiveEnumValue(aValue,
kListItemTypeTable,
aResult)) {
return NS_CONTENT_ATTR_HAS_VALUE;
}
}