2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Base class for DOM Core's nsIDOMComment, nsIDOMDocumentType, nsIDOMText,
|
|
|
|
* nsIDOMCDATASection, and nsIDOMProcessingInstruction nodes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsGenericDOMDataNode.h"
|
|
|
|
#include "nsGenericElement.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIEventListenerManager.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
|
|
|
#include "nsReadableUtils.h"
|
|
|
|
#include "nsMutationEvent.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsIDOM3Node.h"
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsIPrivateDOMEvent.h"
|
|
|
|
#include "nsIDOMEvent.h"
|
|
|
|
#include "nsIDOMText.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsDOMString.h"
|
|
|
|
#include "nsIDOMUserDataHandler.h"
|
|
|
|
#include "nsChangeHint.h"
|
|
|
|
#include "nsEventDispatcher.h"
|
|
|
|
#include "nsCOMArray.h"
|
|
|
|
#include "nsNodeUtils.h"
|
|
|
|
#include "nsBindingManager.h"
|
|
|
|
|
|
|
|
#include "pldhash.h"
|
|
|
|
#include "prprf.h"
|
|
|
|
|
|
|
|
nsGenericDOMDataNode::nsGenericDOMDataNode(nsINodeInfo *aNodeInfo)
|
2007-12-15 01:45:33 -08:00
|
|
|
: nsIContent(aNodeInfo), mText(aNodeInfo->NodeInfoManager()->NodeAllocator())
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsGenericDOMDataNode::~nsGenericDOMDataNode()
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(!IsInDoc(),
|
|
|
|
"Please remove this from the document properly");
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(nsGenericDOMDataNode)
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(nsGenericDOMDataNode)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_LISTENERMANAGER
|
2007-05-12 08:36:28 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_USERDATA
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_PRESERVED_WRAPPER
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsGenericDOMDataNode)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_LISTENERMANAGER
|
2007-05-12 08:36:28 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_USERDATA
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_PRESERVED_WRAPPER
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
2007-04-25 09:35:27 -07:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsGenericDOMDataNode)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIContent)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsINode)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsPIDOMEventTarget)
|
|
|
|
NS_INTERFACE_MAP_ENTRY_TEAROFF(nsIDOMEventTarget,
|
|
|
|
nsDOMEventRTTearoff::Create(this))
|
|
|
|
NS_INTERFACE_MAP_ENTRY_TEAROFF(nsIDOM3EventTarget,
|
|
|
|
nsDOMEventRTTearoff::Create(this))
|
|
|
|
NS_INTERFACE_MAP_ENTRY_TEAROFF(nsIDOMNSEventTarget,
|
|
|
|
nsDOMEventRTTearoff::Create(this))
|
|
|
|
NS_INTERFACE_MAP_ENTRY_TEAROFF(nsISupportsWeakReference,
|
|
|
|
new nsNodeSupportsWeakRefTearoff(this))
|
|
|
|
NS_INTERFACE_MAP_ENTRY_TEAROFF(nsIDOM3Node, new nsNode3Tearoff(this))
|
2007-12-10 17:19:18 -08:00
|
|
|
// nsNodeSH::PreCreate() depends on the identity pointer being the
|
|
|
|
// same as nsINode (which nsIContent inherits), so if you change the
|
|
|
|
// below line, make sure nsNodeSH::PreCreate() still does the right
|
|
|
|
// thing!
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIContent)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF_AMBIGUOUS(nsGenericDOMDataNode, nsIContent)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE_FULL(nsGenericDOMDataNode, nsIContent,
|
2007-05-12 08:36:28 -07:00
|
|
|
nsNodeUtils::LastRelease(this))
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::GetNodeValue(nsAString& aNodeValue)
|
|
|
|
{
|
|
|
|
return GetData(aNodeValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::SetNodeValue(const nsAString& aNodeValue)
|
|
|
|
{
|
|
|
|
return SetTextInternal(0, mText.GetLength(), aNodeValue.BeginReading(),
|
|
|
|
aNodeValue.Length(), PR_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::GetParentNode(nsIDOMNode** aParentNode)
|
|
|
|
{
|
|
|
|
*aParentNode = nsnull;
|
|
|
|
nsINode *parent = GetNodeParent();
|
|
|
|
|
|
|
|
return parent ? CallQueryInterface(parent, aParentNode) : NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::GetPreviousSibling(nsIDOMNode** aPrevSibling)
|
|
|
|
{
|
|
|
|
*aPrevSibling = nsnull;
|
|
|
|
|
|
|
|
nsINode *parent = GetNodeParent();
|
|
|
|
if (!parent) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 pos = parent->IndexOf(this);
|
|
|
|
nsIContent *sibling = parent->GetChildAt(pos - 1);
|
|
|
|
|
|
|
|
return sibling ? CallQueryInterface(sibling, aPrevSibling) : NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::GetNextSibling(nsIDOMNode** aNextSibling)
|
|
|
|
{
|
|
|
|
*aNextSibling = nsnull;
|
|
|
|
|
|
|
|
nsINode *parent = GetNodeParent();
|
|
|
|
if (!parent) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 pos = parent->IndexOf(this);
|
|
|
|
nsIContent *sibling = parent->GetChildAt(pos + 1);
|
|
|
|
|
|
|
|
return sibling ? CallQueryInterface(sibling, aNextSibling) : NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::GetChildNodes(nsIDOMNodeList** aChildNodes)
|
|
|
|
{
|
|
|
|
*aChildNodes = nsnull;
|
|
|
|
nsDataSlots *slots = GetDataSlots();
|
|
|
|
NS_ENSURE_TRUE(slots, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
if (!slots->mChildNodes) {
|
|
|
|
slots->mChildNodes = new nsChildContentList(this);
|
|
|
|
NS_ENSURE_TRUE(slots->mChildNodes, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
NS_ADDREF(slots->mChildNodes);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ADDREF(*aChildNodes = slots->mChildNodes);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::GetOwnerDocument(nsIDOMDocument** aOwnerDocument)
|
|
|
|
{
|
|
|
|
nsIDocument *document = GetOwnerDoc();
|
|
|
|
if (document) {
|
|
|
|
return CallQueryInterface(document, aOwnerDocument);
|
|
|
|
}
|
|
|
|
|
|
|
|
*aOwnerDocument = nsnull;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::GetNamespaceURI(nsAString& aNamespaceURI)
|
|
|
|
{
|
|
|
|
SetDOMStringToNull(aNamespaceURI);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::GetPrefix(nsAString& aPrefix)
|
|
|
|
{
|
|
|
|
SetDOMStringToNull(aPrefix);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::SetPrefix(const nsAString& aPrefix)
|
|
|
|
{
|
|
|
|
return NS_ERROR_DOM_NAMESPACE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::GetLocalName(nsAString& aLocalName)
|
|
|
|
{
|
|
|
|
SetDOMStringToNull(aLocalName);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::Normalize()
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::IsSupported(const nsAString& aFeature,
|
|
|
|
const nsAString& aVersion,
|
|
|
|
PRBool* aReturn)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
return nsGenericElement::InternalIsSupported(static_cast<nsIContent*>(this),
|
2007-03-22 10:30:00 -07:00
|
|
|
aFeature, aVersion, aReturn);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::GetBaseURI(nsAString& aURI)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIURI> baseURI = GetBaseURI();
|
|
|
|
nsCAutoString spec;
|
|
|
|
|
|
|
|
if (baseURI) {
|
|
|
|
baseURI->GetSpec(spec);
|
|
|
|
}
|
|
|
|
|
|
|
|
CopyUTF8toUTF16(spec, aURI);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::LookupPrefix(const nsAString& aNamespaceURI,
|
|
|
|
nsAString& aPrefix)
|
|
|
|
{
|
|
|
|
aPrefix.Truncate();
|
|
|
|
|
|
|
|
nsIContent *parent_weak = GetParent();
|
|
|
|
|
|
|
|
// DOM Data Node passes the query on to its parent
|
|
|
|
nsCOMPtr<nsIDOM3Node> node(do_QueryInterface(parent_weak));
|
|
|
|
if (node) {
|
|
|
|
return node->LookupPrefix(aNamespaceURI, aPrefix);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::LookupNamespaceURI(const nsAString& aNamespacePrefix,
|
|
|
|
nsAString& aNamespaceURI)
|
|
|
|
{
|
|
|
|
aNamespaceURI.Truncate();
|
|
|
|
|
|
|
|
nsIContent *parent_weak = GetParent();
|
|
|
|
|
|
|
|
// DOM Data Node passes the query on to its parent
|
|
|
|
nsCOMPtr<nsIDOM3Node> node(do_QueryInterface(parent_weak));
|
|
|
|
|
|
|
|
if (node) {
|
|
|
|
return node->LookupNamespaceURI(aNamespacePrefix, aNamespaceURI);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Implementation of nsIDOMCharacterData
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::GetData(nsAString& aData) const
|
|
|
|
{
|
|
|
|
if (mText.Is2b()) {
|
|
|
|
aData.Assign(mText.Get2b(), mText.GetLength());
|
|
|
|
} else {
|
|
|
|
// Must use Substring() since nsDependentCString() requires null
|
|
|
|
// terminated strings.
|
|
|
|
|
|
|
|
const char *data = mText.Get1b();
|
|
|
|
|
|
|
|
if (data) {
|
|
|
|
CopyASCIItoUTF16(Substring(data, data + mText.GetLength()), aData);
|
|
|
|
} else {
|
|
|
|
aData.Truncate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::SetData(const nsAString& aData)
|
|
|
|
{
|
|
|
|
return SetTextInternal(0, mText.GetLength(), aData.BeginReading(),
|
|
|
|
aData.Length(), PR_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::GetLength(PRUint32* aLength)
|
|
|
|
{
|
|
|
|
*aLength = mText.GetLength();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::SubstringData(PRUint32 aStart, PRUint32 aCount,
|
|
|
|
nsAString& aReturn)
|
|
|
|
{
|
|
|
|
aReturn.Truncate();
|
|
|
|
|
|
|
|
// XXX add <0 checks if types change
|
|
|
|
PRUint32 textLength = PRUint32( mText.GetLength() );
|
|
|
|
if (aStart > textLength) {
|
|
|
|
return NS_ERROR_DOM_INDEX_SIZE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 amount = aCount;
|
|
|
|
if (amount > textLength - aStart) {
|
|
|
|
amount = textLength - aStart;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mText.Is2b()) {
|
|
|
|
aReturn.Assign(mText.Get2b() + aStart, amount);
|
|
|
|
} else {
|
|
|
|
// Must use Substring() since nsDependentCString() requires null
|
|
|
|
// terminated strings.
|
|
|
|
|
|
|
|
const char *data = mText.Get1b() + aStart;
|
|
|
|
CopyASCIItoUTF16(Substring(data, data + amount), aReturn);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::AppendData(const nsAString& aData)
|
|
|
|
{
|
|
|
|
return SetTextInternal(mText.GetLength(), 0, aData.BeginReading(),
|
|
|
|
aData.Length(), PR_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::InsertData(PRUint32 aOffset,
|
|
|
|
const nsAString& aData)
|
|
|
|
{
|
|
|
|
return SetTextInternal(aOffset, 0, aData.BeginReading(),
|
|
|
|
aData.Length(), PR_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::DeleteData(PRUint32 aOffset, PRUint32 aCount)
|
|
|
|
{
|
|
|
|
return SetTextInternal(aOffset, aCount, nsnull, 0, PR_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::ReplaceData(PRUint32 aOffset, PRUint32 aCount,
|
|
|
|
const nsAString& aData)
|
|
|
|
{
|
|
|
|
return SetTextInternal(aOffset, aCount, aData.BeginReading(),
|
|
|
|
aData.Length(), PR_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::SetTextInternal(PRUint32 aOffset, PRUint32 aCount,
|
|
|
|
const PRUnichar* aBuffer,
|
|
|
|
PRUint32 aLength, PRBool aNotify)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aBuffer || !aLength,
|
|
|
|
"Null buffer passed to SetTextInternal!");
|
|
|
|
|
|
|
|
// sanitize arguments
|
|
|
|
PRUint32 textLength = mText.GetLength();
|
|
|
|
if (aOffset > textLength) {
|
|
|
|
return NS_ERROR_DOM_INDEX_SIZE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIDocument *document = GetCurrentDoc();
|
|
|
|
mozAutoDocUpdate updateBatch(document, UPDATE_CONTENT_MODEL, aNotify);
|
|
|
|
|
|
|
|
PRBool haveMutationListeners = aNotify &&
|
|
|
|
nsContentUtils::HasMutationListeners(this,
|
2007-07-04 13:39:10 -07:00
|
|
|
NS_EVENT_BITS_MUTATION_CHARACTERDATAMODIFIED,
|
|
|
|
this);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAtom> oldValue;
|
|
|
|
if (haveMutationListeners) {
|
|
|
|
oldValue = GetCurrentValueAtom();
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 endOffset = aOffset + aCount;
|
|
|
|
if (endOffset > textLength) {
|
|
|
|
aCount = textLength - aOffset;
|
|
|
|
endOffset = textLength;
|
|
|
|
}
|
|
|
|
|
2007-09-05 01:22:17 -07:00
|
|
|
if (aNotify) {
|
|
|
|
CharacterDataChangeInfo info = {
|
|
|
|
aOffset == textLength,
|
|
|
|
aOffset,
|
|
|
|
endOffset,
|
|
|
|
aLength
|
|
|
|
};
|
|
|
|
nsNodeUtils::CharacterDataWillChange(this, &info);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aOffset == 0 && endOffset == textLength) {
|
|
|
|
// Replacing whole text or old text was empty
|
|
|
|
mText.SetTo(aBuffer, aLength);
|
|
|
|
}
|
|
|
|
else if (aOffset == textLength) {
|
|
|
|
// Appending to existing
|
|
|
|
mText.Append(aBuffer, aLength);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Merging old and new
|
|
|
|
|
|
|
|
// Allocate new buffer
|
|
|
|
PRInt32 newLength = textLength - aCount + aLength;
|
|
|
|
PRUnichar* to = new PRUnichar[newLength];
|
|
|
|
NS_ENSURE_TRUE(to, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
// Copy over appropriate data
|
|
|
|
if (0 != aOffset) {
|
|
|
|
mText.CopyTo(to, 0, aOffset);
|
|
|
|
}
|
|
|
|
if (0 != aLength) {
|
|
|
|
memcpy(to + aOffset, aBuffer, aLength * sizeof(PRUnichar));
|
|
|
|
}
|
|
|
|
if (endOffset != textLength) {
|
|
|
|
mText.CopyTo(to + aOffset + aLength, endOffset, textLength - endOffset);
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX Add OOM checking to this
|
|
|
|
mText.SetTo(to, newLength);
|
|
|
|
|
|
|
|
delete [] to;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetBidiStatus();
|
|
|
|
|
|
|
|
// Notify observers
|
|
|
|
if (aNotify) {
|
2007-09-10 16:46:22 -07:00
|
|
|
CharacterDataChangeInfo info = {
|
|
|
|
aOffset == textLength,
|
|
|
|
aOffset,
|
|
|
|
endOffset,
|
|
|
|
aLength
|
|
|
|
};
|
|
|
|
nsNodeUtils::CharacterDataChanged(this, &info);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (haveMutationListeners) {
|
|
|
|
nsMutationEvent mutation(PR_TRUE, NS_MUTATION_CHARACTERDATAMODIFIED);
|
|
|
|
|
|
|
|
mutation.mPrevAttrValue = oldValue;
|
|
|
|
if (aLength > 0) {
|
|
|
|
nsAutoString val;
|
|
|
|
mText.AppendTo(val);
|
|
|
|
mutation.mNewAttrValue = do_GetAtom(val);
|
|
|
|
}
|
|
|
|
|
2007-03-24 05:18:02 -07:00
|
|
|
mozAutoSubtreeModified subtree(GetOwnerDoc(), this);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsEventDispatcher::Dispatch(this, nsnull, &mutation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Implementation of nsIContent
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
void
|
|
|
|
nsGenericDOMDataNode::ToCString(nsAString& aBuf, PRInt32 aOffset,
|
|
|
|
PRInt32 aLen) const
|
|
|
|
{
|
|
|
|
if (mText.Is2b()) {
|
|
|
|
const PRUnichar* cp = mText.Get2b() + aOffset;
|
|
|
|
const PRUnichar* end = cp + aLen;
|
|
|
|
|
|
|
|
while (cp < end) {
|
|
|
|
PRUnichar ch = *cp++;
|
|
|
|
if (ch == '&') {
|
|
|
|
aBuf.AppendLiteral("&");
|
|
|
|
} else if (ch == '<') {
|
|
|
|
aBuf.AppendLiteral("<");
|
|
|
|
} else if (ch == '>') {
|
|
|
|
aBuf.AppendLiteral(">");
|
|
|
|
} else if ((ch < ' ') || (ch >= 127)) {
|
|
|
|
char buf[10];
|
|
|
|
PR_snprintf(buf, sizeof(buf), "\\u%04x", ch);
|
|
|
|
AppendASCIItoUTF16(buf, aBuf);
|
|
|
|
} else {
|
|
|
|
aBuf.Append(ch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
unsigned char* cp = (unsigned char*)mText.Get1b() + aOffset;
|
|
|
|
const unsigned char* end = cp + aLen;
|
|
|
|
|
|
|
|
while (cp < end) {
|
|
|
|
PRUnichar ch = *cp++;
|
|
|
|
if (ch == '&') {
|
|
|
|
aBuf.AppendLiteral("&");
|
|
|
|
} else if (ch == '<') {
|
|
|
|
aBuf.AppendLiteral("<");
|
|
|
|
} else if (ch == '>') {
|
|
|
|
aBuf.AppendLiteral(">");
|
|
|
|
} else if ((ch < ' ') || (ch >= 127)) {
|
|
|
|
char buf[10];
|
|
|
|
PR_snprintf(buf, sizeof(buf), "\\u%04x", ch);
|
|
|
|
AppendASCIItoUTF16(buf, aBuf);
|
|
|
|
} else {
|
|
|
|
aBuf.Append(ch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::BindToTree(nsIDocument* aDocument, nsIContent* aParent,
|
|
|
|
nsIContent* aBindingParent,
|
|
|
|
PRBool aCompileEventHandlers)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aParent || aDocument, "Must have document if no parent!");
|
|
|
|
NS_PRECONDITION(HasSameOwnerDoc(NODE_FROM(aParent, aDocument)),
|
|
|
|
"Must have the same owner document");
|
2007-05-15 18:13:47 -07:00
|
|
|
NS_PRECONDITION(!aParent || aDocument == aParent->GetCurrentDoc(),
|
2007-03-22 10:30:00 -07:00
|
|
|
"aDocument must be current doc of aParent");
|
|
|
|
NS_PRECONDITION(!GetCurrentDoc() && !IsInDoc(),
|
|
|
|
"Already have a document. Unbind first!");
|
|
|
|
// Note that as we recurse into the kids, they'll have a non-null parent. So
|
|
|
|
// only assert if our parent is _changing_ while we have a parent.
|
|
|
|
NS_PRECONDITION(!GetParent() || aParent == GetParent(),
|
|
|
|
"Already have a parent. Unbind first!");
|
|
|
|
NS_PRECONDITION(!GetBindingParent() ||
|
|
|
|
aBindingParent == GetBindingParent() ||
|
|
|
|
(!aBindingParent && aParent &&
|
|
|
|
aParent->GetBindingParent() == GetBindingParent()),
|
|
|
|
"Already have a binding parent. Unbind first!");
|
2007-05-04 23:47:09 -07:00
|
|
|
NS_PRECONDITION(aBindingParent != this || IsNativeAnonymous(),
|
|
|
|
"Only native anonymous content should have itself as its "
|
|
|
|
"own binding parent");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (!aBindingParent && aParent) {
|
|
|
|
aBindingParent = aParent->GetBindingParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
// First set the binding parent
|
|
|
|
if (aBindingParent) {
|
|
|
|
nsDataSlots *slots = GetDataSlots();
|
|
|
|
NS_ENSURE_TRUE(slots, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
slots->mBindingParent = aBindingParent; // Weak, so no addref happens.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set parent
|
|
|
|
if (aParent) {
|
|
|
|
mParentPtrBits =
|
2007-07-08 00:08:04 -07:00
|
|
|
reinterpret_cast<PtrBits>(aParent) | PARENT_BIT_PARENT_IS_CONTENT;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
2007-07-08 00:08:04 -07:00
|
|
|
mParentPtrBits = reinterpret_cast<PtrBits>(aDocument);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// XXXbz sXBL/XBL2 issue!
|
|
|
|
|
|
|
|
// Set document
|
|
|
|
if (aDocument) {
|
|
|
|
// XXX See the comment in nsGenericElement::BindToTree
|
|
|
|
mParentPtrBits |= PARENT_BIT_INDOCUMENT;
|
|
|
|
if (mText.IsBidi()) {
|
|
|
|
aDocument->SetBidiEnabled(PR_TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsNodeUtils::ParentChainChanged(this);
|
|
|
|
|
2007-06-27 19:48:16 -07:00
|
|
|
UpdateEditableState();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_POSTCONDITION(aDocument == GetCurrentDoc(), "Bound to wrong document");
|
|
|
|
NS_POSTCONDITION(aParent == GetParent(), "Bound to wrong parent");
|
|
|
|
NS_POSTCONDITION(aBindingParent == GetBindingParent(),
|
|
|
|
"Bound to wrong binding parent");
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsGenericDOMDataNode::UnbindFromTree(PRBool aDeep, PRBool aNullParent)
|
|
|
|
{
|
|
|
|
nsIDocument *document = GetCurrentDoc();
|
|
|
|
if (document) {
|
|
|
|
// Notify XBL- & nsIAnonymousContentCreator-generated
|
|
|
|
// anonymous content that the document is changing.
|
|
|
|
// This is needed to update the insertion point.
|
|
|
|
document->BindingManager()->ChangeDocumentFor(this, document, nsnull);
|
|
|
|
}
|
|
|
|
|
|
|
|
mParentPtrBits = aNullParent ? 0 : mParentPtrBits & ~PARENT_BIT_INDOCUMENT;
|
|
|
|
|
|
|
|
nsDataSlots *slots = GetExistingDataSlots();
|
|
|
|
if (slots) {
|
|
|
|
slots->mBindingParent = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsNodeUtils::ParentChainChanged(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAtom *
|
2007-07-26 07:16:19 -07:00
|
|
|
nsGenericDOMDataNode::GetIDAttributeName() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsINodeInfo>
|
|
|
|
nsGenericDOMDataNode::GetExistingAttrNameFromQName(const nsAString& aStr) const
|
|
|
|
{
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::SetAttr(PRInt32 aNameSpaceID, nsIAtom* aAttr,
|
|
|
|
nsIAtom* aPrefix, const nsAString& aValue,
|
|
|
|
PRBool aNotify)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::UnsetAttr(PRInt32 aNameSpaceID, nsIAtom* aAttr,
|
|
|
|
PRBool aNotify)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsGenericDOMDataNode::GetAttr(PRInt32 aNameSpaceID, nsIAtom *aAttr,
|
|
|
|
nsAString& aResult) const
|
|
|
|
{
|
|
|
|
aResult.Truncate();
|
|
|
|
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsGenericDOMDataNode::HasAttr(PRInt32 aNameSpaceID, nsIAtom *aAttribute) const
|
|
|
|
{
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
const nsAttrName*
|
|
|
|
nsGenericDOMDataNode::GetAttrNameAt(PRUint32 aIndex) const
|
|
|
|
{
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32
|
|
|
|
nsGenericDOMDataNode::GetAttrCount() const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::PreHandleEvent(nsEventChainPreVisitor& aVisitor)
|
|
|
|
{
|
|
|
|
return nsGenericElement::doPreHandleEvent(this, aVisitor);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::PostHandleEvent(nsEventChainPostVisitor& /*aVisitor*/)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::DispatchDOMEvent(nsEvent* aEvent,
|
|
|
|
nsIDOMEvent* aDOMEvent,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
nsEventStatus* aEventStatus)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
return nsEventDispatcher::DispatchDOMEvent(static_cast<nsINode*>(this),
|
2007-03-22 10:30:00 -07:00
|
|
|
aEvent, aDOMEvent,
|
|
|
|
aPresContext, aEventStatus);
|
|
|
|
}
|
|
|
|
|
2007-05-14 02:11:38 -07:00
|
|
|
nsresult
|
2007-03-22 10:30:00 -07:00
|
|
|
nsGenericDOMDataNode::GetListenerManager(PRBool aCreateIfNotFound,
|
|
|
|
nsIEventListenerManager** aResult)
|
|
|
|
{
|
|
|
|
return nsContentUtils::GetListenerManager(this, aCreateIfNotFound, aResult);
|
|
|
|
}
|
|
|
|
|
2007-05-14 02:11:38 -07:00
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::AddEventListenerByIID(nsIDOMEventListener *aListener,
|
|
|
|
const nsIID& aIID)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIEventListenerManager> elm;
|
|
|
|
nsresult rv = GetListenerManager(PR_TRUE, getter_AddRefs(elm));
|
|
|
|
if (elm) {
|
|
|
|
return elm->AddEventListenerByIID(aListener, aIID, NS_EVENT_FLAG_BUBBLE);
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::RemoveEventListenerByIID(nsIDOMEventListener *aListener,
|
|
|
|
const nsIID& aIID)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIEventListenerManager> elm;
|
|
|
|
GetListenerManager(PR_FALSE, getter_AddRefs(elm));
|
|
|
|
if (elm) {
|
|
|
|
return elm->RemoveEventListenerByIID(aListener, aIID, NS_EVENT_FLAG_BUBBLE);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::GetSystemEventGroup(nsIDOMEventGroup** aGroup)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIEventListenerManager> elm;
|
|
|
|
nsresult rv = GetListenerManager(PR_TRUE, getter_AddRefs(elm));
|
|
|
|
if (elm) {
|
|
|
|
return elm->GetSystemEventGroupLM(aGroup);
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint32
|
|
|
|
nsGenericDOMDataNode::GetChildCount() const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIContent *
|
|
|
|
nsGenericDOMDataNode::GetChildAt(PRUint32 aIndex) const
|
|
|
|
{
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32
|
|
|
|
nsGenericDOMDataNode::IndexOf(nsINode* aPossibleChild) const
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::InsertChildAt(nsIContent* aKid, PRUint32 aIndex,
|
|
|
|
PRBool aNotify)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::RemoveChildAt(PRUint32 aIndex, PRBool aNotify)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// virtual
|
|
|
|
PRBool
|
|
|
|
nsGenericDOMDataNode::MayHaveFrame() const
|
|
|
|
{
|
|
|
|
nsIContent* parent = GetParent();
|
|
|
|
return parent && parent->MayHaveFrame();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIContent *
|
|
|
|
nsGenericDOMDataNode::GetBindingParent() const
|
|
|
|
{
|
|
|
|
nsDataSlots *slots = GetExistingDataSlots();
|
|
|
|
return slots ? slots->mBindingParent : nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsGenericDOMDataNode::IsNodeOfType(PRUint32 aFlags) const
|
|
|
|
{
|
|
|
|
return !(aFlags & ~(eCONTENT | eDATA_NODE));
|
|
|
|
}
|
|
|
|
|
2007-11-30 09:57:03 -08:00
|
|
|
void
|
|
|
|
nsGenericDOMDataNode::DestroyContent()
|
|
|
|
{
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
void
|
|
|
|
nsGenericDOMDataNode::List(FILE* out, PRInt32 aIndent) const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsGenericDOMDataNode::DumpContent(FILE* out, PRInt32 aIndent,
|
|
|
|
PRBool aDumpAll) const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
already_AddRefed<nsIURI>
|
|
|
|
nsGenericDOMDataNode::GetBaseURI() const
|
|
|
|
{
|
|
|
|
// DOM Data Node inherits the base from its parent element/document
|
|
|
|
nsIContent *parent = GetParent();
|
|
|
|
if (parent) {
|
|
|
|
return parent->GetBaseURI();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIURI *uri;
|
|
|
|
nsIDocument *doc = GetOwnerDoc();
|
|
|
|
if (doc) {
|
|
|
|
NS_IF_ADDREF(uri = doc->GetBaseURI());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
uri = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
return uri;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsGenericDOMDataNode::IsLink(nsIURI** aURI) const
|
|
|
|
{
|
|
|
|
*aURI = nsnull;
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsINode::nsSlots*
|
|
|
|
nsGenericDOMDataNode::CreateSlots()
|
|
|
|
{
|
2007-12-15 01:45:33 -08:00
|
|
|
return new (GetAllocator()) nsDataSlots(mFlagsOrSlots);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Implementation of the nsIDOMText interface
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::SplitText(PRUint32 aOffset, nsIDOMText** aReturn)
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
nsAutoString cutText;
|
|
|
|
PRUint32 length = TextLength();
|
|
|
|
|
|
|
|
if (aOffset > length) {
|
|
|
|
return NS_ERROR_DOM_INDEX_SIZE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = SubstringData(aOffset, length - aOffset, cutText);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = DeleteData(aOffset, length - aOffset);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Use Clone for creating the new node so that the new node is of same class
|
|
|
|
* as this node!
|
|
|
|
*/
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> newContent = CloneDataNode(mNodeInfo, PR_FALSE);
|
|
|
|
if (!newContent) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
newContent->SetText(cutText, PR_TRUE);
|
|
|
|
|
|
|
|
nsIContent* parent = GetParent();
|
|
|
|
|
|
|
|
if (parent) {
|
|
|
|
PRInt32 index = parent->IndexOf(this);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> content(do_QueryInterface(newContent));
|
|
|
|
|
|
|
|
parent->InsertChildAt(content, index+1, PR_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
// No need to handle the case of document being the parent since text
|
|
|
|
// isn't allowed as direct child of documents
|
|
|
|
|
|
|
|
return CallQueryInterface(newContent, aReturn);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Implementation of the nsIContent interface text functions
|
|
|
|
|
|
|
|
const nsTextFragment *
|
|
|
|
nsGenericDOMDataNode::GetText()
|
|
|
|
{
|
|
|
|
return &mText;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32
|
|
|
|
nsGenericDOMDataNode::TextLength()
|
|
|
|
{
|
|
|
|
return mText.GetLength();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::SetText(const PRUnichar* aBuffer,
|
|
|
|
PRUint32 aLength,
|
|
|
|
PRBool aNotify)
|
|
|
|
{
|
|
|
|
return SetTextInternal(0, mText.GetLength(), aBuffer, aLength, aNotify);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsGenericDOMDataNode::AppendText(const PRUnichar* aBuffer,
|
|
|
|
PRUint32 aLength,
|
|
|
|
PRBool aNotify)
|
|
|
|
{
|
|
|
|
return SetTextInternal(mText.GetLength(), 0, aBuffer, aLength, aNotify);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsGenericDOMDataNode::TextIsOnlyWhitespace()
|
|
|
|
{
|
|
|
|
if (mText.Is2b()) {
|
|
|
|
// The fragment contains non-8bit characters and such characters
|
|
|
|
// are never considered whitespace.
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* cp = mText.Get1b();
|
|
|
|
const char* end = cp + mText.GetLength();
|
|
|
|
|
|
|
|
while (cp < end) {
|
|
|
|
char ch = *cp;
|
|
|
|
|
|
|
|
if (!XP_IS_SPACE(ch)) {
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
++cp;
|
|
|
|
}
|
|
|
|
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsGenericDOMDataNode::AppendTextTo(nsAString& aResult)
|
|
|
|
{
|
|
|
|
mText.AppendTo(aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsGenericDOMDataNode::SetBidiStatus()
|
|
|
|
{
|
|
|
|
nsIDocument *document = GetCurrentDoc();
|
|
|
|
if (document && document->GetBidiEnabled()) {
|
|
|
|
// OK, we already know it's Bidi, so we won't test again
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mText.SetBidiFlag();
|
|
|
|
|
|
|
|
if (document && mText.IsBidi()) {
|
|
|
|
document->SetBidiEnabled(PR_TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsIAtom>
|
|
|
|
nsGenericDOMDataNode::GetCurrentValueAtom()
|
|
|
|
{
|
|
|
|
nsAutoString val;
|
|
|
|
GetData(val);
|
|
|
|
return NS_NewAtom(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAtom*
|
|
|
|
nsGenericDOMDataNode::GetID() const
|
|
|
|
{
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
const nsAttrValue*
|
|
|
|
nsGenericDOMDataNode::GetClasses() const
|
|
|
|
{
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGenericDOMDataNode::WalkContentStyleRules(nsRuleWalker* aRuleWalker)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsICSSStyleRule*
|
|
|
|
nsGenericDOMDataNode::GetInlineStyleRule()
|
|
|
|
{
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsGenericDOMDataNode::SetInlineStyleRule(nsICSSStyleRule* aStyleRule,
|
|
|
|
PRBool aNotify)
|
|
|
|
{
|
|
|
|
NS_NOTREACHED("How come we're setting inline style on a non-element?");
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(PRBool)
|
|
|
|
nsGenericDOMDataNode::IsAttributeMapped(const nsIAtom* aAttribute) const
|
|
|
|
{
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsChangeHint
|
|
|
|
nsGenericDOMDataNode::GetAttributeChangeHint(const nsIAtom* aAttribute,
|
|
|
|
PRInt32 aModType) const
|
|
|
|
{
|
|
|
|
NS_NOTREACHED("Shouldn't be calling this!");
|
|
|
|
return nsChangeHint(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAtom*
|
|
|
|
nsGenericDOMDataNode::GetClassAttributeName() const
|
|
|
|
{
|
|
|
|
return nsnull;
|
|
|
|
}
|