fixed 's' tag which broke with introduction of nsHTMLTags

git-svn-id: svn://10.0.0.236/trunk@5535 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rickg
1998-07-14 23:29:25 +00:00
parent 9377549c32
commit bd87244c26
2 changed files with 12 additions and 0 deletions

View File

@@ -159,6 +159,9 @@ PRInt32 CStartToken::GetTypeID(){
case eHTMLTag_menu:
mTypeID=eHTMLTag_ul;
break;
case eHTMLTag_s:
mTypeID=eHTMLTag_strike;
break;
default:
break;
}
@@ -342,6 +345,9 @@ PRInt32 CEndToken::GetTypeID(){
case eHTMLTag_menu:
mTypeID=eHTMLTag_ul;
break;
case eHTMLTag_s:
mTypeID=eHTMLTag_strike;
break;
default:
break;
}