Fix for 30486 [ PDT+] - Guessing that builds team would migrate these changes to the BRANCH.

Triming off <! and > from the DOCTYPE string.

r=akkana
a=rickg
This commit is contained in:
harishd%netscape.com 2000-03-12 00:34:07 +00:00
Родитель 72a8ee9dda
Коммит e5f7014b0e
2 изменённых файлов: 14 добавлений и 2 удалений

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

@ -1933,7 +1933,13 @@ nsresult CNavDTD::HandleDocTypeDeclToken(CToken* aToken){
nsString& docTypeStr=aToken->GetStringValueXXX();
mLineNumber += (docTypeStr).CountChar(kNewLine);
docTypeStr.Trim("<!>");
PRInt32 len=docTypeStr.Length();
PRInt32 pos=docTypeStr.RFindChar(kGreaterThan);
if(pos>-1) {
docTypeStr.Cut(pos,len-pos);// First remove '>' from the end.
}
docTypeStr.Cut(0,2); // Now remove "<!" from the begining
nsCParserNode* theNode=CreateNode();
if(theNode) {

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

@ -1933,7 +1933,13 @@ nsresult CNavDTD::HandleDocTypeDeclToken(CToken* aToken){
nsString& docTypeStr=aToken->GetStringValueXXX();
mLineNumber += (docTypeStr).CountChar(kNewLine);
docTypeStr.Trim("<!>");
PRInt32 len=docTypeStr.Length();
PRInt32 pos=docTypeStr.RFindChar(kGreaterThan);
if(pos>-1) {
docTypeStr.Cut(pos,len-pos);// First remove '>' from the end.
}
docTypeStr.Cut(0,2); // Now remove "<!" from the begining
nsCParserNode* theNode=CreateNode();
if(theNode) {