Quiet this warning for the one known case that it fires since we do a passable job of handling this case anyway. bug 341320, r+sr=sicking

This commit is contained in:
mrbkap%gmail.com 2006-06-16 19:13:17 +00:00
Родитель 3ff3f4e1c0
Коммит 96d1cf3f2e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1193,7 +1193,7 @@ SinkContext::CloseContainer(const nsHTMLTag aTag, PRBool aMalformed)
--mStackPos; --mStackPos;
nsHTMLTag nodeType = mStack[mStackPos].mType; nsHTMLTag nodeType = mStack[mStackPos].mType;
NS_ASSERTION(nodeType == aTag, NS_ASSERTION(nodeType == eHTMLTag_form || nodeType == aTag,
"Tag mismatch. Closing tag on wrong context or something?"); "Tag mismatch. Closing tag on wrong context or something?");
nsGenericHTMLElement* content = mStack[mStackPos].mContent; nsGenericHTMLElement* content = mStack[mStackPos].mContent;