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
|
|
|
|
Bug 1555216 - Change the signature of BindToTree to be (BindContext&, nsINode& aParentNode). r=bzbarsky
BindContext was going to have way more information at first, but then I realized
that most of the things I wanted to know were basically a flag away using the
parent node.
Still I think it's worth it, now experimenting with BindToTree will only mean
adding a field to a struct that's included from a couple cpp files, instead of a
massive pain.
I also think this is clearer, and doing this highlights quite a few
inconsistencies in our code which I've left untouched, but commented with
FIXMEs.
Steps are:
$ for file in $(rg 'nsresult BindToTree\(' | cut -d : -f 1 | sort | uniq); do sed -i 's#nsresult BindToTree(Document\* aDocument, nsIContent\* aParent,#nsresult BindToTree(BindContext\&, nsINode\& aParent)#g' $file; done
$ for file in $(rg 'nsresult BindToTree\(' | cut -d : -f 1 | sort | uniq); do sed -i 's# nsIContent\* aBindingParent) override#override#g' $file; done
$ for file in $(rg '::BindToTree\(' | cut -d : -f 1 | sort | uniq); do sed -i 's#::BindToTree(Document\* aDocument, nsIContent\* aParent,#::BindToTree(BindContext\& aContext, nsINode\& aParent)#g' $file; done
$ for file in $(rg '::BindToTree\(' | cut -d : -f 1 | sort | uniq); do sed -i 's#nsIContent\* aBindingParent)##g' $file; done
$ for file in $(rg '::BindToTree\(' | cut -d : -f 1 | sort | uniq); do sed -i 's#::BindToTree(aDocument, aParent, aBindingParent)#::BindToTree(aContext, aParent)#g' $file; done
$ ./mach clang-format
Then manual fixups.
Depends on D32948
Differential Revision: https://phabricator.services.mozilla.com/D32949
2019-05-29 07:27:04 +03:00
|
|
|
virtual nsresult BindToTree(BindContext&, nsINode& aParent) override;
|
2019-05-29 01:47:08 +03:00
|
|
|
virtual void UnbindFromTree(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
|