SetParagraphFormat() to list item now does someting halfway sane

This commit is contained in:
jfrancis%netscape.com 1999-07-04 00:34:58 +00:00
Родитель 7f29360e21
Коммит ba66393a39
2 изменённых файлов: 4 добавлений и 0 удалений

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

@ -319,6 +319,8 @@ NS_IMETHODIMP nsHTMLEditor::SetParagraphFormat(const nsString& aParagraphFormat)
tag.ToLowerCase();
if (tag == "normal" || tag == "p") {
res = RemoveParagraphStyle();
} else if (tag == "li") {
res = InsertList("ul");
} else {
res = ReplaceBlockParent(tag);
}

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

@ -319,6 +319,8 @@ NS_IMETHODIMP nsHTMLEditor::SetParagraphFormat(const nsString& aParagraphFormat)
tag.ToLowerCase();
if (tag == "normal" || tag == "p") {
res = RemoveParagraphStyle();
} else if (tag == "li") {
res = InsertList("ul");
} else {
res = ReplaceBlockParent(tag);
}