Ongoing work on content serializers. This is not part of the build.

This commit is contained in:
vidur%netscape.com 2000-09-11 00:57:59 +00:00
Родитель 33ab9af7ac
Коммит fa56f73b33
4 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -103,6 +103,9 @@ nsHTMLContentSerializer::Init(PRUint32 aFlags, PRUint32 aWrapColumn)
if (!aWrapColumn) {
mMaxColumn = 72;
}
else {
mMaxColumn = aWrapColumn;
}
mDoFormat = (mFlags & nsIDocumentEncoder::OutputFormatted) ? PR_TRUE
: PR_FALSE;

Просмотреть файл

@ -251,7 +251,7 @@ nsXMLContentSerializer::AppendDoctype(nsIDOMDocumentType *aDoctype,
return NS_OK;
}
static const char* kXMLNS = "xmlns";
#define kXMLNS "xmlns"
nsresult
nsXMLContentSerializer::PushNameSpaceDecl(const nsAReadableString& aPrefix,

Просмотреть файл

@ -103,6 +103,9 @@ nsHTMLContentSerializer::Init(PRUint32 aFlags, PRUint32 aWrapColumn)
if (!aWrapColumn) {
mMaxColumn = 72;
}
else {
mMaxColumn = aWrapColumn;
}
mDoFormat = (mFlags & nsIDocumentEncoder::OutputFormatted) ? PR_TRUE
: PR_FALSE;

Просмотреть файл

@ -251,7 +251,7 @@ nsXMLContentSerializer::AppendDoctype(nsIDOMDocumentType *aDoctype,
return NS_OK;
}
static const char* kXMLNS = "xmlns";
#define kXMLNS "xmlns"
nsresult
nsXMLContentSerializer::PushNameSpaceDecl(const nsAReadableString& aPrefix,