7670 - Enable NOSCRIPT.

r=jst


git-svn-id: svn://10.0.0.236/trunk@77891 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
harishd%netscape.com
2000-09-01 18:17:43 +00:00
parent 69b6374ae7
commit 4766df6dca
4 changed files with 188 additions and 6 deletions

View File

@@ -92,6 +92,8 @@ public:
NS_IMETHOD CloseForm(const nsIParserNode& aNode);
NS_IMETHOD OpenFrameset(const nsIParserNode& aNode);
NS_IMETHOD CloseFrameset(const nsIParserNode& aNode);
NS_IMETHOD OpenNoscript(const nsIParserNode& aNode);
NS_IMETHOD CloseNoscript(const nsIParserNode& aNode);
NS_IMETHOD OpenMap(const nsIParserNode& aNode);
NS_IMETHOD CloseMap(const nsIParserNode& aNode);
NS_IMETHOD FlushPendingNotifications() { return NS_OK; }
@@ -396,6 +398,18 @@ nsHTMLFragmentContentSink::CloseMap(const nsIParserNode& aNode)
return CloseContainer(aNode);
}
NS_IMETHODIMP
nsHTMLFragmentContentSink::OpenNoscript(const nsIParserNode& aNode)
{
return OpenContainer(aNode);
}
NS_IMETHODIMP
nsHTMLFragmentContentSink::CloseNoscript(const nsIParserNode& aNode)
{
return CloseContainer(aNode);
}
void
nsHTMLFragmentContentSink::ProcessBaseTag(nsIHTMLContent* aContent)
{