2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-11-14 18:05:41 +00:00
|
|
|
* 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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_DocumentFragment_h__
|
|
|
|
#define mozilla_dom_DocumentFragment_h__
|
|
|
|
|
2013-05-29 20:43:41 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2016-07-22 21:11:41 +00:00
|
|
|
#include "mozilla/dom/BorrowedAttrInfo.h"
|
2012-11-14 18:05:41 +00:00
|
|
|
#include "mozilla/dom/FragmentOrElement.h"
|
|
|
|
#include "nsIDOMDocumentFragment.h"
|
|
|
|
|
|
|
|
class nsIAtom;
|
|
|
|
class nsAString;
|
|
|
|
class nsIDocument;
|
|
|
|
class nsIContent;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class Element;
|
|
|
|
|
2013-12-02 10:26:11 +00:00
|
|
|
class DocumentFragment : public FragmentOrElement,
|
|
|
|
public nsIDOMDocumentFragment
|
2012-11-14 18:05:41 +00:00
|
|
|
{
|
2013-04-10 14:15:54 +00:00
|
|
|
private:
|
|
|
|
void Init()
|
|
|
|
{
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(mNodeInfo->NodeType() == nsIDOMNode::DOCUMENT_FRAGMENT_NODE &&
|
|
|
|
mNodeInfo->Equals(nsGkAtoms::documentFragmentNodeName,
|
|
|
|
kNameSpaceID_None),
|
|
|
|
"Bad NodeType in aNodeInfo");
|
2013-04-10 14:15:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2013-07-08 12:09:18 +00:00
|
|
|
using FragmentOrElement::GetFirstChild;
|
|
|
|
using nsINode::QuerySelector;
|
|
|
|
using nsINode::QuerySelectorAll;
|
2013-11-01 19:39:25 +00:00
|
|
|
// Make sure bindings can see our superclass' protected GetElementById method.
|
|
|
|
using nsINode::GetElementById;
|
2013-07-08 12:09:18 +00:00
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// interface nsIDOMNode
|
|
|
|
NS_FORWARD_NSIDOMNODE_TO_NSINODE
|
|
|
|
|
|
|
|
// interface nsIDOMDocumentFragment
|
|
|
|
NS_DECL_NSIDOMDOCUMENTFRAGMENT
|
|
|
|
|
2014-09-02 00:49:25 +00:00
|
|
|
explicit DocumentFragment(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2013-04-10 14:15:54 +00:00
|
|
|
: FragmentOrElement(aNodeInfo), mHost(nullptr)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
2014-09-02 00:49:25 +00:00
|
|
|
explicit DocumentFragment(nsNodeInfoManager* aNodeInfoManager)
|
2013-04-10 14:15:54 +00:00
|
|
|
: FragmentOrElement(aNodeInfoManager->GetNodeInfo(
|
|
|
|
nsGkAtoms::documentFragmentNodeName,
|
|
|
|
nullptr, kNameSpaceID_None,
|
|
|
|
nsIDOMNode::DOCUMENT_FRAGMENT_NODE)),
|
|
|
|
mHost(nullptr)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2012-12-25 03:35:19 +00:00
|
|
|
|
2012-11-14 18:05:41 +00:00
|
|
|
// nsIContent
|
|
|
|
nsresult SetAttr(int32_t aNameSpaceID, nsIAtom* aName,
|
|
|
|
const nsAString& aValue, bool aNotify)
|
|
|
|
{
|
|
|
|
return SetAttr(aNameSpaceID, aName, nullptr, aValue, aNotify);
|
|
|
|
}
|
|
|
|
virtual nsresult SetAttr(int32_t aNameSpaceID, nsIAtom* aName,
|
|
|
|
nsIAtom* aPrefix, const nsAString& aValue,
|
2015-03-21 16:28:04 +00:00
|
|
|
bool aNotify) override
|
2012-11-14 18:05:41 +00:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2016-07-22 03:10:23 +00:00
|
|
|
virtual nsresult UnsetAttr(int32_t aNameSpaceID, nsIAtom* aAttribute,
|
2015-03-21 16:28:04 +00:00
|
|
|
bool aNotify) override
|
2012-11-14 18:05:41 +00:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual const nsAttrName* GetAttrNameAt(uint32_t aIndex) const override
|
2012-11-14 18:05:41 +00:00
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
2016-07-22 21:11:41 +00:00
|
|
|
virtual BorrowedAttrInfo GetAttrInfoAt(uint32_t aIndex) const override
|
2016-07-22 03:10:23 +00:00
|
|
|
{
|
2016-07-22 21:11:41 +00:00
|
|
|
return BorrowedAttrInfo(nullptr, nullptr);
|
2016-07-22 03:10:23 +00:00
|
|
|
}
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual uint32_t GetAttrCount() const override
|
2012-11-14 18:05:41 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool IsNodeOfType(uint32_t aFlags) const override;
|
2012-11-14 18:05:41 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsIDOMNode* AsDOMNode() override { return this; }
|
2012-11-14 18:05:41 +00:00
|
|
|
|
|
|
|
virtual nsresult BindToTree(nsIDocument* aDocument, nsIContent* aParent,
|
|
|
|
nsIContent* aBindingParent,
|
2015-03-21 16:28:04 +00:00
|
|
|
bool aCompileEventHandlers) override
|
2012-11-14 18:05:41 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(false, "Trying to bind a fragment to a tree");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void UnbindFromTree(bool aDeep, bool aNullParent) override
|
2012-11-14 18:05:41 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(false, "Trying to unbind a fragment from a tree");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual Element* GetNameSpaceElement() override
|
2012-11-14 18:05:41 +00:00
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2013-12-02 10:26:11 +00:00
|
|
|
nsIContent* GetHost() const
|
2013-03-26 07:15:23 +00:00
|
|
|
{
|
|
|
|
return mHost;
|
|
|
|
}
|
|
|
|
|
2013-12-02 10:26:11 +00:00
|
|
|
void SetHost(nsIContent* aHost)
|
2013-03-26 07:15:23 +00:00
|
|
|
{
|
|
|
|
mHost = aHost;
|
|
|
|
}
|
|
|
|
|
2013-05-23 10:59:00 +00:00
|
|
|
static already_AddRefed<DocumentFragment>
|
|
|
|
Constructor(const GlobalObject& aGlobal, ErrorResult& aRv);
|
|
|
|
|
2012-11-14 18:05:41 +00:00
|
|
|
#ifdef DEBUG
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void List(FILE* out, int32_t aIndent) const override;
|
|
|
|
virtual void DumpContent(FILE* out, int32_t aIndent, bool aDumpAll) const override;
|
2012-11-14 18:05:41 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
protected:
|
2014-07-08 21:23:16 +00:00
|
|
|
virtual ~DocumentFragment()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override;
|
2013-12-02 10:26:11 +00:00
|
|
|
nsIContent* mHost; // Weak
|
2012-11-14 18:05:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
|
|
|
|
#endif // mozilla_dom_DocumentFragment_h__
|