bug 279939: Remove a bogus assertion and fix up the plaintext serializer's handling of <li>s with no preceeding <ul> or <ol>. r=akkana sr=jst

This commit is contained in:
mrbkap%gmail.com 2005-01-29 02:50:21 +00:00
Родитель 5516fb204e
Коммит c49cf66e74
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -776,8 +776,8 @@ nsPlainTextSerializer::DoOpenContainer(const nsIParserNode* aNode, PRInt32 aTag)
}
else {
static char bulletCharArray[] = "*o+#";
NS_ASSERTION(mULCount > 0, "mULCount should be greater than 0 here");
char bulletChar = bulletCharArray[(mULCount - 1) % 4];
PRUint32 index = mULCount > 0 ? (mULCount - 1) : 3;
char bulletChar = bulletCharArray[index % 4];
mInIndentString.Append(PRUnichar(bulletChar));
}