зеркало из https://github.com/mozilla/gecko-dev.git
SetParagraphFormat() to list item now does someting halfway sane
This commit is contained in:
Родитель
7f29360e21
Коммит
ba66393a39
|
@ -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);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче