Handle applet, object and embed tags

git-svn-id: svn://10.0.0.236/trunk@5543 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kipp
1998-07-15 00:22:15 +00:00
parent 66f0ceca5c
commit 3fb1d547c1
2 changed files with 24 additions and 0 deletions

View File

@@ -628,6 +628,18 @@ HTMLContentSink::OpenContainer(const nsIParserNode& aNode)
}
return 0;
case eHTMLTag_applet:
rv = NS_NewHTMLApplet(&container, atom);
break;
case eHTMLTag_object:
rv = NS_NewHTMLEmbed(&container, atom);
break;
case eHTMLTag_embed:
rv = NS_NewHTMLObject(&container, atom);
break;
case eHTMLTag_table:
rv = NS_NewTablePart(&container, atom);
mInMonolithicContainer++;