Fix for bug 8607. DOCTYPE decls are now propagated from the XML tokenizer to the XML content sink.

This commit is contained in:
nisheeth@netscape.com
1999-08-07 06:26:01 +00:00
parent 04c834a26f
commit 609bb12eb7
12 changed files with 52 additions and 140 deletions

View File

@@ -1920,17 +1920,4 @@ const char* CDoctypeDeclToken::GetClassName(void) {
PRInt32 CDoctypeDeclToken::GetTokenType(void) {
return eToken_doctypeDecl;
}
// XML decl token
CXMLDeclToken::CXMLDeclToken() : CHTMLToken(eHTMLTag_unknown) {
}
const char* CXMLDeclToken::GetClassName(void) {
return "xmldecl";
}
PRInt32 CXMLDeclToken::GetTokenType(void) {
return eToken_xmlDecl;
}
}