mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
1150 lines
40 KiB
C++
1150 lines
40 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/*
|
|
* Base class for all element classes; this provides an implementation
|
|
* of DOM Core's nsIDOMElement, implements nsIContent, provides
|
|
* utility methods for subclasses, and so forth.
|
|
*/
|
|
|
|
#ifndef FragmentOrElement_h___
|
|
#define FragmentOrElement_h___
|
|
|
|
#include "nsCOMPtr.h"
|
|
#include "nsAutoPtr.h"
|
|
#include "nsIContent.h"
|
|
#include "nsIDOMElement.h"
|
|
#include "nsIDOMDocumentFragment.h"
|
|
#include "nsILinkHandler.h"
|
|
#include "nsNodeUtils.h"
|
|
#include "nsAttrAndChildArray.h"
|
|
#include "mozFlushType.h"
|
|
#include "nsDOMAttributeMap.h"
|
|
#include "nsIWeakReference.h"
|
|
#include "nsCycleCollectionParticipant.h"
|
|
#include "nsIDocument.h"
|
|
#include "nsIDOMNodeSelector.h"
|
|
#include "nsIDOMXPathNSResolver.h"
|
|
#include "nsPresContext.h"
|
|
#include "nsIDOMDOMStringMap.h"
|
|
#include "nsContentList.h"
|
|
#include "nsDOMClassInfoID.h" // DOMCI_DATA
|
|
#include "nsIDOMTouchEvent.h"
|
|
#include "nsIInlineEventHandlers.h"
|
|
#include "mozilla/CORSMode.h"
|
|
#include "mozilla/Attributes.h"
|
|
|
|
#include "nsISMILAttr.h"
|
|
|
|
class nsIDOMAttr;
|
|
class nsIDOMEventListener;
|
|
class nsIFrame;
|
|
class nsIDOMNamedNodeMap;
|
|
class nsICSSDeclaration;
|
|
class nsIDOMCSSStyleDeclaration;
|
|
class nsIURI;
|
|
class nsINodeInfo;
|
|
class nsIControllers;
|
|
class nsEventListenerManager;
|
|
class nsIScrollableFrame;
|
|
class nsAttrValueOrString;
|
|
class nsContentList;
|
|
class nsDOMTokenList;
|
|
class ContentUnbinder;
|
|
struct nsRect;
|
|
|
|
typedef PRUptrdiff PtrBits;
|
|
|
|
/**
|
|
* Class that implements the nsIDOMNodeList interface (a list of children of
|
|
* the content), by holding a reference to the content and delegating GetLength
|
|
* and Item to its existing child list.
|
|
* @see nsIDOMNodeList
|
|
*/
|
|
class nsChildContentList MOZ_FINAL : public nsINodeList
|
|
{
|
|
public:
|
|
nsChildContentList(nsINode* aNode)
|
|
: mNode(aNode)
|
|
{
|
|
SetIsDOMBinding();
|
|
}
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_SKIPPABLE_SCRIPT_HOLDER_CLASS(nsChildContentList)
|
|
|
|
// nsWrapperCache
|
|
virtual JSObject* WrapObject(JSContext *cx, JSObject *scope,
|
|
bool *triedToWrap);
|
|
|
|
// nsIDOMNodeList interface
|
|
NS_DECL_NSIDOMNODELIST
|
|
|
|
// nsINodeList interface
|
|
virtual PRInt32 IndexOf(nsIContent* aContent);
|
|
|
|
void DropReference()
|
|
{
|
|
mNode = nullptr;
|
|
}
|
|
|
|
virtual nsINode* GetParentObject()
|
|
{
|
|
return mNode;
|
|
}
|
|
|
|
private:
|
|
// The node whose children make up the list (weak reference)
|
|
nsINode* mNode;
|
|
};
|
|
|
|
/**
|
|
* A tearoff class for FragmentOrElement to implement additional interfaces
|
|
*/
|
|
class nsNode3Tearoff : public nsIDOMXPathNSResolver
|
|
{
|
|
public:
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(nsNode3Tearoff)
|
|
|
|
NS_DECL_NSIDOMXPATHNSRESOLVER
|
|
|
|
nsNode3Tearoff(nsINode *aNode) : mNode(aNode)
|
|
{
|
|
}
|
|
|
|
protected:
|
|
virtual ~nsNode3Tearoff() {}
|
|
|
|
private:
|
|
nsCOMPtr<nsINode> mNode;
|
|
};
|
|
|
|
/**
|
|
* A class that implements nsIWeakReference
|
|
*/
|
|
|
|
class nsNodeWeakReference MOZ_FINAL : public nsIWeakReference
|
|
{
|
|
public:
|
|
nsNodeWeakReference(nsINode* aNode)
|
|
: mNode(aNode)
|
|
{
|
|
}
|
|
|
|
~nsNodeWeakReference();
|
|
|
|
// nsISupports
|
|
NS_DECL_ISUPPORTS
|
|
|
|
// nsIWeakReference
|
|
NS_DECL_NSIWEAKREFERENCE
|
|
|
|
void NoticeNodeDestruction()
|
|
{
|
|
mNode = nullptr;
|
|
}
|
|
|
|
private:
|
|
nsINode* mNode;
|
|
};
|
|
|
|
/**
|
|
* Tearoff to use for nodes to implement nsISupportsWeakReference
|
|
*/
|
|
class nsNodeSupportsWeakRefTearoff MOZ_FINAL : public nsISupportsWeakReference
|
|
{
|
|
public:
|
|
nsNodeSupportsWeakRefTearoff(nsINode* aNode)
|
|
: mNode(aNode)
|
|
{
|
|
}
|
|
|
|
// nsISupports
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
// nsISupportsWeakReference
|
|
NS_DECL_NSISUPPORTSWEAKREFERENCE
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(nsNodeSupportsWeakRefTearoff)
|
|
|
|
private:
|
|
nsCOMPtr<nsINode> mNode;
|
|
};
|
|
|
|
/**
|
|
* A tearoff class for FragmentOrElement to implement NodeSelector
|
|
*/
|
|
class nsNodeSelectorTearoff MOZ_FINAL : public nsIDOMNodeSelector
|
|
{
|
|
public:
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_NSIDOMNODESELECTOR
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(nsNodeSelectorTearoff)
|
|
|
|
nsNodeSelectorTearoff(nsINode *aNode) : mNode(aNode)
|
|
{
|
|
}
|
|
|
|
private:
|
|
~nsNodeSelectorTearoff() {}
|
|
|
|
private:
|
|
nsCOMPtr<nsINode> mNode;
|
|
};
|
|
|
|
// Forward declare to allow being a friend
|
|
class nsTouchEventReceiverTearoff;
|
|
class nsInlineEventHandlersTearoff;
|
|
|
|
/**
|
|
* A generic base class for DOM elements, implementing many nsIContent,
|
|
* nsIDOMNode and nsIDOMElement methods.
|
|
*/
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class FragmentOrElement : public nsIContent
|
|
{
|
|
public:
|
|
FragmentOrElement(already_AddRefed<nsINodeInfo> aNodeInfo);
|
|
virtual ~FragmentOrElement();
|
|
|
|
friend class ::nsTouchEventReceiverTearoff;
|
|
friend class ::nsInlineEventHandlersTearoff;
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_SIZEOF_EXCLUDING_THIS
|
|
|
|
/**
|
|
* Called during QueryInterface to give the binding manager a chance to
|
|
* get an interface for this element.
|
|
*/
|
|
nsresult PostQueryInterface(REFNSIID aIID, void** aInstancePtr);
|
|
|
|
// nsINode interface methods
|
|
virtual PRUint32 GetChildCount() const;
|
|
virtual nsIContent *GetChildAt(PRUint32 aIndex) const;
|
|
virtual nsIContent * const * GetChildArray(PRUint32* aChildCount) const;
|
|
virtual PRInt32 IndexOf(nsINode* aPossibleChild) const;
|
|
virtual nsresult InsertChildAt(nsIContent* aKid, PRUint32 aIndex,
|
|
bool aNotify);
|
|
virtual void RemoveChildAt(PRUint32 aIndex, bool aNotify);
|
|
NS_IMETHOD GetTextContent(nsAString &aTextContent);
|
|
NS_IMETHOD SetTextContent(const nsAString& aTextContent);
|
|
|
|
// nsIContent interface methods
|
|
#if 0
|
|
virtual void UpdateEditableState(bool aNotify);
|
|
|
|
virtual nsresult BindToTree(nsIDocument* aDocument, nsIContent* aParent,
|
|
nsIContent* aBindingParent,
|
|
bool aCompileEventHandlers);
|
|
virtual void UnbindFromTree(bool aDeep = true,
|
|
bool aNullParent = true);
|
|
#endif
|
|
virtual already_AddRefed<nsINodeList> GetChildren(PRUint32 aFilter);
|
|
virtual nsIAtom *GetClassAttributeName() const;
|
|
virtual already_AddRefed<nsINodeInfo> GetExistingAttrNameFromQName(const nsAString& aStr) const;
|
|
#if 0
|
|
nsresult SetAttr(PRInt32 aNameSpaceID, nsIAtom* aName,
|
|
const nsAString& aValue, bool aNotify)
|
|
{
|
|
return SetAttr(aNameSpaceID, aName, nullptr, aValue, aNotify);
|
|
}
|
|
/**
|
|
* Helper for SetAttr/SetParsedAttr. This method will return true if aNotify
|
|
* is true or there are mutation listeners that must be triggered, the
|
|
* attribute is currently set, and the new value that is about to be set is
|
|
* different to the current value. As a perf optimization the new and old
|
|
* values will not actually be compared if we aren't notifying and we don't
|
|
* have mutation listeners (in which case it's cheap to just return false
|
|
* and let the caller go ahead and set the value).
|
|
* @param aOldValue Set to the old value of the attribute, but only if there
|
|
* are event listeners. If set, the type of aOldValue will be either
|
|
* nsAttrValue::eString or nsAttrValue::eAtom.
|
|
* @param aModType Set to nsIDOMMutationEvent::MODIFICATION or to
|
|
* nsIDOMMutationEvent::ADDITION, but only if this helper returns true
|
|
* @param aHasListeners Set to true if there are mutation event listeners
|
|
* listening for NS_EVENT_BITS_MUTATION_ATTRMODIFIED
|
|
*/
|
|
bool MaybeCheckSameAttrVal(PRInt32 aNamespaceID, nsIAtom* aName,
|
|
nsIAtom* aPrefix,
|
|
const nsAttrValueOrString& aValue,
|
|
bool aNotify, nsAttrValue& aOldValue,
|
|
PRUint8* aModType, bool* aHasListeners);
|
|
virtual nsresult SetAttr(PRInt32 aNameSpaceID, nsIAtom* aName, nsIAtom* aPrefix,
|
|
const nsAString& aValue, bool aNotify);
|
|
virtual nsresult SetParsedAttr(PRInt32 aNameSpaceID, nsIAtom* aName,
|
|
nsIAtom* aPrefix, nsAttrValue& aParsedValue,
|
|
bool aNotify);
|
|
virtual bool GetAttr(PRInt32 aNameSpaceID, nsIAtom* aName,
|
|
nsAString& aResult) const;
|
|
virtual bool HasAttr(PRInt32 aNameSpaceID, nsIAtom* aName) const;
|
|
virtual bool AttrValueIs(PRInt32 aNameSpaceID, nsIAtom* aName,
|
|
const nsAString& aValue,
|
|
nsCaseTreatment aCaseSensitive) const;
|
|
virtual bool AttrValueIs(PRInt32 aNameSpaceID, nsIAtom* aName,
|
|
nsIAtom* aValue,
|
|
nsCaseTreatment aCaseSensitive) const;
|
|
virtual PRInt32 FindAttrValueIn(PRInt32 aNameSpaceID,
|
|
nsIAtom* aName,
|
|
AttrValuesArray* aValues,
|
|
nsCaseTreatment aCaseSensitive) const;
|
|
virtual nsresult UnsetAttr(PRInt32 aNameSpaceID, nsIAtom* aAttribute,
|
|
bool aNotify);
|
|
virtual const nsAttrName* GetAttrNameAt(PRUint32 aIndex) const;
|
|
virtual PRUint32 GetAttrCount() const;
|
|
#endif
|
|
virtual const nsTextFragment *GetText();
|
|
virtual PRUint32 TextLength() const;
|
|
virtual nsresult SetText(const PRUnichar* aBuffer, PRUint32 aLength,
|
|
bool aNotify);
|
|
// Need to implement this here too to avoid hiding.
|
|
nsresult SetText(const nsAString& aStr, bool aNotify)
|
|
{
|
|
return SetText(aStr.BeginReading(), aStr.Length(), aNotify);
|
|
}
|
|
virtual nsresult AppendText(const PRUnichar* aBuffer, PRUint32 aLength,
|
|
bool aNotify);
|
|
virtual bool TextIsOnlyWhitespace();
|
|
virtual void AppendTextTo(nsAString& aResult);
|
|
virtual nsIContent *GetBindingParent() const;
|
|
virtual bool IsNodeOfType(PRUint32 aFlags) const;
|
|
virtual bool IsLink(nsIURI** aURI) const;
|
|
|
|
virtual void DestroyContent();
|
|
virtual void SaveSubtreeState();
|
|
|
|
#if 0
|
|
virtual nsISMILAttr* GetAnimatedAttr(PRInt32 /*aNamespaceID*/, nsIAtom* /*aName*/)
|
|
{
|
|
return nullptr;
|
|
}
|
|
virtual nsICSSDeclaration* GetSMILOverrideStyle();
|
|
virtual mozilla::css::StyleRule* GetSMILOverrideStyleRule();
|
|
virtual nsresult SetSMILOverrideStyleRule(mozilla::css::StyleRule* aStyleRule,
|
|
bool aNotify);
|
|
virtual bool IsLabelable() const;
|
|
|
|
#ifdef DEBUG
|
|
virtual void List(FILE* out, PRInt32 aIndent) const
|
|
{
|
|
List(out, aIndent, EmptyCString());
|
|
}
|
|
virtual void DumpContent(FILE* out, PRInt32 aIndent, bool aDumpAll) const;
|
|
void List(FILE* out, PRInt32 aIndent, const nsCString& aPrefix) const;
|
|
void ListAttributes(FILE* out) const;
|
|
#endif
|
|
#endif
|
|
|
|
virtual const nsAttrValue* DoGetClasses() const;
|
|
NS_IMETHOD WalkContentStyleRules(nsRuleWalker* aRuleWalker);
|
|
#if 0
|
|
virtual mozilla::css::StyleRule* GetInlineStyleRule();
|
|
virtual nsresult SetInlineStyleRule(mozilla::css::StyleRule* aStyleRule,
|
|
const nsAString* aSerialized,
|
|
bool aNotify);
|
|
#endif
|
|
NS_IMETHOD_(bool)
|
|
IsAttributeMapped(const nsIAtom* aAttribute) const;
|
|
virtual nsChangeHint GetAttributeChangeHint(const nsIAtom* aAttribute,
|
|
PRInt32 aModType) const;
|
|
/*
|
|
* Attribute Mapping Helpers
|
|
*/
|
|
struct MappedAttributeEntry {
|
|
nsIAtom** attribute;
|
|
};
|
|
|
|
/**
|
|
* A common method where you can just pass in a list of maps to check
|
|
* for attribute dependence. Most implementations of
|
|
* IsAttributeMapped should use this function as a default
|
|
* handler.
|
|
*/
|
|
template<size_t N>
|
|
static bool
|
|
FindAttributeDependence(const nsIAtom* aAttribute,
|
|
const MappedAttributeEntry* const (&aMaps)[N])
|
|
{
|
|
return FindAttributeDependence(aAttribute, aMaps, N);
|
|
}
|
|
|
|
private:
|
|
static bool
|
|
FindAttributeDependence(const nsIAtom* aAttribute,
|
|
const MappedAttributeEntry* const aMaps[],
|
|
PRUint32 aMapCount);
|
|
|
|
public:
|
|
// nsIDOMNode method implementation
|
|
NS_IMETHOD GetNodeName(nsAString& aNodeName);
|
|
NS_IMETHOD GetLocalName(nsAString& aLocalName);
|
|
NS_IMETHOD GetNodeValue(nsAString& aNodeValue);
|
|
NS_IMETHOD SetNodeValue(const nsAString& aNodeValue);
|
|
NS_IMETHOD GetNodeType(PRUint16* aNodeType);
|
|
NS_IMETHOD GetAttributes(nsIDOMNamedNodeMap** aAttributes);
|
|
NS_IMETHOD GetNamespaceURI(nsAString& aNamespaceURI);
|
|
NS_IMETHOD GetPrefix(nsAString& aPrefix);
|
|
NS_IMETHOD IsSupported(const nsAString& aFeature,
|
|
const nsAString& aVersion, bool* aReturn);
|
|
NS_IMETHOD HasAttributes(bool* aHasAttributes);
|
|
NS_IMETHOD HasChildNodes(bool* aHasChildNodes);
|
|
nsresult InsertBefore(nsIDOMNode* aNewChild, nsIDOMNode* aRefChild,
|
|
nsIDOMNode** aReturn)
|
|
{
|
|
return ReplaceOrInsertBefore(false, aNewChild, aRefChild, aReturn);
|
|
}
|
|
nsresult ReplaceChild(nsIDOMNode* aNewChild, nsIDOMNode* aOldChild,
|
|
nsIDOMNode** aReturn)
|
|
{
|
|
return ReplaceOrInsertBefore(true, aNewChild, aOldChild, aReturn);
|
|
}
|
|
nsresult RemoveChild(nsIDOMNode* aOldChild, nsIDOMNode** aReturn)
|
|
{
|
|
return nsINode::RemoveChild(aOldChild, aReturn);
|
|
}
|
|
nsresult AppendChild(nsIDOMNode* aNewChild, nsIDOMNode** aReturn)
|
|
{
|
|
return InsertBefore(aNewChild, nullptr, aReturn);
|
|
}
|
|
|
|
#if 0
|
|
// nsIDOMElement method implementation
|
|
NS_DECL_NSIDOMELEMENT
|
|
#endif
|
|
|
|
nsresult CloneNode(bool aDeep, PRUint8 aOptionalArgc, nsIDOMNode **aResult)
|
|
{
|
|
if (!aOptionalArgc) {
|
|
aDeep = true;
|
|
}
|
|
|
|
return nsNodeUtils::CloneNodeImpl(this, aDeep, true, aResult);
|
|
}
|
|
|
|
//----------------------------------------
|
|
|
|
/**
|
|
* Add a script event listener with the given event handler name
|
|
* (like onclick) and with the value as JS
|
|
* @param aEventName the event listener name
|
|
* @param aValue the JS to attach
|
|
* @param aDefer indicates if deferred execution is allowed
|
|
*/
|
|
nsresult AddScriptEventListener(nsIAtom* aEventName,
|
|
const nsAString& aValue,
|
|
bool aDefer = true);
|
|
|
|
/**
|
|
* Do whatever needs to be done when the mouse leaves a link
|
|
*/
|
|
nsresult LeaveLink(nsPresContext* aPresContext);
|
|
|
|
/**
|
|
* Check whether a spec feature/version is supported.
|
|
* @param aObject the object, which should support the feature,
|
|
* for example nsIDOMNode or nsIDOMDOMImplementation
|
|
* @param aFeature the feature ("Views", "Core", "HTML", "Range" ...)
|
|
* @param aVersion the version ("1.0", "2.0", ...)
|
|
* @param aReturn whether the feature is supported or not [OUT]
|
|
*/
|
|
static nsresult InternalIsSupported(nsISupports* aObject,
|
|
const nsAString& aFeature,
|
|
const nsAString& aVersion,
|
|
bool* aReturn);
|
|
|
|
static bool ShouldBlur(nsIContent *aContent);
|
|
|
|
/**
|
|
* If there are listeners for DOMNodeInserted event, fires the event on all
|
|
* aNodes
|
|
*/
|
|
static void FireNodeInserted(nsIDocument* aDoc,
|
|
nsINode* aParent,
|
|
nsTArray<nsCOMPtr<nsIContent> >& aNodes);
|
|
|
|
/**
|
|
* Helper methods for implementing querySelector/querySelectorAll
|
|
*/
|
|
static nsIContent* doQuerySelector(nsINode* aRoot, const nsAString& aSelector,
|
|
nsresult *aResult);
|
|
static nsresult doQuerySelectorAll(nsINode* aRoot,
|
|
const nsAString& aSelector,
|
|
nsIDOMNodeList **aReturn);
|
|
|
|
/**
|
|
* Method to create and dispatch a left-click event loosely based on
|
|
* aSourceEvent. If aFullDispatch is true, the event will be dispatched
|
|
* through the full dispatching of the presshell of the aPresContext; if it's
|
|
* false the event will be dispatched only as a DOM event.
|
|
* If aPresContext is nullptr, this does nothing.
|
|
*/
|
|
static nsresult DispatchClickEvent(nsPresContext* aPresContext,
|
|
nsInputEvent* aSourceEvent,
|
|
nsIContent* aTarget,
|
|
bool aFullDispatch,
|
|
PRUint32 aFlags,
|
|
nsEventStatus* aStatus);
|
|
|
|
/**
|
|
* Method to dispatch aEvent to aTarget. If aFullDispatch is true, the event
|
|
* will be dispatched through the full dispatching of the presshell of the
|
|
* aPresContext; if it's false the event will be dispatched only as a DOM
|
|
* event.
|
|
* If aPresContext is nullptr, this does nothing.
|
|
*/
|
|
using nsIContent::DispatchEvent;
|
|
static nsresult DispatchEvent(nsPresContext* aPresContext,
|
|
nsEvent* aEvent,
|
|
nsIContent* aTarget,
|
|
bool aFullDispatch,
|
|
nsEventStatus* aStatus);
|
|
|
|
/**
|
|
* Get the primary frame for this content with flushing
|
|
*
|
|
* @param aType the kind of flush to do, typically Flush_Frames or
|
|
* Flush_Layout
|
|
* @return the primary frame
|
|
*/
|
|
nsIFrame* GetPrimaryFrame(mozFlushType aType);
|
|
// Work around silly C++ name hiding stuff
|
|
nsIFrame* GetPrimaryFrame() const { return nsIContent::GetPrimaryFrame(); }
|
|
|
|
/**
|
|
* Struct that stores info on an attribute. The name and value must
|
|
* either both be null or both be non-null.
|
|
*/
|
|
struct nsAttrInfo {
|
|
nsAttrInfo(const nsAttrName* aName, const nsAttrValue* aValue) :
|
|
mName(aName), mValue(aValue) {}
|
|
nsAttrInfo(const nsAttrInfo& aOther) :
|
|
mName(aOther.mName), mValue(aOther.mValue) {}
|
|
|
|
const nsAttrName* mName;
|
|
const nsAttrValue* mValue;
|
|
};
|
|
|
|
// Be careful when using this method. This does *NOT* handle
|
|
// XUL prototypes. You may want to use GetAttrInfo.
|
|
const nsAttrValue* GetParsedAttr(nsIAtom* aAttr) const
|
|
{
|
|
return mAttrsAndChildren.GetAttr(aAttr);
|
|
}
|
|
|
|
/**
|
|
* Returns the attribute map, if there is one.
|
|
*
|
|
* @return existing attribute map or nullptr.
|
|
*/
|
|
nsDOMAttributeMap *GetAttributeMap()
|
|
{
|
|
nsDOMSlots *slots = GetExistingDOMSlots();
|
|
|
|
return slots ? slots->mAttributeMap.get() : nullptr;
|
|
}
|
|
|
|
virtual void RecompileScriptEventListeners()
|
|
{
|
|
}
|
|
|
|
#if 0
|
|
PRInt32 GetScrollTop();
|
|
PRInt32 GetScrollLeft();
|
|
PRInt32 GetScrollHeight();
|
|
PRInt32 GetScrollWidth();
|
|
PRInt32 GetScrollLeftMax();
|
|
PRInt32 GetScrollTopMax();
|
|
PRInt32 GetClientTop()
|
|
{
|
|
return nsPresContext::AppUnitsToIntCSSPixels(GetClientAreaRect().y);
|
|
}
|
|
PRInt32 GetClientLeft()
|
|
{
|
|
return nsPresContext::AppUnitsToIntCSSPixels(GetClientAreaRect().x);
|
|
}
|
|
PRInt32 GetClientHeight()
|
|
{
|
|
return nsPresContext::AppUnitsToIntCSSPixels(GetClientAreaRect().height);
|
|
}
|
|
PRInt32 GetClientWidth()
|
|
{
|
|
return nsPresContext::AppUnitsToIntCSSPixels(GetClientAreaRect().width);
|
|
}
|
|
nsIContent* GetFirstElementChild();
|
|
nsIContent* GetLastElementChild();
|
|
nsIContent* GetPreviousElementSibling();
|
|
nsIContent* GetNextElementSibling();
|
|
nsDOMTokenList* GetClassList(nsresult *aResult);
|
|
bool MozMatchesSelector(const nsAString& aSelector, nsresult* aResult);
|
|
|
|
/**
|
|
* Get the attr info for the given namespace ID and attribute name. The
|
|
* namespace ID must not be kNameSpaceID_Unknown and the name must not be
|
|
* null. Note that this can only return info on attributes that actually
|
|
* live on this element (and is only virtual to handle XUL prototypes). That
|
|
* is, this should only be called from methods that only care about attrs
|
|
* that effectively live in mAttrsAndChildren.
|
|
*/
|
|
virtual nsAttrInfo GetAttrInfo(PRInt32 aNamespaceID, nsIAtom* aName) const;
|
|
#endif
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SKIPPABLE_SCRIPT_HOLDER_CLASS(FragmentOrElement)
|
|
|
|
virtual void NodeInfoChanged(nsINodeInfo* aOldNodeInfo)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Fire a DOMNodeRemoved mutation event for all children of this node
|
|
*/
|
|
void FireNodeRemovedForChildren();
|
|
|
|
virtual bool OwnedOnlyByTheDOMTree()
|
|
{
|
|
PRUint32 rc = mRefCnt.get();
|
|
if (GetParent()) {
|
|
--rc;
|
|
}
|
|
rc -= mAttrsAndChildren.ChildCount();
|
|
return rc == 0;
|
|
}
|
|
|
|
virtual bool IsPurple()
|
|
{
|
|
return mRefCnt.IsPurple();
|
|
}
|
|
|
|
virtual void RemovePurple()
|
|
{
|
|
mRefCnt.RemovePurple();
|
|
}
|
|
|
|
static void ClearContentUnbinder();
|
|
static bool CanSkip(nsINode* aNode, bool aRemovingAllowed);
|
|
static bool CanSkipInCC(nsINode* aNode);
|
|
static bool CanSkipThis(nsINode* aNode);
|
|
static void MarkNodeChildren(nsINode* aNode);
|
|
static void InitCCCallbacks();
|
|
static void MarkUserData(void* aObject, nsIAtom* aKey, void* aChild,
|
|
void *aData);
|
|
static void MarkUserDataHandler(void* aObject, nsIAtom* aKey, void* aChild,
|
|
void* aData);
|
|
|
|
/**
|
|
* Parse a string into an nsAttrValue for a CORS attribute. This
|
|
* never fails. The resulting value is an enumerated value whose
|
|
* GetEnumValue() returns one of the above constants.
|
|
*/
|
|
static void ParseCORSValue(const nsAString& aValue, nsAttrValue& aResult);
|
|
|
|
/**
|
|
* Return the CORS mode for a given string
|
|
*/
|
|
static mozilla::CORSMode StringToCORSMode(const nsAString& aValue);
|
|
|
|
/**
|
|
* Return the CORS mode for a given nsAttrValue (which may be null,
|
|
* but if not should have been parsed via ParseCORSValue).
|
|
*/
|
|
static mozilla::CORSMode AttrValueToCORSMode(const nsAttrValue* aValue);
|
|
|
|
protected:
|
|
/*
|
|
* Named-bools for use with SetAttrAndNotify to make call sites easier to
|
|
* read.
|
|
*/
|
|
static const bool kFireMutationEvent = true;
|
|
static const bool kDontFireMutationEvent = false;
|
|
static const bool kNotifyDocumentObservers = true;
|
|
static const bool kDontNotifyDocumentObservers = false;
|
|
static const bool kCallAfterSetAttr = true;
|
|
static const bool kDontCallAfterSetAttr = false;
|
|
|
|
/**
|
|
* Set attribute and (if needed) notify documentobservers and fire off
|
|
* mutation events. This will send the AttributeChanged notification.
|
|
* Callers of this method are responsible for calling AttributeWillChange,
|
|
* since that needs to happen before the new attr value has been set, and
|
|
* in particular before it has been parsed.
|
|
*
|
|
* For the boolean parameters, consider using the named bools above to aid
|
|
* code readability.
|
|
*
|
|
* @param aNamespaceID namespace of attribute
|
|
* @param aAttribute local-name of attribute
|
|
* @param aPrefix aPrefix of attribute
|
|
* @param aOldValue previous value of attribute. Only needed if
|
|
* aFireMutation is true.
|
|
* @param aParsedValue parsed new value of attribute
|
|
* @param aModType nsIDOMMutationEvent::MODIFICATION or ADDITION. Only
|
|
* needed if aFireMutation or aNotify is true.
|
|
* @param aFireMutation should mutation-events be fired?
|
|
* @param aNotify should we notify document-observers?
|
|
* @param aCallAfterSetAttr should we call AfterSetAttr?
|
|
*/
|
|
#if 0
|
|
nsresult SetAttrAndNotify(PRInt32 aNamespaceID,
|
|
nsIAtom* aName,
|
|
nsIAtom* aPrefix,
|
|
const nsAttrValue& aOldValue,
|
|
nsAttrValue& aParsedValue,
|
|
PRUint8 aModType,
|
|
bool aFireMutation,
|
|
bool aNotify,
|
|
bool aCallAfterSetAttr);
|
|
|
|
/**
|
|
* Convert an attribute string value to attribute type based on the type of
|
|
* attribute. Called by SetAttr(). Note that at the moment we only do this
|
|
* for attributes in the null namespace (kNameSpaceID_None).
|
|
*
|
|
* @param aNamespaceID the namespace of the attribute to convert
|
|
* @param aAttribute the attribute to convert
|
|
* @param aValue the string value to convert
|
|
* @param aResult the nsAttrValue [OUT]
|
|
* @return true if the parsing was successful, false otherwise
|
|
*/
|
|
virtual bool ParseAttribute(PRInt32 aNamespaceID,
|
|
nsIAtom* aAttribute,
|
|
const nsAString& aValue,
|
|
nsAttrValue& aResult);
|
|
|
|
/**
|
|
* Try to set the attribute as a mapped attribute, if applicable. This will
|
|
* only be called for attributes that are in the null namespace and only on
|
|
* attributes that returned true when passed to IsAttributeMapped. The
|
|
* caller will not try to set the attr in any other way if this method
|
|
* returns true (the value of aRetval does not matter for that purpose).
|
|
*
|
|
* @param aDocument the current document of this node (an optimization)
|
|
* @param aName the name of the attribute
|
|
* @param aValue the nsAttrValue to set
|
|
* @param [out] aRetval the nsresult status of the operation, if any.
|
|
* @return true if the setting was attempted, false otherwise.
|
|
*/
|
|
virtual bool SetMappedAttribute(nsIDocument* aDocument,
|
|
nsIAtom* aName,
|
|
nsAttrValue& aValue,
|
|
nsresult* aRetval);
|
|
#endif
|
|
|
|
/**
|
|
* Hook that is called by FragmentOrElement::SetAttr to allow subclasses to
|
|
* deal with attribute sets. This will only be called after we verify that
|
|
* we're actually doing an attr set and will be called before
|
|
* AttributeWillChange and before ParseAttribute and hence before we've set
|
|
* the new value.
|
|
*
|
|
* @param aNamespaceID the namespace of the attr being set
|
|
* @param aName the localname of the attribute being set
|
|
* @param aValue the value it's being set to represented as either a string or
|
|
* a parsed nsAttrValue. Alternatively, if the attr is being removed it
|
|
* will be null.
|
|
* @param aNotify Whether we plan to notify document observers.
|
|
*/
|
|
// Note that this is inlined so that when subclasses call it it gets
|
|
// inlined. Those calls don't go through a vtable.
|
|
virtual nsresult BeforeSetAttr(PRInt32 aNamespaceID, nsIAtom* aName,
|
|
const nsAttrValueOrString* aValue,
|
|
bool aNotify)
|
|
{
|
|
return NS_OK;
|
|
}
|
|
|
|
/**
|
|
* Hook that is called by FragmentOrElement::SetAttr to allow subclasses to
|
|
* deal with attribute sets. This will only be called after we have called
|
|
* SetAndTakeAttr and AttributeChanged (that is, after we have actually set
|
|
* the attr). It will always be called under a scriptblocker.
|
|
*
|
|
* @param aNamespaceID the namespace of the attr being set
|
|
* @param aName the localname of the attribute being set
|
|
* @param aValue the value it's being set to. If null, the attr is being
|
|
* removed.
|
|
* @param aNotify Whether we plan to notify document observers.
|
|
*/
|
|
// Note that this is inlined so that when subclasses call it it gets
|
|
// inlined. Those calls don't go through a vtable.
|
|
virtual nsresult AfterSetAttr(PRInt32 aNamespaceID, nsIAtom* aName,
|
|
const nsAttrValue* aValue, bool aNotify)
|
|
{
|
|
return NS_OK;
|
|
}
|
|
|
|
/**
|
|
* Hook to allow subclasses to produce a different nsEventListenerManager if
|
|
* needed for attachment of attribute-defined handlers
|
|
*/
|
|
virtual nsEventListenerManager*
|
|
GetEventListenerManagerForAttr(nsIAtom* aAttrName, bool* aDefer);
|
|
|
|
/**
|
|
* Copy attributes and state to another element
|
|
* @param aDest the object to copy to
|
|
*/
|
|
nsresult CopyInnerTo(FragmentOrElement* aDest);
|
|
|
|
/**
|
|
* Internal hook for converting an attribute name-string to an atomized name
|
|
*/
|
|
virtual const nsAttrName* InternalGetExistingAttrNameFromQName(const nsAString& aStr) const;
|
|
|
|
/**
|
|
* Retrieve the rectangle for the offsetX properties, which
|
|
* are coordinates relative to the returned aOffsetParent.
|
|
*
|
|
* @param aRect offset rectangle
|
|
* @param aOffsetParent offset parent
|
|
*/
|
|
#if 0
|
|
virtual void GetOffsetRect(nsRect& aRect, nsIContent** aOffsetParent);
|
|
|
|
/**
|
|
* Retrieve the size of the padding rect of this element.
|
|
*
|
|
* @param aSize the size of the padding rect
|
|
*/
|
|
nsIntSize GetPaddingRectSize();
|
|
|
|
nsIFrame* GetStyledFrame();
|
|
|
|
virtual mozilla::dom::Element* GetNameSpaceElement()
|
|
{
|
|
return this;
|
|
}
|
|
|
|
nsresult GetAttributeNodeNSInternal(const nsAString& aNamespaceURI,
|
|
const nsAString& aLocalName,
|
|
nsIDOMAttr** aReturn);
|
|
#endif
|
|
|
|
public:
|
|
// Because of a bug in MS C++ compiler nsDOMSlots must be declared public,
|
|
// otherwise nsXULElement::nsXULSlots doesn't compile.
|
|
/**
|
|
* There are a set of DOM- and scripting-specific instance variables
|
|
* that may only be instantiated when a content object is accessed
|
|
* through the DOM. Rather than burn actual slots in the content
|
|
* objects for each of these instance variables, we put them off
|
|
* in a side structure that's only allocated when the content is
|
|
* accessed through the DOM.
|
|
*/
|
|
class nsDOMSlots : public nsINode::nsSlots
|
|
{
|
|
public:
|
|
nsDOMSlots();
|
|
virtual ~nsDOMSlots();
|
|
|
|
void Traverse(nsCycleCollectionTraversalCallback &cb, bool aIsXUL);
|
|
void Unlink(bool aIsXUL);
|
|
|
|
/**
|
|
* The .style attribute (an interface that forwards to the actual
|
|
* style rules)
|
|
* @see nsGenericHTMLElement::GetStyle
|
|
*/
|
|
nsCOMPtr<nsICSSDeclaration> mStyle;
|
|
|
|
/**
|
|
* The .dataset attribute.
|
|
* @see nsGenericHTMLElement::GetDataset
|
|
*/
|
|
nsIDOMDOMStringMap* mDataset; // [Weak]
|
|
|
|
/**
|
|
* SMIL Overridde style rules (for SMIL animation of CSS properties)
|
|
* @see nsIContent::GetSMILOverrideStyle
|
|
*/
|
|
nsCOMPtr<nsICSSDeclaration> mSMILOverrideStyle;
|
|
|
|
/**
|
|
* Holds any SMIL override style rules for this element.
|
|
*/
|
|
nsRefPtr<mozilla::css::StyleRule> mSMILOverrideStyleRule;
|
|
|
|
/**
|
|
* An object implementing nsIDOMNamedNodeMap for this content (attributes)
|
|
* @see FragmentOrElement::GetAttributes
|
|
*/
|
|
nsRefPtr<nsDOMAttributeMap> mAttributeMap;
|
|
|
|
union {
|
|
/**
|
|
* The nearest enclosing content node with a binding that created us.
|
|
* @see FragmentOrElement::GetBindingParent
|
|
*/
|
|
nsIContent* mBindingParent; // [Weak]
|
|
|
|
/**
|
|
* The controllers of the XUL Element.
|
|
*/
|
|
nsIControllers* mControllers; // [OWNER]
|
|
};
|
|
|
|
/**
|
|
* An object implementing the .children property for this element.
|
|
*/
|
|
nsRefPtr<nsContentList> mChildrenList;
|
|
|
|
/**
|
|
* An object implementing the .classList property for this element.
|
|
*/
|
|
nsRefPtr<nsDOMTokenList> mClassList;
|
|
};
|
|
|
|
protected:
|
|
// Override from nsINode
|
|
virtual nsINode::nsSlots* CreateSlots();
|
|
|
|
nsDOMSlots *DOMSlots()
|
|
{
|
|
return static_cast<nsDOMSlots*>(GetSlots());
|
|
}
|
|
|
|
nsDOMSlots *GetExistingDOMSlots() const
|
|
{
|
|
return static_cast<nsDOMSlots*>(GetExistingSlots());
|
|
}
|
|
|
|
void RegisterFreezableElement() {
|
|
OwnerDoc()->RegisterFreezableElement(this);
|
|
}
|
|
void UnregisterFreezableElement() {
|
|
OwnerDoc()->UnregisterFreezableElement(this);
|
|
}
|
|
|
|
#if 0
|
|
/**
|
|
* Add/remove this element to the documents id cache
|
|
*/
|
|
void AddToIdTable(nsIAtom* aId) {
|
|
NS_ASSERTION(HasID(), "Node doesn't have an ID?");
|
|
nsIDocument* doc = GetCurrentDoc();
|
|
if (doc && (!IsInAnonymousSubtree() || doc->IsXUL())) {
|
|
doc->AddToIdTable(this, aId);
|
|
}
|
|
}
|
|
void RemoveFromIdTable() {
|
|
if (HasID()) {
|
|
nsIDocument* doc = GetCurrentDoc();
|
|
if (doc) {
|
|
nsIAtom* id = DoGetID();
|
|
// id can be null during mutation events evilness. Also, XUL elements
|
|
// loose their proto attributes during cc-unlink, so this can happen
|
|
// during cc-unlink too.
|
|
if (id) {
|
|
doc->RemoveFromIdTable(this, DoGetID());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
/**
|
|
* Functions to carry out event default actions for links of all types
|
|
* (HTML links, XLinks, SVG "XLinks", etc.)
|
|
*/
|
|
|
|
/**
|
|
* Check that we meet the conditions to handle a link event
|
|
* and that we are actually on a link.
|
|
*
|
|
* @param aVisitor event visitor
|
|
* @param aURI the uri of the link, set only if the return value is true [OUT]
|
|
* @return true if we can handle the link event, false otherwise
|
|
*/
|
|
bool CheckHandleEventForLinksPrecondition(nsEventChainVisitor& aVisitor,
|
|
nsIURI** aURI) const;
|
|
|
|
/**
|
|
* Handle status bar updates before they can be cancelled.
|
|
*/
|
|
nsresult PreHandleEventForLinks(nsEventChainPreVisitor& aVisitor);
|
|
|
|
/**
|
|
* Handle default actions for link event if the event isn't consumed yet.
|
|
*/
|
|
nsresult PostHandleEventForLinks(nsEventChainPostVisitor& aVisitor);
|
|
|
|
/**
|
|
* Get the target of this link element. Consumers should established that
|
|
* this element is a link (probably using IsLink) before calling this
|
|
* function (or else why call it?)
|
|
*
|
|
* Note: for HTML this gets the value of the 'target' attribute; for XLink
|
|
* this gets the value of the xlink:_moz_target attribute, or failing that,
|
|
* the value of xlink:show, converted to a suitably equivalent named target
|
|
* (e.g. _blank).
|
|
*/
|
|
virtual void GetLinkTarget(nsAString& aTarget);
|
|
|
|
friend class ::ContentUnbinder;
|
|
/**
|
|
* Array containing all attributes and children for this element
|
|
*/
|
|
nsAttrAndChildArray mAttrsAndChildren;
|
|
|
|
private:
|
|
/**
|
|
* Get this element's client area rect in app units.
|
|
* @return the frame's client area
|
|
*/
|
|
#if 0
|
|
nsRect GetClientAreaRect();
|
|
|
|
nsIScrollableFrame* GetScrollFrame(nsIFrame **aStyledFrame = nullptr);
|
|
#endif
|
|
|
|
protected:
|
|
nsContentList* GetChildrenList();
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
/**
|
|
* Macros to implement Clone(). _elementName is the class for which to implement
|
|
* Clone.
|
|
*/
|
|
#define NS_IMPL_ELEMENT_CLONE(_elementName) \
|
|
nsresult \
|
|
_elementName::Clone(nsINodeInfo *aNodeInfo, nsINode **aResult) const \
|
|
{ \
|
|
*aResult = nullptr; \
|
|
nsCOMPtr<nsINodeInfo> ni = aNodeInfo; \
|
|
_elementName *it = new _elementName(ni.forget()); \
|
|
if (!it) { \
|
|
return NS_ERROR_OUT_OF_MEMORY; \
|
|
} \
|
|
\
|
|
nsCOMPtr<nsINode> kungFuDeathGrip = it; \
|
|
nsresult rv = const_cast<_elementName*>(this)->CopyInnerTo(it); \
|
|
if (NS_SUCCEEDED(rv)) { \
|
|
kungFuDeathGrip.swap(*aResult); \
|
|
} \
|
|
\
|
|
return rv; \
|
|
}
|
|
|
|
#define NS_IMPL_ELEMENT_CLONE_WITH_INIT(_elementName) \
|
|
nsresult \
|
|
_elementName::Clone(nsINodeInfo *aNodeInfo, nsINode **aResult) const \
|
|
{ \
|
|
*aResult = nullptr; \
|
|
nsCOMPtr<nsINodeInfo> ni = aNodeInfo; \
|
|
_elementName *it = new _elementName(ni.forget()); \
|
|
if (!it) { \
|
|
return NS_ERROR_OUT_OF_MEMORY; \
|
|
} \
|
|
\
|
|
nsCOMPtr<nsINode> kungFuDeathGrip = it; \
|
|
nsresult rv = it->Init(); \
|
|
nsresult rv2 = const_cast<_elementName*>(this)->CopyInnerTo(it); \
|
|
if (NS_FAILED(rv2)) { \
|
|
rv = rv2; \
|
|
} \
|
|
if (NS_SUCCEEDED(rv)) { \
|
|
kungFuDeathGrip.swap(*aResult); \
|
|
} \
|
|
\
|
|
return rv; \
|
|
}
|
|
|
|
#define DOMCI_NODE_DATA(_interface, _class) \
|
|
DOMCI_DATA(_interface, _class) \
|
|
nsXPCClassInfo* _class::GetClassInfo() \
|
|
{ \
|
|
return static_cast<nsXPCClassInfo*>( \
|
|
NS_GetDOMClassInfoInstance(eDOMClassInfo_##_interface##_id)); \
|
|
}
|
|
|
|
/**
|
|
* A macro to implement the getter and setter for a given string
|
|
* valued content property. The method uses the generic GetAttr and
|
|
* SetAttr methods. We use the 5-argument form of SetAttr, because
|
|
* some consumers only implement that one, hiding superclass
|
|
* 4-argument forms.
|
|
*/
|
|
#define NS_IMPL_STRING_ATTR(_class, _method, _atom) \
|
|
NS_IMETHODIMP \
|
|
_class::Get##_method(nsAString& aValue) \
|
|
{ \
|
|
GetAttr(kNameSpaceID_None, nsGkAtoms::_atom, aValue); \
|
|
return NS_OK; \
|
|
} \
|
|
NS_IMETHODIMP \
|
|
_class::Set##_method(const nsAString& aValue) \
|
|
{ \
|
|
return SetAttr(kNameSpaceID_None, nsGkAtoms::_atom, nullptr, aValue, true); \
|
|
}
|
|
|
|
/**
|
|
* Tearoff class to implement nsITouchEventReceiver
|
|
*/
|
|
class nsTouchEventReceiverTearoff MOZ_FINAL : public nsITouchEventReceiver
|
|
{
|
|
public:
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_FORWARD_NSITOUCHEVENTRECEIVER(mElement->)
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(nsTouchEventReceiverTearoff)
|
|
|
|
nsTouchEventReceiverTearoff(mozilla::dom::FragmentOrElement *aElement) : mElement(aElement)
|
|
{
|
|
}
|
|
|
|
private:
|
|
nsRefPtr<mozilla::dom::FragmentOrElement> mElement;
|
|
};
|
|
|
|
/**
|
|
* Tearoff class to implement nsIInlineEventHandlers
|
|
*/
|
|
class nsInlineEventHandlersTearoff MOZ_FINAL : public nsIInlineEventHandlers
|
|
{
|
|
public:
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_FORWARD_NSIINLINEEVENTHANDLERS(mElement->)
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(nsInlineEventHandlersTearoff)
|
|
|
|
nsInlineEventHandlersTearoff(mozilla::dom::FragmentOrElement *aElement) : mElement(aElement)
|
|
{
|
|
}
|
|
|
|
private:
|
|
nsRefPtr<mozilla::dom::FragmentOrElement> mElement;
|
|
};
|
|
|
|
#define NS_ELEMENT_INTERFACE_TABLE_TO_MAP_SEGUE \
|
|
rv = FragmentOrElement::QueryInterface(aIID, aInstancePtr); \
|
|
if (NS_SUCCEEDED(rv)) \
|
|
return rv; \
|
|
\
|
|
NS_OFFSET_AND_INTERFACE_TABLE_TO_MAP_SEGUE
|
|
|
|
#define NS_ELEMENT_INTERFACE_MAP_END \
|
|
{ \
|
|
return PostQueryInterface(aIID, aInstancePtr); \
|
|
} \
|
|
\
|
|
NS_ADDREF(foundInterface); \
|
|
\
|
|
*aInstancePtr = foundInterface; \
|
|
\
|
|
return NS_OK; \
|
|
}
|
|
|
|
#endif /* FragmentOrElement_h___ */
|