2013-01-08 12:45:05 -08:00
|
|
|
/* -*- 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/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/CDATASection.h"
|
2013-01-08 12:45:06 -08:00
|
|
|
#include "mozilla/dom/CDATASectionBinding.h"
|
2014-03-27 13:38:33 -07:00
|
|
|
#include "mozilla/IntegerPrintfMacros.h"
|
2013-01-08 12:45:05 -08:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
CDATASection::~CDATASection()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-04-27 00:06:00 -07:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED(CDATASection, nsGenericDOMDataNode, nsIDOMNode,
|
|
|
|
nsIDOMCharacterData, nsIDOMText,
|
|
|
|
nsIDOMCDATASection)
|
2013-01-08 12:45:05 -08:00
|
|
|
|
2013-01-08 12:45:06 -08:00
|
|
|
JSObject*
|
2014-04-08 15:27:17 -07:00
|
|
|
CDATASection::WrapNode(JSContext *aCx)
|
2013-01-08 12:45:06 -08:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 15:27:17 -07:00
|
|
|
return CDATASectionBinding::Wrap(aCx, this);
|
2013-01-08 12:45:06 -08:00
|
|
|
}
|
|
|
|
|
2013-01-08 12:45:05 -08:00
|
|
|
bool
|
|
|
|
CDATASection::IsNodeOfType(uint32_t aFlags) const
|
|
|
|
{
|
|
|
|
return !(aFlags & ~(eCONTENT | eTEXT | eDATA_NODE));
|
|
|
|
}
|
|
|
|
|
|
|
|
nsGenericDOMDataNode*
|
2014-06-19 19:01:40 -07:00
|
|
|
CDATASection::CloneDataNode(mozilla::dom::NodeInfo *aNodeInfo, bool aCloneText) const
|
2013-01-08 12:45:05 -08:00
|
|
|
{
|
2014-06-19 19:01:40 -07:00
|
|
|
nsRefPtr<mozilla::dom::NodeInfo> ni = aNodeInfo;
|
2013-01-08 12:45:05 -08:00
|
|
|
CDATASection *it = new CDATASection(ni.forget());
|
|
|
|
if (it && aCloneText) {
|
|
|
|
it->mText = mText;
|
|
|
|
}
|
|
|
|
|
|
|
|
return it;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
void
|
|
|
|
CDATASection::List(FILE* out, int32_t aIndent) const
|
|
|
|
{
|
|
|
|
int32_t index;
|
|
|
|
for (index = aIndent; --index >= 0; ) fputs(" ", out);
|
|
|
|
|
2014-03-27 13:38:33 -07:00
|
|
|
fprintf(out, "CDATASection refcount=%" PRIuPTR "<", mRefCnt.get());
|
2013-01-08 12:45:05 -08:00
|
|
|
|
|
|
|
nsAutoString tmp;
|
|
|
|
ToCString(tmp, 0, mText.GetLength());
|
|
|
|
fputs(NS_LossyConvertUTF16toASCII(tmp).get(), out);
|
|
|
|
|
|
|
|
fputs(">\n", out);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CDATASection::DumpContent(FILE* out, int32_t aIndent,
|
|
|
|
bool aDumpAll) const {
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
} // namespace dom
|