quick fix to deal with applet tags

git-svn-id: svn://10.0.0.236/trunk@5419 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rickg
1998-07-13 21:56:26 +00:00
parent 48495d02d4
commit 7a41228ec0
2 changed files with 8 additions and 4 deletions

View File

@@ -2610,9 +2610,11 @@ PRInt32 CNavDTD::ConsumeStartTag(PRUnichar aChar,CScanner& aScanner,CToken*& aTo
nsString& str=aToken->GetText();
CToken* skippedToken=0;
if(str.EqualsIgnoreCase("SCRIPT") ||
str.EqualsIgnoreCase("STYLE") ||
str.EqualsIgnoreCase("TITLE") ||
str.EqualsIgnoreCase("STYLE") ||
str.EqualsIgnoreCase("APPLET") ||
str.EqualsIgnoreCase("TITLE") ||
str.EqualsIgnoreCase("TEXTAREA")) {
result=ConsumeContentToEndTag(str,aChar,aScanner,skippedToken);
if((kNoError==result) && skippedToken){