Bug 330872: Make nsGenericDOMDataNode::AppendData send out proper notifications and add nsIContent::AppendText to allow appending text without sending out notifications. r/sr=bz

This commit is contained in:
cvshook@sicking.cc
2006-10-28 01:22:53 +00:00
parent 0b08565539
commit c73d9977fe
8 changed files with 165 additions and 169 deletions

View File

@@ -3534,6 +3534,15 @@ nsGenericElement::SetText(const PRUnichar* aBuffer, PRUint32 aLength,
return NS_ERROR_FAILURE;
}
nsresult
nsGenericElement::AppendText(const PRUnichar* aBuffer, PRUint32 aLength,
PRBool aNotify)
{
NS_ERROR("called nsGenericElement::AppendText");
return NS_ERROR_FAILURE;
}
PRBool
nsGenericElement::TextIsOnlyWhitespace()
{