2009-06-28 15:44:22 -07:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Henri Sivonen
|
|
|
|
* Copyright (c) 2007-2009 Mozilla Foundation
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* THIS IS A GENERATED FILE. PLEASE DO NOT EDIT.
|
|
|
|
* Please edit StackNode.java instead and regenerate.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define nsHtml5StackNode_cpp__
|
|
|
|
|
|
|
|
#include "prtypes.h"
|
|
|
|
#include "nsIAtom.h"
|
2009-09-21 04:43:43 -07:00
|
|
|
#include "nsHtml5AtomTable.h"
|
2009-06-28 15:44:22 -07:00
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsTraceRefcnt.h"
|
|
|
|
#include "jArray.h"
|
|
|
|
#include "nsHtml5DocumentMode.h"
|
|
|
|
#include "nsHtml5ArrayCopy.h"
|
|
|
|
#include "nsHtml5NamedCharacters.h"
|
2010-06-24 01:54:33 -07:00
|
|
|
#include "nsHtml5NamedCharactersAccel.h"
|
2009-06-28 15:44:22 -07:00
|
|
|
#include "nsHtml5Atoms.h"
|
|
|
|
#include "nsHtml5ByteReadable.h"
|
2009-09-18 02:21:47 -07:00
|
|
|
#include "nsIUnicodeDecoder.h"
|
2009-09-21 06:18:20 -07:00
|
|
|
#include "nsAHtml5TreeBuilderState.h"
|
2010-04-19 06:25:13 -07:00
|
|
|
#include "nsHtml5Macros.h"
|
2009-06-28 15:44:22 -07:00
|
|
|
|
|
|
|
#include "nsHtml5Tokenizer.h"
|
|
|
|
#include "nsHtml5TreeBuilder.h"
|
|
|
|
#include "nsHtml5MetaScanner.h"
|
|
|
|
#include "nsHtml5AttributeName.h"
|
|
|
|
#include "nsHtml5ElementName.h"
|
|
|
|
#include "nsHtml5HtmlAttributes.h"
|
|
|
|
#include "nsHtml5UTF16Buffer.h"
|
|
|
|
#include "nsHtml5StateSnapshot.h"
|
|
|
|
#include "nsHtml5Portability.h"
|
|
|
|
|
|
|
|
#include "nsHtml5StackNode.h"
|
|
|
|
|
2010-12-09 01:27:57 -08:00
|
|
|
PRInt32
|
|
|
|
nsHtml5StackNode::getGroup()
|
|
|
|
{
|
|
|
|
return flags & NS_HTML5ELEMENT_NAME_GROUP_MASK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsHtml5StackNode::isScoping()
|
|
|
|
{
|
|
|
|
return (flags & NS_HTML5ELEMENT_NAME_SCOPING);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsHtml5StackNode::isSpecial()
|
|
|
|
{
|
|
|
|
return (flags & NS_HTML5ELEMENT_NAME_SPECIAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsHtml5StackNode::isFosterParenting()
|
|
|
|
{
|
|
|
|
return (flags & NS_HTML5ELEMENT_NAME_FOSTER_PARENTING);
|
|
|
|
}
|
|
|
|
|
2010-12-09 01:27:58 -08:00
|
|
|
PRBool
|
|
|
|
nsHtml5StackNode::isHtmlIntegrationPoint()
|
|
|
|
{
|
|
|
|
return (flags & NS_HTML5ELEMENT_NAME_HTML_INTEGRATION_POINT);
|
|
|
|
}
|
|
|
|
|
2009-06-28 15:44:22 -07:00
|
|
|
|
2010-12-09 01:27:57 -08:00
|
|
|
nsHtml5StackNode::nsHtml5StackNode(PRInt32 flags, PRInt32 ns, nsIAtom* name, nsIContent** node, nsIAtom* popName, nsHtml5HtmlAttributes* attributes)
|
|
|
|
: flags(flags),
|
2009-06-28 15:44:22 -07:00
|
|
|
name(name),
|
|
|
|
popName(popName),
|
|
|
|
ns(ns),
|
|
|
|
node(node),
|
2009-09-21 00:00:10 -07:00
|
|
|
attributes(attributes),
|
2009-06-28 15:44:22 -07:00
|
|
|
refcount(1)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsHtml5StackNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-09 01:27:58 -08:00
|
|
|
nsHtml5StackNode::nsHtml5StackNode(nsHtml5ElementName* elementName, nsIContent** node)
|
2010-12-09 01:27:57 -08:00
|
|
|
: flags(elementName->getFlags()),
|
2009-06-28 15:44:22 -07:00
|
|
|
name(elementName->name),
|
|
|
|
popName(elementName->name),
|
2010-12-09 01:27:58 -08:00
|
|
|
ns(kNameSpaceID_XHTML),
|
2009-06-28 15:44:22 -07:00
|
|
|
node(node),
|
2009-09-21 00:00:10 -07:00
|
|
|
attributes(nsnull),
|
|
|
|
refcount(1)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsHtml5StackNode);
|
2010-12-09 01:27:58 -08:00
|
|
|
|
2009-09-21 00:00:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-09 01:27:58 -08:00
|
|
|
nsHtml5StackNode::nsHtml5StackNode(nsHtml5ElementName* elementName, nsIContent** node, nsHtml5HtmlAttributes* attributes)
|
2010-12-09 01:27:57 -08:00
|
|
|
: flags(elementName->getFlags()),
|
2009-09-21 00:00:10 -07:00
|
|
|
name(elementName->name),
|
|
|
|
popName(elementName->name),
|
2010-12-09 01:27:58 -08:00
|
|
|
ns(kNameSpaceID_XHTML),
|
2009-09-21 00:00:10 -07:00
|
|
|
node(node),
|
|
|
|
attributes(attributes),
|
2009-06-28 15:44:22 -07:00
|
|
|
refcount(1)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsHtml5StackNode);
|
2010-12-09 01:27:58 -08:00
|
|
|
|
2009-06-28 15:44:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-09 01:27:58 -08:00
|
|
|
nsHtml5StackNode::nsHtml5StackNode(nsHtml5ElementName* elementName, nsIContent** node, nsIAtom* popName)
|
2010-12-09 01:27:57 -08:00
|
|
|
: flags(elementName->getFlags()),
|
2009-06-28 15:44:22 -07:00
|
|
|
name(elementName->name),
|
|
|
|
popName(popName),
|
2010-12-09 01:27:58 -08:00
|
|
|
ns(kNameSpaceID_XHTML),
|
2009-06-28 15:44:22 -07:00
|
|
|
node(node),
|
2009-09-21 00:00:10 -07:00
|
|
|
attributes(nsnull),
|
2009-06-28 15:44:22 -07:00
|
|
|
refcount(1)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsHtml5StackNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-09 01:27:58 -08:00
|
|
|
nsHtml5StackNode::nsHtml5StackNode(nsHtml5ElementName* elementName, nsIAtom* popName, nsIContent** node)
|
|
|
|
: flags(prepareSvgFlags(elementName->getFlags())),
|
2009-06-28 15:44:22 -07:00
|
|
|
name(elementName->name),
|
|
|
|
popName(popName),
|
2010-12-09 01:27:58 -08:00
|
|
|
ns(kNameSpaceID_SVG),
|
|
|
|
node(node),
|
|
|
|
attributes(nsnull),
|
|
|
|
refcount(1)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsHtml5StackNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsHtml5StackNode::nsHtml5StackNode(nsHtml5ElementName* elementName, nsIContent** node, nsIAtom* popName, PRBool markAsIntegrationPoint)
|
2010-12-09 01:27:58 -08:00
|
|
|
: flags(prepareMathFlags(elementName->getFlags(), markAsIntegrationPoint)),
|
2010-12-09 01:27:58 -08:00
|
|
|
name(elementName->name),
|
|
|
|
popName(popName),
|
|
|
|
ns(kNameSpaceID_MathML),
|
2009-06-28 15:44:22 -07:00
|
|
|
node(node),
|
2009-09-21 00:00:10 -07:00
|
|
|
attributes(nsnull),
|
2009-06-28 15:44:22 -07:00
|
|
|
refcount(1)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsHtml5StackNode);
|
2010-12-09 01:27:58 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32
|
|
|
|
nsHtml5StackNode::prepareSvgFlags(PRInt32 flags)
|
|
|
|
{
|
|
|
|
flags &= ~(NS_HTML5ELEMENT_NAME_FOSTER_PARENTING | NS_HTML5ELEMENT_NAME_SCOPING | NS_HTML5ELEMENT_NAME_SPECIAL);
|
|
|
|
if ((flags & NS_HTML5ELEMENT_NAME_SCOPING_AS_SVG)) {
|
|
|
|
flags |= (NS_HTML5ELEMENT_NAME_SCOPING | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_HTML_INTEGRATION_POINT);
|
|
|
|
}
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32
|
2010-12-09 01:27:58 -08:00
|
|
|
nsHtml5StackNode::prepareMathFlags(PRInt32 flags, PRBool markAsIntegrationPoint)
|
2010-12-09 01:27:58 -08:00
|
|
|
{
|
|
|
|
flags &= ~(NS_HTML5ELEMENT_NAME_FOSTER_PARENTING | NS_HTML5ELEMENT_NAME_SCOPING | NS_HTML5ELEMENT_NAME_SPECIAL);
|
|
|
|
if ((flags & NS_HTML5ELEMENT_NAME_SCOPING_AS_MATHML)) {
|
|
|
|
flags |= (NS_HTML5ELEMENT_NAME_SCOPING | NS_HTML5ELEMENT_NAME_SPECIAL);
|
|
|
|
}
|
2010-12-09 01:27:58 -08:00
|
|
|
if (markAsIntegrationPoint) {
|
|
|
|
flags |= NS_HTML5ELEMENT_NAME_HTML_INTEGRATION_POINT;
|
|
|
|
}
|
2010-12-09 01:27:58 -08:00
|
|
|
return flags;
|
2009-06-28 15:44:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsHtml5StackNode::~nsHtml5StackNode()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(nsHtml5StackNode);
|
2009-09-21 00:00:10 -07:00
|
|
|
delete attributes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsHtml5StackNode::dropAttributes()
|
|
|
|
{
|
|
|
|
attributes = nsnull;
|
2009-06-28 15:44:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsHtml5StackNode::retain()
|
|
|
|
{
|
|
|
|
refcount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsHtml5StackNode::release()
|
|
|
|
{
|
|
|
|
refcount--;
|
|
|
|
if (!refcount) {
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsHtml5StackNode::initializeStatics()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsHtml5StackNode::releaseStatics()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|