fixed 's' tag which broke with introduction of nsHTMLTags

This commit is contained in:
rickg
1998-07-14 23:29:25 +00:00
parent 003b677158
commit 6cca07c2f3
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;
}