Added nsIHTMLContentSink::DoFragment() method.

Added support for conversion of HTML entities in output


git-svn-id: svn://10.0.0.236/trunk@24161 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kostello%netscape.com
1999-03-15 05:08:36 +00:00
parent 506d9a9565
commit 212c5568d0
32 changed files with 624 additions and 100 deletions

View File

@@ -58,7 +58,7 @@ public:
NS_IMETHOD CloseHTML(const nsIParserNode& aNode);
NS_IMETHOD OpenHead(const nsIParserNode& aNode);
NS_IMETHOD CloseHead(const nsIParserNode& aNode);
NS_IMETHOD OpenBody(const nsIParserNode& aNode);
NS_IMETHOD OpenBody(const nsIParserNode& aNode);
NS_IMETHOD CloseBody(const nsIParserNode& aNode);
NS_IMETHOD OpenForm(const nsIParserNode& aNode);
NS_IMETHOD CloseForm(const nsIParserNode& aNode);
@@ -67,6 +67,8 @@ public:
NS_IMETHOD OpenFrameset(const nsIParserNode& aNode);
NS_IMETHOD CloseFrameset(const nsIParserNode& aNode);
NS_IMETHOD DoFragment(PRBool aFlag);
protected:
PRInt32 mNodeStack[100];
PRInt32 mNodeStackPos;
@@ -583,3 +585,15 @@ nsHTMLNullSink::NotifyError(const nsParserError* aError)
return NS_OK;
}
/**
*
* @update gpk03/14/99
* @param
* @return
*/
nsresult nsHTMLNullSink::DoFragment(PRBool aFlag)
{
return NS_OK;
}