StrictDTD wip, and fixed bugs: 37417 and 26023

git-svn-id: svn://10.0.0.236/trunk@69768 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rickg%netscape.com
2000-05-15 07:28:12 +00:00
parent a4547be9bd
commit b2d584ed34
22 changed files with 666 additions and 66 deletions

View File

@@ -287,7 +287,7 @@ void CStartToken::GetSource(nsString& anOutputString){
anOutputString=mTrailingContent;
else {
if(mTextValue.Length()>0)
anOutputString=mTextValue;
anOutputString.Append(mTextValue);
else
anOutputString.AssignWithConversion(GetTagName(mTypeID));
anOutputString.AppendWithConversion('>');
@@ -1782,6 +1782,17 @@ void CEntityToken::AppendSource(nsString& anOutputString){
CScriptToken::CScriptToken() : CHTMLToken(eHTMLTag_script) {
}
/*
* default constructor
*
* @update gess 3/25/98
* @param aName -- string to init token name with
* @return
*/
CScriptToken::CScriptToken(const nsString& aString) : CHTMLToken(aString,eHTMLTag_script) {
}
/*
*
*