2015-05-03 22:32:37 +03: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: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2008-10-15 13:40:28 +04:00
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
#ifndef nsTextNode_h
|
|
|
|
#define nsTextNode_h
|
|
|
|
|
2008-10-15 13:40:28 +04:00
|
|
|
/*
|
2018-03-19 22:15:39 +03:00
|
|
|
* Implementation of DOM Core's Text node.
|
2008-10-15 13:40:28 +04:00
|
|
|
*/
|
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-02-22 18:56:29 +04:00
|
|
|
#include "mozilla/dom/Text.h"
|
2013-01-04 21:02:14 +04:00
|
|
|
#include "nsDebug.h"
|
2011-08-11 17:29:50 +04:00
|
|
|
|
2013-04-04 16:01:08 +04:00
|
|
|
class nsNodeInfoManager;
|
|
|
|
|
2008-10-15 13:40:28 +04:00
|
|
|
/**
|
|
|
|
* Class used to implement DOM text nodes
|
|
|
|
*/
|
2018-05-30 05:58:51 +03:00
|
|
|
class nsTextNode : public mozilla::dom::Text {
|
2013-04-04 16:01:08 +04:00
|
|
|
private:
|
|
|
|
void Init() {
|
2018-01-30 07:10:53 +03:00
|
|
|
MOZ_ASSERT(mNodeInfo->NodeType() == TEXT_NODE, "Bad NodeType in aNodeInfo");
|
2013-01-04 21:02:14 +04:00
|
|
|
}
|
|
|
|
|
2013-04-04 16:01:08 +04:00
|
|
|
public:
|
2018-09-21 23:45:49 +03:00
|
|
|
explicit nsTextNode(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
|
|
|
|
: mozilla::dom::Text(std::move(aNodeInfo)) {
|
2013-04-04 16:01:08 +04:00
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit nsTextNode(nsNodeInfoManager* aNodeInfoManager)
|
2013-04-04 16:01:08 +04:00
|
|
|
: mozilla::dom::Text(aNodeInfoManager->GetTextNodeInfo()) {
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
2008-10-15 13:40:28 +04:00
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
2011-06-14 11:56:48 +04:00
|
|
|
// nsINode
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool IsNodeOfType(uint32_t aFlags) const override;
|
2011-06-14 11:56:48 +04:00
|
|
|
|
2018-03-19 22:50:16 +03:00
|
|
|
virtual already_AddRefed<CharacterData> CloneDataNode(
|
|
|
|
mozilla::dom::NodeInfo* aNodeInfo, bool aCloneText) const override;
|
2011-06-14 11:56:48 +04:00
|
|
|
|
2019-01-02 16:05:23 +03:00
|
|
|
virtual nsresult BindToTree(Document* aDocument, nsIContent* aParent,
|
2018-07-31 21:18:38 +03:00
|
|
|
nsIContent* aBindingParent) override;
|
2012-11-21 14:13:57 +04:00
|
|
|
virtual void UnbindFromTree(bool aDeep = true,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aNullParent = true) override;
|
2012-11-21 14:13:57 +04:00
|
|
|
|
2014-01-04 19:02:17 +04:00
|
|
|
nsresult AppendTextForNormalize(const char16_t* aBuffer, uint32_t aLength,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aNotify, nsIContent* aNextSibling);
|
2011-08-16 04:55:20 +04:00
|
|
|
|
2008-10-15 13:40:28 +04:00
|
|
|
#ifdef DEBUG
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void List(FILE* out, int32_t aIndent) const override;
|
|
|
|
virtual void DumpContent(FILE* out, int32_t aIndent,
|
|
|
|
bool aDumpAll) const override;
|
2008-10-15 13:40:28 +04:00
|
|
|
#endif
|
2013-01-04 21:02:14 +04:00
|
|
|
|
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~nsTextNode();
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2008-10-15 13:40:28 +04:00
|
|
|
};
|
2013-01-04 21:02:14 +04:00
|
|
|
|
|
|
|
#endif // nsTextNode_h
|