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-11-05 20:58:04 +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/. */
|
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
#ifndef mozilla_dom_Comment_h
|
|
|
|
#define mozilla_dom_Comment_h
|
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2018-03-19 22:18:07 +03:00
|
|
|
#include "mozilla/dom/CharacterData.h"
|
2012-11-05 20:58:04 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2018-05-30 05:58:51 +03:00
|
|
|
class Comment final : public CharacterData {
|
2013-04-04 16:02:22 +04:00
|
|
|
private:
|
|
|
|
void Init() {
|
2018-01-30 07:10:53 +03:00
|
|
|
MOZ_ASSERT(mNodeInfo->NodeType() == COMMENT_NODE,
|
2015-02-10 01:34:50 +03:00
|
|
|
"Bad NodeType in aNodeInfo");
|
2013-01-04 21:02:14 +04:00
|
|
|
}
|
2013-04-04 16:02:22 +04:00
|
|
|
|
2014-07-09 01:23:16 +04:00
|
|
|
virtual ~Comment();
|
|
|
|
|
2013-04-04 16:02:22 +04:00
|
|
|
public:
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit Comment(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
|
2018-09-21 23:45:49 +03:00
|
|
|
: CharacterData(std::move(aNodeInfo)) {
|
2013-04-04 16:02:22 +04:00
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit Comment(nsNodeInfoManager* aNodeInfoManager)
|
2018-03-19 22:18:06 +03:00
|
|
|
: CharacterData(aNodeInfoManager->GetCommentNodeInfo()) {
|
2013-04-04 16:02:22 +04:00
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
2018-04-15 15:58:49 +03:00
|
|
|
NS_IMPL_FROMNODE_HELPER(Comment, IsComment())
|
|
|
|
|
2012-11-05 20:58:04 +04:00
|
|
|
// nsISupports
|
2018-05-30 05:58:51 +03:00
|
|
|
NS_INLINE_DECL_REFCOUNTING_INHERITED(Comment, CharacterData)
|
2012-11-05 20:58:04 +04:00
|
|
|
|
2018-03-19 22:50:16 +03:00
|
|
|
virtual already_AddRefed<CharacterData> CloneDataNode(
|
|
|
|
mozilla::dom::NodeInfo* aNodeInfo, bool aCloneText) const override;
|
2012-11-05 20:58:04 +04:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void List(FILE* out, int32_t aIndent) const override;
|
2012-11-05 20:58:04 +04:00
|
|
|
virtual void DumpContent(FILE* out = stdout, int32_t aIndent = 0,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aDumpAll = true) const override {
|
2012-11-05 20:58:04 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2013-01-04 21:02:14 +04:00
|
|
|
|
2013-05-13 17:22:30 +04:00
|
|
|
static already_AddRefed<Comment> Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aData,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
protected:
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2012-11-05 20:58:04 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2013-01-04 21:02:14 +04:00
|
|
|
#endif // mozilla_dom_Comment_h
|