Back out a part of the fix for bug 224231 to see if it affects btek's Tp.

This commit is contained in:
peter%propagandism.org 2003-11-02 13:51:42 +00:00
Родитель 53f00c33b0
Коммит d7a67ab4b2
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -1343,7 +1343,7 @@ nsGenericDOMDataNode::AppendTextTo(nsAString& aResult)
if (mText.Is2b()) {
aResult.Append(mText.Get2b(), mText.GetLength());
} else {
AppendASCIItoUTF16(mText.Get1b(), aResult);
AppendUTF8toUTF16(mText.Get1b(), aResult);
}
return NS_OK;

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

@ -573,7 +573,7 @@ nsAttributeContent::AppendTextTo(nsAString& aResult)
aResult.Append(mText.Get2b(), mText.GetLength());
}
else {
AppendASCIItoUTF16(mText.Get1b(), aResult);
AppendUTF8toUTF16(mText.Get1b(), aResult);
}
return NS_OK;

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

@ -299,7 +299,7 @@ nsIndexedToHTML::OnStartRequest(nsIRequest* request, nsISupports *aContext) {
buffer.Append(strNCR);
buffer.Append(NS_LITERAL_STRING("</title><base href=\""));
AppendASCIItoUTF16(baseUri, buffer);
buffer.Append(NS_ConvertASCIItoUCS2(baseUri));
buffer.Append(NS_LITERAL_STRING("\"/>\n"));
buffer.Append(NS_LITERAL_STRING("<style type=\"text/css\">\n") +