2009-06-28 15:44:22 -07:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Henri Sivonen
|
|
|
|
* Copyright (c) 2008-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 HtmlAttributes.java instead and regenerate.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef nsHtml5HtmlAttributes_h__
|
|
|
|
#define nsHtml5HtmlAttributes_h__
|
|
|
|
|
|
|
|
#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"
|
|
|
|
#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"
|
2009-06-28 15:44:22 -07:00
|
|
|
|
2009-09-18 02:21:47 -07:00
|
|
|
class nsHtml5StreamParser;
|
2009-09-21 06:18:20 -07:00
|
|
|
class nsHtml5SpeculativeLoader;
|
2009-06-28 15:44:22 -07:00
|
|
|
|
|
|
|
class nsHtml5Tokenizer;
|
|
|
|
class nsHtml5TreeBuilder;
|
|
|
|
class nsHtml5MetaScanner;
|
|
|
|
class nsHtml5AttributeName;
|
|
|
|
class nsHtml5ElementName;
|
|
|
|
class nsHtml5UTF16Buffer;
|
|
|
|
class nsHtml5StateSnapshot;
|
|
|
|
class nsHtml5Portability;
|
|
|
|
|
|
|
|
|
|
|
|
class nsHtml5HtmlAttributes
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static nsHtml5HtmlAttributes* EMPTY_ATTRIBUTES;
|
|
|
|
private:
|
|
|
|
PRInt32 mode;
|
|
|
|
PRInt32 length;
|
|
|
|
jArray<nsHtml5AttributeName*,PRInt32> names;
|
|
|
|
jArray<nsString*,PRInt32> values;
|
|
|
|
public:
|
|
|
|
nsHtml5HtmlAttributes(PRInt32 mode);
|
|
|
|
~nsHtml5HtmlAttributes();
|
|
|
|
PRInt32 getIndex(nsHtml5AttributeName* name);
|
|
|
|
PRInt32 getLength();
|
|
|
|
nsIAtom* getLocalName(PRInt32 index);
|
|
|
|
nsHtml5AttributeName* getAttributeName(PRInt32 index);
|
|
|
|
PRInt32 getURI(PRInt32 index);
|
|
|
|
nsIAtom* getPrefix(PRInt32 index);
|
|
|
|
nsString* getValue(PRInt32 index);
|
|
|
|
nsString* getValue(nsHtml5AttributeName* name);
|
|
|
|
void addAttribute(nsHtml5AttributeName* name, nsString* value);
|
|
|
|
void clear(PRInt32 m);
|
|
|
|
void releaseValue(PRInt32 i);
|
|
|
|
void clearWithoutReleasingContents();
|
|
|
|
PRBool contains(nsHtml5AttributeName* name);
|
|
|
|
void adjustForMath();
|
|
|
|
void adjustForSvg();
|
2009-09-21 06:18:20 -07:00
|
|
|
nsHtml5HtmlAttributes* cloneAttributes(nsHtml5AtomTable* interner);
|
2009-06-28 15:44:22 -07:00
|
|
|
static void initializeStatics();
|
|
|
|
static void releaseStatics();
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef nsHtml5HtmlAttributes_cpp__
|
|
|
|
nsHtml5HtmlAttributes* nsHtml5HtmlAttributes::EMPTY_ATTRIBUTES = nsnull;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|