Added XIF Support. XIF is a Netscape internal XML format which is

designed to allow for easy conversion from the NGLayoutContent model
to other formats. It's primary focus is to allow easy conversion to
HTML3.2 and HTML4.0 formats. Other formats may be supported in the future.
This commit is contained in:
kostello
1998-07-14 22:37:51 +00:00
parent 400b3b6cb2
commit d1d749a1be
26 changed files with 3369 additions and 390 deletions

View File

@@ -597,6 +597,19 @@ CAttributeToken::CAttributeToken(const nsString& aName) : CHTMLToken(aName),
mLastAttribute=PR_FALSE;
}
/*
* construct initializing data to
* key value pair
*
* @update gess 3/25/98
* @param aName -- string value to init token name with
* @return
*/
CAttributeToken::CAttributeToken(const nsString& aKey, const nsString& aName) : CHTMLToken(aName) {
mTextKey = aKey;
mLastAttribute=PR_FALSE;
}
/*
*
*