This commit is contained in:
rickg%netscape.com 1999-05-27 10:53:29 +00:00
Родитель 319104c38d
Коммит 03a01b3cf7
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -796,7 +796,7 @@ PRBool nsParser::IsValidFragment(const nsString& aSourceBuffer,nsITagStack& aSta
PRInt32 aPos=theOutput.RFind("</endnote>");
if(-1<aPos)
theOutput.Truncate(aPos);
result=!theOutput.IsEmpty();
result=PRBool(0==theOutput.Length());
}
}
return result;

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

@ -796,7 +796,7 @@ PRBool nsParser::IsValidFragment(const nsString& aSourceBuffer,nsITagStack& aSta
PRInt32 aPos=theOutput.RFind("</endnote>");
if(-1<aPos)
theOutput.Truncate(aPos);
result=!theOutput.IsEmpty();
result=PRBool(0==theOutput.Length());
}
}
return result;