r=vidur. Fix for bug 9075. Return NS_OK instead of NS_ERROR_NOT_IMPLEMENTED from nsXMLDocument::GetDocType(). This allows script parsing to continue after a document.doctype JS statement is encountered.

This commit is contained in:
nisheeth%netscape.com 1999-11-03 01:48:54 +00:00
Родитель 81b34c115e
Коммит 0db470912b
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -353,7 +353,7 @@ nsXMLDocument::GetDoctype(nsIDOMDocumentType** aDocumentType)
{
// XXX TBI
*aDocumentType = nsnull;
return NS_ERROR_NOT_IMPLEMENTED;
return NS_OK;
}
NS_IMETHODIMP

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

@ -353,7 +353,7 @@ nsXMLDocument::GetDoctype(nsIDOMDocumentType** aDocumentType)
{
// XXX TBI
*aDocumentType = nsnull;
return NS_ERROR_NOT_IMPLEMENTED;
return NS_OK;
}
NS_IMETHODIMP