parser/html/nsHtml5ElementName.cpp

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 /*
michael@0 2 * Copyright (c) 2008-2014 Mozilla Foundation
michael@0 3 *
michael@0 4 * Permission is hereby granted, free of charge, to any person obtaining a
michael@0 5 * copy of this software and associated documentation files (the "Software"),
michael@0 6 * to deal in the Software without restriction, including without limitation
michael@0 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
michael@0 8 * and/or sell copies of the Software, and to permit persons to whom the
michael@0 9 * Software is furnished to do so, subject to the following conditions:
michael@0 10 *
michael@0 11 * The above copyright notice and this permission notice shall be included in
michael@0 12 * all copies or substantial portions of the Software.
michael@0 13 *
michael@0 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
michael@0 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
michael@0 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
michael@0 17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
michael@0 18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
michael@0 19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
michael@0 20 * DEALINGS IN THE SOFTWARE.
michael@0 21 */
michael@0 22
michael@0 23 /*
michael@0 24 * THIS IS A GENERATED FILE. PLEASE DO NOT EDIT.
michael@0 25 * Please edit ElementName.java instead and regenerate.
michael@0 26 */
michael@0 27
michael@0 28 #define nsHtml5ElementName_cpp__
michael@0 29
michael@0 30 #include "nsIAtom.h"
michael@0 31 #include "nsHtml5AtomTable.h"
michael@0 32 #include "nsString.h"
michael@0 33 #include "nsNameSpaceManager.h"
michael@0 34 #include "nsIContent.h"
michael@0 35 #include "nsTraceRefcnt.h"
michael@0 36 #include "jArray.h"
michael@0 37 #include "nsHtml5ArrayCopy.h"
michael@0 38 #include "nsAHtml5TreeBuilderState.h"
michael@0 39 #include "nsHtml5Atoms.h"
michael@0 40 #include "nsHtml5ByteReadable.h"
michael@0 41 #include "nsIUnicodeDecoder.h"
michael@0 42 #include "nsHtml5Macros.h"
michael@0 43 #include "nsIContentHandle.h"
michael@0 44
michael@0 45 #include "nsHtml5Tokenizer.h"
michael@0 46 #include "nsHtml5TreeBuilder.h"
michael@0 47 #include "nsHtml5MetaScanner.h"
michael@0 48 #include "nsHtml5AttributeName.h"
michael@0 49 #include "nsHtml5HtmlAttributes.h"
michael@0 50 #include "nsHtml5StackNode.h"
michael@0 51 #include "nsHtml5UTF16Buffer.h"
michael@0 52 #include "nsHtml5StateSnapshot.h"
michael@0 53 #include "nsHtml5Portability.h"
michael@0 54
michael@0 55 #include "nsHtml5ElementName.h"
michael@0 56 #include "nsHtml5ReleasableElementName.h"
michael@0 57
michael@0 58 nsHtml5ElementName* nsHtml5ElementName::ELT_NULL_ELEMENT_NAME = nullptr;
michael@0 59 int32_t
michael@0 60 nsHtml5ElementName::getGroup()
michael@0 61 {
michael@0 62 return flags & NS_HTML5ELEMENT_NAME_GROUP_MASK;
michael@0 63 }
michael@0 64
michael@0 65 bool
michael@0 66 nsHtml5ElementName::isCustom()
michael@0 67 {
michael@0 68 return (flags & NS_HTML5ELEMENT_NAME_CUSTOM);
michael@0 69 }
michael@0 70
michael@0 71 nsHtml5ElementName*
michael@0 72 nsHtml5ElementName::elementNameByBuffer(char16_t* buf, int32_t offset, int32_t length, nsHtml5AtomTable* interner)
michael@0 73 {
michael@0 74 int32_t hash = nsHtml5ElementName::bufToHash(buf, length);
michael@0 75 int32_t index = nsHtml5ElementName::ELEMENT_HASHES.binarySearch(hash);
michael@0 76 if (index < 0) {
michael@0 77 return new nsHtml5ReleasableElementName(nsHtml5Portability::newLocalNameFromBuffer(buf, offset, length, interner));
michael@0 78 } else {
michael@0 79 nsHtml5ElementName* elementName = nsHtml5ElementName::ELEMENT_NAMES[index];
michael@0 80 nsIAtom* name = elementName->name;
michael@0 81 if (!nsHtml5Portability::localEqualsBuffer(name, buf, offset, length)) {
michael@0 82 return new nsHtml5ReleasableElementName(nsHtml5Portability::newLocalNameFromBuffer(buf, offset, length, interner));
michael@0 83 }
michael@0 84 return elementName;
michael@0 85 }
michael@0 86 }
michael@0 87
michael@0 88 int32_t
michael@0 89 nsHtml5ElementName::bufToHash(char16_t* buf, int32_t len)
michael@0 90 {
michael@0 91 int32_t hash = len;
michael@0 92 hash <<= 5;
michael@0 93 hash += buf[0] - 0x60;
michael@0 94 int32_t j = len;
michael@0 95 for (int32_t i = 0; i < 4 && j > 0; i++) {
michael@0 96 j--;
michael@0 97 hash <<= 5;
michael@0 98 hash += buf[j] - 0x60;
michael@0 99 }
michael@0 100 return hash;
michael@0 101 }
michael@0 102
michael@0 103
michael@0 104 nsHtml5ElementName::nsHtml5ElementName(nsIAtom* name, nsIAtom* camelCaseName, int32_t flags)
michael@0 105 : name(name),
michael@0 106 camelCaseName(camelCaseName),
michael@0 107 flags(flags)
michael@0 108 {
michael@0 109 MOZ_COUNT_CTOR(nsHtml5ElementName);
michael@0 110 }
michael@0 111
michael@0 112
michael@0 113 nsHtml5ElementName::nsHtml5ElementName(nsIAtom* name)
michael@0 114 : name(name),
michael@0 115 camelCaseName(name),
michael@0 116 flags(NS_HTML5TREE_BUILDER_OTHER | NS_HTML5ELEMENT_NAME_CUSTOM)
michael@0 117 {
michael@0 118 MOZ_COUNT_CTOR(nsHtml5ElementName);
michael@0 119 }
michael@0 120
michael@0 121 void
michael@0 122 nsHtml5ElementName::release()
michael@0 123 {
michael@0 124 }
michael@0 125
michael@0 126
michael@0 127 nsHtml5ElementName::~nsHtml5ElementName()
michael@0 128 {
michael@0 129 MOZ_COUNT_DTOR(nsHtml5ElementName);
michael@0 130 }
michael@0 131
michael@0 132 nsHtml5ElementName*
michael@0 133 nsHtml5ElementName::cloneElementName(nsHtml5AtomTable* interner)
michael@0 134 {
michael@0 135 return this;
michael@0 136 }
michael@0 137
michael@0 138 nsHtml5ElementName* nsHtml5ElementName::ELT_A = nullptr;
michael@0 139 nsHtml5ElementName* nsHtml5ElementName::ELT_B = nullptr;
michael@0 140 nsHtml5ElementName* nsHtml5ElementName::ELT_G = nullptr;
michael@0 141 nsHtml5ElementName* nsHtml5ElementName::ELT_I = nullptr;
michael@0 142 nsHtml5ElementName* nsHtml5ElementName::ELT_P = nullptr;
michael@0 143 nsHtml5ElementName* nsHtml5ElementName::ELT_Q = nullptr;
michael@0 144 nsHtml5ElementName* nsHtml5ElementName::ELT_S = nullptr;
michael@0 145 nsHtml5ElementName* nsHtml5ElementName::ELT_U = nullptr;
michael@0 146 nsHtml5ElementName* nsHtml5ElementName::ELT_BR = nullptr;
michael@0 147 nsHtml5ElementName* nsHtml5ElementName::ELT_CI = nullptr;
michael@0 148 nsHtml5ElementName* nsHtml5ElementName::ELT_CN = nullptr;
michael@0 149 nsHtml5ElementName* nsHtml5ElementName::ELT_DD = nullptr;
michael@0 150 nsHtml5ElementName* nsHtml5ElementName::ELT_DL = nullptr;
michael@0 151 nsHtml5ElementName* nsHtml5ElementName::ELT_DT = nullptr;
michael@0 152 nsHtml5ElementName* nsHtml5ElementName::ELT_EM = nullptr;
michael@0 153 nsHtml5ElementName* nsHtml5ElementName::ELT_EQ = nullptr;
michael@0 154 nsHtml5ElementName* nsHtml5ElementName::ELT_FN = nullptr;
michael@0 155 nsHtml5ElementName* nsHtml5ElementName::ELT_H1 = nullptr;
michael@0 156 nsHtml5ElementName* nsHtml5ElementName::ELT_H2 = nullptr;
michael@0 157 nsHtml5ElementName* nsHtml5ElementName::ELT_H3 = nullptr;
michael@0 158 nsHtml5ElementName* nsHtml5ElementName::ELT_H4 = nullptr;
michael@0 159 nsHtml5ElementName* nsHtml5ElementName::ELT_H5 = nullptr;
michael@0 160 nsHtml5ElementName* nsHtml5ElementName::ELT_H6 = nullptr;
michael@0 161 nsHtml5ElementName* nsHtml5ElementName::ELT_GT = nullptr;
michael@0 162 nsHtml5ElementName* nsHtml5ElementName::ELT_HR = nullptr;
michael@0 163 nsHtml5ElementName* nsHtml5ElementName::ELT_IN = nullptr;
michael@0 164 nsHtml5ElementName* nsHtml5ElementName::ELT_LI = nullptr;
michael@0 165 nsHtml5ElementName* nsHtml5ElementName::ELT_LN = nullptr;
michael@0 166 nsHtml5ElementName* nsHtml5ElementName::ELT_LT = nullptr;
michael@0 167 nsHtml5ElementName* nsHtml5ElementName::ELT_MI = nullptr;
michael@0 168 nsHtml5ElementName* nsHtml5ElementName::ELT_MN = nullptr;
michael@0 169 nsHtml5ElementName* nsHtml5ElementName::ELT_MO = nullptr;
michael@0 170 nsHtml5ElementName* nsHtml5ElementName::ELT_MS = nullptr;
michael@0 171 nsHtml5ElementName* nsHtml5ElementName::ELT_OL = nullptr;
michael@0 172 nsHtml5ElementName* nsHtml5ElementName::ELT_OR = nullptr;
michael@0 173 nsHtml5ElementName* nsHtml5ElementName::ELT_PI = nullptr;
michael@0 174 nsHtml5ElementName* nsHtml5ElementName::ELT_RP = nullptr;
michael@0 175 nsHtml5ElementName* nsHtml5ElementName::ELT_RT = nullptr;
michael@0 176 nsHtml5ElementName* nsHtml5ElementName::ELT_TD = nullptr;
michael@0 177 nsHtml5ElementName* nsHtml5ElementName::ELT_TH = nullptr;
michael@0 178 nsHtml5ElementName* nsHtml5ElementName::ELT_TR = nullptr;
michael@0 179 nsHtml5ElementName* nsHtml5ElementName::ELT_TT = nullptr;
michael@0 180 nsHtml5ElementName* nsHtml5ElementName::ELT_UL = nullptr;
michael@0 181 nsHtml5ElementName* nsHtml5ElementName::ELT_AND = nullptr;
michael@0 182 nsHtml5ElementName* nsHtml5ElementName::ELT_ARG = nullptr;
michael@0 183 nsHtml5ElementName* nsHtml5ElementName::ELT_ABS = nullptr;
michael@0 184 nsHtml5ElementName* nsHtml5ElementName::ELT_BIG = nullptr;
michael@0 185 nsHtml5ElementName* nsHtml5ElementName::ELT_BDO = nullptr;
michael@0 186 nsHtml5ElementName* nsHtml5ElementName::ELT_CSC = nullptr;
michael@0 187 nsHtml5ElementName* nsHtml5ElementName::ELT_COL = nullptr;
michael@0 188 nsHtml5ElementName* nsHtml5ElementName::ELT_COS = nullptr;
michael@0 189 nsHtml5ElementName* nsHtml5ElementName::ELT_COT = nullptr;
michael@0 190 nsHtml5ElementName* nsHtml5ElementName::ELT_DEL = nullptr;
michael@0 191 nsHtml5ElementName* nsHtml5ElementName::ELT_DFN = nullptr;
michael@0 192 nsHtml5ElementName* nsHtml5ElementName::ELT_DIR = nullptr;
michael@0 193 nsHtml5ElementName* nsHtml5ElementName::ELT_DIV = nullptr;
michael@0 194 nsHtml5ElementName* nsHtml5ElementName::ELT_EXP = nullptr;
michael@0 195 nsHtml5ElementName* nsHtml5ElementName::ELT_GCD = nullptr;
michael@0 196 nsHtml5ElementName* nsHtml5ElementName::ELT_GEQ = nullptr;
michael@0 197 nsHtml5ElementName* nsHtml5ElementName::ELT_IMG = nullptr;
michael@0 198 nsHtml5ElementName* nsHtml5ElementName::ELT_INS = nullptr;
michael@0 199 nsHtml5ElementName* nsHtml5ElementName::ELT_INT = nullptr;
michael@0 200 nsHtml5ElementName* nsHtml5ElementName::ELT_KBD = nullptr;
michael@0 201 nsHtml5ElementName* nsHtml5ElementName::ELT_LOG = nullptr;
michael@0 202 nsHtml5ElementName* nsHtml5ElementName::ELT_LCM = nullptr;
michael@0 203 nsHtml5ElementName* nsHtml5ElementName::ELT_LEQ = nullptr;
michael@0 204 nsHtml5ElementName* nsHtml5ElementName::ELT_MTD = nullptr;
michael@0 205 nsHtml5ElementName* nsHtml5ElementName::ELT_MIN = nullptr;
michael@0 206 nsHtml5ElementName* nsHtml5ElementName::ELT_MAP = nullptr;
michael@0 207 nsHtml5ElementName* nsHtml5ElementName::ELT_MTR = nullptr;
michael@0 208 nsHtml5ElementName* nsHtml5ElementName::ELT_MAX = nullptr;
michael@0 209 nsHtml5ElementName* nsHtml5ElementName::ELT_NEQ = nullptr;
michael@0 210 nsHtml5ElementName* nsHtml5ElementName::ELT_NOT = nullptr;
michael@0 211 nsHtml5ElementName* nsHtml5ElementName::ELT_NAV = nullptr;
michael@0 212 nsHtml5ElementName* nsHtml5ElementName::ELT_PRE = nullptr;
michael@0 213 nsHtml5ElementName* nsHtml5ElementName::ELT_REM = nullptr;
michael@0 214 nsHtml5ElementName* nsHtml5ElementName::ELT_SUB = nullptr;
michael@0 215 nsHtml5ElementName* nsHtml5ElementName::ELT_SEC = nullptr;
michael@0 216 nsHtml5ElementName* nsHtml5ElementName::ELT_SVG = nullptr;
michael@0 217 nsHtml5ElementName* nsHtml5ElementName::ELT_SUM = nullptr;
michael@0 218 nsHtml5ElementName* nsHtml5ElementName::ELT_SIN = nullptr;
michael@0 219 nsHtml5ElementName* nsHtml5ElementName::ELT_SEP = nullptr;
michael@0 220 nsHtml5ElementName* nsHtml5ElementName::ELT_SUP = nullptr;
michael@0 221 nsHtml5ElementName* nsHtml5ElementName::ELT_SET = nullptr;
michael@0 222 nsHtml5ElementName* nsHtml5ElementName::ELT_TAN = nullptr;
michael@0 223 nsHtml5ElementName* nsHtml5ElementName::ELT_USE = nullptr;
michael@0 224 nsHtml5ElementName* nsHtml5ElementName::ELT_VAR = nullptr;
michael@0 225 nsHtml5ElementName* nsHtml5ElementName::ELT_WBR = nullptr;
michael@0 226 nsHtml5ElementName* nsHtml5ElementName::ELT_XMP = nullptr;
michael@0 227 nsHtml5ElementName* nsHtml5ElementName::ELT_XOR = nullptr;
michael@0 228 nsHtml5ElementName* nsHtml5ElementName::ELT_AREA = nullptr;
michael@0 229 nsHtml5ElementName* nsHtml5ElementName::ELT_ABBR = nullptr;
michael@0 230 nsHtml5ElementName* nsHtml5ElementName::ELT_BASE = nullptr;
michael@0 231 nsHtml5ElementName* nsHtml5ElementName::ELT_BVAR = nullptr;
michael@0 232 nsHtml5ElementName* nsHtml5ElementName::ELT_BODY = nullptr;
michael@0 233 nsHtml5ElementName* nsHtml5ElementName::ELT_CARD = nullptr;
michael@0 234 nsHtml5ElementName* nsHtml5ElementName::ELT_CODE = nullptr;
michael@0 235 nsHtml5ElementName* nsHtml5ElementName::ELT_CITE = nullptr;
michael@0 236 nsHtml5ElementName* nsHtml5ElementName::ELT_CSCH = nullptr;
michael@0 237 nsHtml5ElementName* nsHtml5ElementName::ELT_COSH = nullptr;
michael@0 238 nsHtml5ElementName* nsHtml5ElementName::ELT_COTH = nullptr;
michael@0 239 nsHtml5ElementName* nsHtml5ElementName::ELT_CURL = nullptr;
michael@0 240 nsHtml5ElementName* nsHtml5ElementName::ELT_DESC = nullptr;
michael@0 241 nsHtml5ElementName* nsHtml5ElementName::ELT_DIFF = nullptr;
michael@0 242 nsHtml5ElementName* nsHtml5ElementName::ELT_DEFS = nullptr;
michael@0 243 nsHtml5ElementName* nsHtml5ElementName::ELT_FORM = nullptr;
michael@0 244 nsHtml5ElementName* nsHtml5ElementName::ELT_FONT = nullptr;
michael@0 245 nsHtml5ElementName* nsHtml5ElementName::ELT_GRAD = nullptr;
michael@0 246 nsHtml5ElementName* nsHtml5ElementName::ELT_HEAD = nullptr;
michael@0 247 nsHtml5ElementName* nsHtml5ElementName::ELT_HTML = nullptr;
michael@0 248 nsHtml5ElementName* nsHtml5ElementName::ELT_LINE = nullptr;
michael@0 249 nsHtml5ElementName* nsHtml5ElementName::ELT_LINK = nullptr;
michael@0 250 nsHtml5ElementName* nsHtml5ElementName::ELT_LIST = nullptr;
michael@0 251 nsHtml5ElementName* nsHtml5ElementName::ELT_META = nullptr;
michael@0 252 nsHtml5ElementName* nsHtml5ElementName::ELT_MSUB = nullptr;
michael@0 253 nsHtml5ElementName* nsHtml5ElementName::ELT_MODE = nullptr;
michael@0 254 nsHtml5ElementName* nsHtml5ElementName::ELT_MATH = nullptr;
michael@0 255 nsHtml5ElementName* nsHtml5ElementName::ELT_MARK = nullptr;
michael@0 256 nsHtml5ElementName* nsHtml5ElementName::ELT_MASK = nullptr;
michael@0 257 nsHtml5ElementName* nsHtml5ElementName::ELT_MEAN = nullptr;
michael@0 258 nsHtml5ElementName* nsHtml5ElementName::ELT_MAIN = nullptr;
michael@0 259 nsHtml5ElementName* nsHtml5ElementName::ELT_MSUP = nullptr;
michael@0 260 nsHtml5ElementName* nsHtml5ElementName::ELT_MENU = nullptr;
michael@0 261 nsHtml5ElementName* nsHtml5ElementName::ELT_MROW = nullptr;
michael@0 262 nsHtml5ElementName* nsHtml5ElementName::ELT_NONE = nullptr;
michael@0 263 nsHtml5ElementName* nsHtml5ElementName::ELT_NOBR = nullptr;
michael@0 264 nsHtml5ElementName* nsHtml5ElementName::ELT_NEST = nullptr;
michael@0 265 nsHtml5ElementName* nsHtml5ElementName::ELT_PATH = nullptr;
michael@0 266 nsHtml5ElementName* nsHtml5ElementName::ELT_PLUS = nullptr;
michael@0 267 nsHtml5ElementName* nsHtml5ElementName::ELT_RULE = nullptr;
michael@0 268 nsHtml5ElementName* nsHtml5ElementName::ELT_REAL = nullptr;
michael@0 269 nsHtml5ElementName* nsHtml5ElementName::ELT_RELN = nullptr;
michael@0 270 nsHtml5ElementName* nsHtml5ElementName::ELT_RECT = nullptr;
michael@0 271 nsHtml5ElementName* nsHtml5ElementName::ELT_ROOT = nullptr;
michael@0 272 nsHtml5ElementName* nsHtml5ElementName::ELT_RUBY = nullptr;
michael@0 273 nsHtml5ElementName* nsHtml5ElementName::ELT_SECH = nullptr;
michael@0 274 nsHtml5ElementName* nsHtml5ElementName::ELT_SINH = nullptr;
michael@0 275 nsHtml5ElementName* nsHtml5ElementName::ELT_SPAN = nullptr;
michael@0 276 nsHtml5ElementName* nsHtml5ElementName::ELT_SAMP = nullptr;
michael@0 277 nsHtml5ElementName* nsHtml5ElementName::ELT_STOP = nullptr;
michael@0 278 nsHtml5ElementName* nsHtml5ElementName::ELT_SDEV = nullptr;
michael@0 279 nsHtml5ElementName* nsHtml5ElementName::ELT_TIME = nullptr;
michael@0 280 nsHtml5ElementName* nsHtml5ElementName::ELT_TRUE = nullptr;
michael@0 281 nsHtml5ElementName* nsHtml5ElementName::ELT_TREF = nullptr;
michael@0 282 nsHtml5ElementName* nsHtml5ElementName::ELT_TANH = nullptr;
michael@0 283 nsHtml5ElementName* nsHtml5ElementName::ELT_TEXT = nullptr;
michael@0 284 nsHtml5ElementName* nsHtml5ElementName::ELT_VIEW = nullptr;
michael@0 285 nsHtml5ElementName* nsHtml5ElementName::ELT_ASIDE = nullptr;
michael@0 286 nsHtml5ElementName* nsHtml5ElementName::ELT_AUDIO = nullptr;
michael@0 287 nsHtml5ElementName* nsHtml5ElementName::ELT_APPLY = nullptr;
michael@0 288 nsHtml5ElementName* nsHtml5ElementName::ELT_EMBED = nullptr;
michael@0 289 nsHtml5ElementName* nsHtml5ElementName::ELT_FRAME = nullptr;
michael@0 290 nsHtml5ElementName* nsHtml5ElementName::ELT_FALSE = nullptr;
michael@0 291 nsHtml5ElementName* nsHtml5ElementName::ELT_FLOOR = nullptr;
michael@0 292 nsHtml5ElementName* nsHtml5ElementName::ELT_GLYPH = nullptr;
michael@0 293 nsHtml5ElementName* nsHtml5ElementName::ELT_HKERN = nullptr;
michael@0 294 nsHtml5ElementName* nsHtml5ElementName::ELT_IMAGE = nullptr;
michael@0 295 nsHtml5ElementName* nsHtml5ElementName::ELT_IDENT = nullptr;
michael@0 296 nsHtml5ElementName* nsHtml5ElementName::ELT_INPUT = nullptr;
michael@0 297 nsHtml5ElementName* nsHtml5ElementName::ELT_LABEL = nullptr;
michael@0 298 nsHtml5ElementName* nsHtml5ElementName::ELT_LIMIT = nullptr;
michael@0 299 nsHtml5ElementName* nsHtml5ElementName::ELT_MFRAC = nullptr;
michael@0 300 nsHtml5ElementName* nsHtml5ElementName::ELT_MPATH = nullptr;
michael@0 301 nsHtml5ElementName* nsHtml5ElementName::ELT_METER = nullptr;
michael@0 302 nsHtml5ElementName* nsHtml5ElementName::ELT_MOVER = nullptr;
michael@0 303 nsHtml5ElementName* nsHtml5ElementName::ELT_MINUS = nullptr;
michael@0 304 nsHtml5ElementName* nsHtml5ElementName::ELT_MROOT = nullptr;
michael@0 305 nsHtml5ElementName* nsHtml5ElementName::ELT_MSQRT = nullptr;
michael@0 306 nsHtml5ElementName* nsHtml5ElementName::ELT_MTEXT = nullptr;
michael@0 307 nsHtml5ElementName* nsHtml5ElementName::ELT_NOTIN = nullptr;
michael@0 308 nsHtml5ElementName* nsHtml5ElementName::ELT_PIECE = nullptr;
michael@0 309 nsHtml5ElementName* nsHtml5ElementName::ELT_PARAM = nullptr;
michael@0 310 nsHtml5ElementName* nsHtml5ElementName::ELT_POWER = nullptr;
michael@0 311 nsHtml5ElementName* nsHtml5ElementName::ELT_REALS = nullptr;
michael@0 312 nsHtml5ElementName* nsHtml5ElementName::ELT_STYLE = nullptr;
michael@0 313 nsHtml5ElementName* nsHtml5ElementName::ELT_SMALL = nullptr;
michael@0 314 nsHtml5ElementName* nsHtml5ElementName::ELT_THEAD = nullptr;
michael@0 315 nsHtml5ElementName* nsHtml5ElementName::ELT_TABLE = nullptr;
michael@0 316 nsHtml5ElementName* nsHtml5ElementName::ELT_TITLE = nullptr;
michael@0 317 nsHtml5ElementName* nsHtml5ElementName::ELT_TRACK = nullptr;
michael@0 318 nsHtml5ElementName* nsHtml5ElementName::ELT_TSPAN = nullptr;
michael@0 319 nsHtml5ElementName* nsHtml5ElementName::ELT_TIMES = nullptr;
michael@0 320 nsHtml5ElementName* nsHtml5ElementName::ELT_TFOOT = nullptr;
michael@0 321 nsHtml5ElementName* nsHtml5ElementName::ELT_TBODY = nullptr;
michael@0 322 nsHtml5ElementName* nsHtml5ElementName::ELT_UNION = nullptr;
michael@0 323 nsHtml5ElementName* nsHtml5ElementName::ELT_VKERN = nullptr;
michael@0 324 nsHtml5ElementName* nsHtml5ElementName::ELT_VIDEO = nullptr;
michael@0 325 nsHtml5ElementName* nsHtml5ElementName::ELT_ARCSEC = nullptr;
michael@0 326 nsHtml5ElementName* nsHtml5ElementName::ELT_ARCCSC = nullptr;
michael@0 327 nsHtml5ElementName* nsHtml5ElementName::ELT_ARCTAN = nullptr;
michael@0 328 nsHtml5ElementName* nsHtml5ElementName::ELT_ARCSIN = nullptr;
michael@0 329 nsHtml5ElementName* nsHtml5ElementName::ELT_ARCCOS = nullptr;
michael@0 330 nsHtml5ElementName* nsHtml5ElementName::ELT_APPLET = nullptr;
michael@0 331 nsHtml5ElementName* nsHtml5ElementName::ELT_ARCCOT = nullptr;
michael@0 332 nsHtml5ElementName* nsHtml5ElementName::ELT_APPROX = nullptr;
michael@0 333 nsHtml5ElementName* nsHtml5ElementName::ELT_BUTTON = nullptr;
michael@0 334 nsHtml5ElementName* nsHtml5ElementName::ELT_CIRCLE = nullptr;
michael@0 335 nsHtml5ElementName* nsHtml5ElementName::ELT_CENTER = nullptr;
michael@0 336 nsHtml5ElementName* nsHtml5ElementName::ELT_CURSOR = nullptr;
michael@0 337 nsHtml5ElementName* nsHtml5ElementName::ELT_CANVAS = nullptr;
michael@0 338 nsHtml5ElementName* nsHtml5ElementName::ELT_DIVIDE = nullptr;
michael@0 339 nsHtml5ElementName* nsHtml5ElementName::ELT_DEGREE = nullptr;
michael@0 340 nsHtml5ElementName* nsHtml5ElementName::ELT_DOMAIN = nullptr;
michael@0 341 nsHtml5ElementName* nsHtml5ElementName::ELT_EXISTS = nullptr;
michael@0 342 nsHtml5ElementName* nsHtml5ElementName::ELT_FETILE = nullptr;
michael@0 343 nsHtml5ElementName* nsHtml5ElementName::ELT_FIGURE = nullptr;
michael@0 344 nsHtml5ElementName* nsHtml5ElementName::ELT_FORALL = nullptr;
michael@0 345 nsHtml5ElementName* nsHtml5ElementName::ELT_FILTER = nullptr;
michael@0 346 nsHtml5ElementName* nsHtml5ElementName::ELT_FOOTER = nullptr;
michael@0 347 nsHtml5ElementName* nsHtml5ElementName::ELT_HGROUP = nullptr;
michael@0 348 nsHtml5ElementName* nsHtml5ElementName::ELT_HEADER = nullptr;
michael@0 349 nsHtml5ElementName* nsHtml5ElementName::ELT_IFRAME = nullptr;
michael@0 350 nsHtml5ElementName* nsHtml5ElementName::ELT_KEYGEN = nullptr;
michael@0 351 nsHtml5ElementName* nsHtml5ElementName::ELT_LAMBDA = nullptr;
michael@0 352 nsHtml5ElementName* nsHtml5ElementName::ELT_LEGEND = nullptr;
michael@0 353 nsHtml5ElementName* nsHtml5ElementName::ELT_MSPACE = nullptr;
michael@0 354 nsHtml5ElementName* nsHtml5ElementName::ELT_MTABLE = nullptr;
michael@0 355 nsHtml5ElementName* nsHtml5ElementName::ELT_MSTYLE = nullptr;
michael@0 356 nsHtml5ElementName* nsHtml5ElementName::ELT_MGLYPH = nullptr;
michael@0 357 nsHtml5ElementName* nsHtml5ElementName::ELT_MEDIAN = nullptr;
michael@0 358 nsHtml5ElementName* nsHtml5ElementName::ELT_MUNDER = nullptr;
michael@0 359 nsHtml5ElementName* nsHtml5ElementName::ELT_MARKER = nullptr;
michael@0 360 nsHtml5ElementName* nsHtml5ElementName::ELT_MERROR = nullptr;
michael@0 361 nsHtml5ElementName* nsHtml5ElementName::ELT_MOMENT = nullptr;
michael@0 362 nsHtml5ElementName* nsHtml5ElementName::ELT_MATRIX = nullptr;
michael@0 363 nsHtml5ElementName* nsHtml5ElementName::ELT_OPTION = nullptr;
michael@0 364 nsHtml5ElementName* nsHtml5ElementName::ELT_OBJECT = nullptr;
michael@0 365 nsHtml5ElementName* nsHtml5ElementName::ELT_OUTPUT = nullptr;
michael@0 366 nsHtml5ElementName* nsHtml5ElementName::ELT_PRIMES = nullptr;
michael@0 367 nsHtml5ElementName* nsHtml5ElementName::ELT_SOURCE = nullptr;
michael@0 368 nsHtml5ElementName* nsHtml5ElementName::ELT_STRIKE = nullptr;
michael@0 369 nsHtml5ElementName* nsHtml5ElementName::ELT_STRONG = nullptr;
michael@0 370 nsHtml5ElementName* nsHtml5ElementName::ELT_SWITCH = nullptr;
michael@0 371 nsHtml5ElementName* nsHtml5ElementName::ELT_SYMBOL = nullptr;
michael@0 372 nsHtml5ElementName* nsHtml5ElementName::ELT_SELECT = nullptr;
michael@0 373 nsHtml5ElementName* nsHtml5ElementName::ELT_SUBSET = nullptr;
michael@0 374 nsHtml5ElementName* nsHtml5ElementName::ELT_SCRIPT = nullptr;
michael@0 375 nsHtml5ElementName* nsHtml5ElementName::ELT_TBREAK = nullptr;
michael@0 376 nsHtml5ElementName* nsHtml5ElementName::ELT_VECTOR = nullptr;
michael@0 377 nsHtml5ElementName* nsHtml5ElementName::ELT_ARTICLE = nullptr;
michael@0 378 nsHtml5ElementName* nsHtml5ElementName::ELT_ANIMATE = nullptr;
michael@0 379 nsHtml5ElementName* nsHtml5ElementName::ELT_ARCSECH = nullptr;
michael@0 380 nsHtml5ElementName* nsHtml5ElementName::ELT_ARCCSCH = nullptr;
michael@0 381 nsHtml5ElementName* nsHtml5ElementName::ELT_ARCTANH = nullptr;
michael@0 382 nsHtml5ElementName* nsHtml5ElementName::ELT_ARCSINH = nullptr;
michael@0 383 nsHtml5ElementName* nsHtml5ElementName::ELT_ARCCOSH = nullptr;
michael@0 384 nsHtml5ElementName* nsHtml5ElementName::ELT_ARCCOTH = nullptr;
michael@0 385 nsHtml5ElementName* nsHtml5ElementName::ELT_ACRONYM = nullptr;
michael@0 386 nsHtml5ElementName* nsHtml5ElementName::ELT_ADDRESS = nullptr;
michael@0 387 nsHtml5ElementName* nsHtml5ElementName::ELT_BGSOUND = nullptr;
michael@0 388 nsHtml5ElementName* nsHtml5ElementName::ELT_COMPOSE = nullptr;
michael@0 389 nsHtml5ElementName* nsHtml5ElementName::ELT_CEILING = nullptr;
michael@0 390 nsHtml5ElementName* nsHtml5ElementName::ELT_CSYMBOL = nullptr;
michael@0 391 nsHtml5ElementName* nsHtml5ElementName::ELT_CAPTION = nullptr;
michael@0 392 nsHtml5ElementName* nsHtml5ElementName::ELT_DISCARD = nullptr;
michael@0 393 nsHtml5ElementName* nsHtml5ElementName::ELT_DECLARE = nullptr;
michael@0 394 nsHtml5ElementName* nsHtml5ElementName::ELT_DETAILS = nullptr;
michael@0 395 nsHtml5ElementName* nsHtml5ElementName::ELT_ELLIPSE = nullptr;
michael@0 396 nsHtml5ElementName* nsHtml5ElementName::ELT_FEFUNCA = nullptr;
michael@0 397 nsHtml5ElementName* nsHtml5ElementName::ELT_FEFUNCB = nullptr;
michael@0 398 nsHtml5ElementName* nsHtml5ElementName::ELT_FEBLEND = nullptr;
michael@0 399 nsHtml5ElementName* nsHtml5ElementName::ELT_FEFLOOD = nullptr;
michael@0 400 nsHtml5ElementName* nsHtml5ElementName::ELT_FEIMAGE = nullptr;
michael@0 401 nsHtml5ElementName* nsHtml5ElementName::ELT_FEMERGE = nullptr;
michael@0 402 nsHtml5ElementName* nsHtml5ElementName::ELT_FEFUNCG = nullptr;
michael@0 403 nsHtml5ElementName* nsHtml5ElementName::ELT_FEFUNCR = nullptr;
michael@0 404 nsHtml5ElementName* nsHtml5ElementName::ELT_HANDLER = nullptr;
michael@0 405 nsHtml5ElementName* nsHtml5ElementName::ELT_INVERSE = nullptr;
michael@0 406 nsHtml5ElementName* nsHtml5ElementName::ELT_IMPLIES = nullptr;
michael@0 407 nsHtml5ElementName* nsHtml5ElementName::ELT_ISINDEX = nullptr;
michael@0 408 nsHtml5ElementName* nsHtml5ElementName::ELT_LOGBASE = nullptr;
michael@0 409 nsHtml5ElementName* nsHtml5ElementName::ELT_LISTING = nullptr;
michael@0 410 nsHtml5ElementName* nsHtml5ElementName::ELT_MFENCED = nullptr;
michael@0 411 nsHtml5ElementName* nsHtml5ElementName::ELT_MPADDED = nullptr;
michael@0 412 nsHtml5ElementName* nsHtml5ElementName::ELT_MARQUEE = nullptr;
michael@0 413 nsHtml5ElementName* nsHtml5ElementName::ELT_MACTION = nullptr;
michael@0 414 nsHtml5ElementName* nsHtml5ElementName::ELT_MSUBSUP = nullptr;
michael@0 415 nsHtml5ElementName* nsHtml5ElementName::ELT_NOEMBED = nullptr;
michael@0 416 nsHtml5ElementName* nsHtml5ElementName::ELT_POLYGON = nullptr;
michael@0 417 nsHtml5ElementName* nsHtml5ElementName::ELT_PATTERN = nullptr;
michael@0 418 nsHtml5ElementName* nsHtml5ElementName::ELT_PRODUCT = nullptr;
michael@0 419 nsHtml5ElementName* nsHtml5ElementName::ELT_SETDIFF = nullptr;
michael@0 420 nsHtml5ElementName* nsHtml5ElementName::ELT_SECTION = nullptr;
michael@0 421 nsHtml5ElementName* nsHtml5ElementName::ELT_SUMMARY = nullptr;
michael@0 422 nsHtml5ElementName* nsHtml5ElementName::ELT_TENDSTO = nullptr;
michael@0 423 nsHtml5ElementName* nsHtml5ElementName::ELT_UPLIMIT = nullptr;
michael@0 424 nsHtml5ElementName* nsHtml5ElementName::ELT_ALTGLYPH = nullptr;
michael@0 425 nsHtml5ElementName* nsHtml5ElementName::ELT_BASEFONT = nullptr;
michael@0 426 nsHtml5ElementName* nsHtml5ElementName::ELT_CLIPPATH = nullptr;
michael@0 427 nsHtml5ElementName* nsHtml5ElementName::ELT_CODOMAIN = nullptr;
michael@0 428 nsHtml5ElementName* nsHtml5ElementName::ELT_COLGROUP = nullptr;
michael@0 429 nsHtml5ElementName* nsHtml5ElementName::ELT_EMPTYSET = nullptr;
michael@0 430 nsHtml5ElementName* nsHtml5ElementName::ELT_FACTOROF = nullptr;
michael@0 431 nsHtml5ElementName* nsHtml5ElementName::ELT_FIELDSET = nullptr;
michael@0 432 nsHtml5ElementName* nsHtml5ElementName::ELT_FRAMESET = nullptr;
michael@0 433 nsHtml5ElementName* nsHtml5ElementName::ELT_FEOFFSET = nullptr;
michael@0 434 nsHtml5ElementName* nsHtml5ElementName::ELT_GLYPHREF = nullptr;
michael@0 435 nsHtml5ElementName* nsHtml5ElementName::ELT_INTERVAL = nullptr;
michael@0 436 nsHtml5ElementName* nsHtml5ElementName::ELT_INTEGERS = nullptr;
michael@0 437 nsHtml5ElementName* nsHtml5ElementName::ELT_INFINITY = nullptr;
michael@0 438 nsHtml5ElementName* nsHtml5ElementName::ELT_LISTENER = nullptr;
michael@0 439 nsHtml5ElementName* nsHtml5ElementName::ELT_LOWLIMIT = nullptr;
michael@0 440 nsHtml5ElementName* nsHtml5ElementName::ELT_METADATA = nullptr;
michael@0 441 nsHtml5ElementName* nsHtml5ElementName::ELT_MENCLOSE = nullptr;
michael@0 442 nsHtml5ElementName* nsHtml5ElementName::ELT_MENUITEM = nullptr;
michael@0 443 nsHtml5ElementName* nsHtml5ElementName::ELT_MPHANTOM = nullptr;
michael@0 444 nsHtml5ElementName* nsHtml5ElementName::ELT_NOFRAMES = nullptr;
michael@0 445 nsHtml5ElementName* nsHtml5ElementName::ELT_NOSCRIPT = nullptr;
michael@0 446 nsHtml5ElementName* nsHtml5ElementName::ELT_OPTGROUP = nullptr;
michael@0 447 nsHtml5ElementName* nsHtml5ElementName::ELT_POLYLINE = nullptr;
michael@0 448 nsHtml5ElementName* nsHtml5ElementName::ELT_PREFETCH = nullptr;
michael@0 449 nsHtml5ElementName* nsHtml5ElementName::ELT_PROGRESS = nullptr;
michael@0 450 nsHtml5ElementName* nsHtml5ElementName::ELT_PRSUBSET = nullptr;
michael@0 451 nsHtml5ElementName* nsHtml5ElementName::ELT_QUOTIENT = nullptr;
michael@0 452 nsHtml5ElementName* nsHtml5ElementName::ELT_SELECTOR = nullptr;
michael@0 453 nsHtml5ElementName* nsHtml5ElementName::ELT_TEXTAREA = nullptr;
michael@0 454 nsHtml5ElementName* nsHtml5ElementName::ELT_TEMPLATE = nullptr;
michael@0 455 nsHtml5ElementName* nsHtml5ElementName::ELT_TEXTPATH = nullptr;
michael@0 456 nsHtml5ElementName* nsHtml5ElementName::ELT_VARIANCE = nullptr;
michael@0 457 nsHtml5ElementName* nsHtml5ElementName::ELT_ANIMATION = nullptr;
michael@0 458 nsHtml5ElementName* nsHtml5ElementName::ELT_CONJUGATE = nullptr;
michael@0 459 nsHtml5ElementName* nsHtml5ElementName::ELT_CONDITION = nullptr;
michael@0 460 nsHtml5ElementName* nsHtml5ElementName::ELT_COMPLEXES = nullptr;
michael@0 461 nsHtml5ElementName* nsHtml5ElementName::ELT_FONT_FACE = nullptr;
michael@0 462 nsHtml5ElementName* nsHtml5ElementName::ELT_FACTORIAL = nullptr;
michael@0 463 nsHtml5ElementName* nsHtml5ElementName::ELT_INTERSECT = nullptr;
michael@0 464 nsHtml5ElementName* nsHtml5ElementName::ELT_IMAGINARY = nullptr;
michael@0 465 nsHtml5ElementName* nsHtml5ElementName::ELT_LAPLACIAN = nullptr;
michael@0 466 nsHtml5ElementName* nsHtml5ElementName::ELT_MATRIXROW = nullptr;
michael@0 467 nsHtml5ElementName* nsHtml5ElementName::ELT_NOTSUBSET = nullptr;
michael@0 468 nsHtml5ElementName* nsHtml5ElementName::ELT_OTHERWISE = nullptr;
michael@0 469 nsHtml5ElementName* nsHtml5ElementName::ELT_PIECEWISE = nullptr;
michael@0 470 nsHtml5ElementName* nsHtml5ElementName::ELT_PLAINTEXT = nullptr;
michael@0 471 nsHtml5ElementName* nsHtml5ElementName::ELT_RATIONALS = nullptr;
michael@0 472 nsHtml5ElementName* nsHtml5ElementName::ELT_SEMANTICS = nullptr;
michael@0 473 nsHtml5ElementName* nsHtml5ElementName::ELT_TRANSPOSE = nullptr;
michael@0 474 nsHtml5ElementName* nsHtml5ElementName::ELT_ANNOTATION = nullptr;
michael@0 475 nsHtml5ElementName* nsHtml5ElementName::ELT_BLOCKQUOTE = nullptr;
michael@0 476 nsHtml5ElementName* nsHtml5ElementName::ELT_DIVERGENCE = nullptr;
michael@0 477 nsHtml5ElementName* nsHtml5ElementName::ELT_EULERGAMMA = nullptr;
michael@0 478 nsHtml5ElementName* nsHtml5ElementName::ELT_EQUIVALENT = nullptr;
michael@0 479 nsHtml5ElementName* nsHtml5ElementName::ELT_FIGCAPTION = nullptr;
michael@0 480 nsHtml5ElementName* nsHtml5ElementName::ELT_IMAGINARYI = nullptr;
michael@0 481 nsHtml5ElementName* nsHtml5ElementName::ELT_MALIGNMARK = nullptr;
michael@0 482 nsHtml5ElementName* nsHtml5ElementName::ELT_MUNDEROVER = nullptr;
michael@0 483 nsHtml5ElementName* nsHtml5ElementName::ELT_MLABELEDTR = nullptr;
michael@0 484 nsHtml5ElementName* nsHtml5ElementName::ELT_NOTANUMBER = nullptr;
michael@0 485 nsHtml5ElementName* nsHtml5ElementName::ELT_SOLIDCOLOR = nullptr;
michael@0 486 nsHtml5ElementName* nsHtml5ElementName::ELT_ALTGLYPHDEF = nullptr;
michael@0 487 nsHtml5ElementName* nsHtml5ElementName::ELT_DETERMINANT = nullptr;
michael@0 488 nsHtml5ElementName* nsHtml5ElementName::ELT_FEMERGENODE = nullptr;
michael@0 489 nsHtml5ElementName* nsHtml5ElementName::ELT_FECOMPOSITE = nullptr;
michael@0 490 nsHtml5ElementName* nsHtml5ElementName::ELT_FESPOTLIGHT = nullptr;
michael@0 491 nsHtml5ElementName* nsHtml5ElementName::ELT_MALIGNGROUP = nullptr;
michael@0 492 nsHtml5ElementName* nsHtml5ElementName::ELT_MPRESCRIPTS = nullptr;
michael@0 493 nsHtml5ElementName* nsHtml5ElementName::ELT_MOMENTABOUT = nullptr;
michael@0 494 nsHtml5ElementName* nsHtml5ElementName::ELT_NOTPRSUBSET = nullptr;
michael@0 495 nsHtml5ElementName* nsHtml5ElementName::ELT_PARTIALDIFF = nullptr;
michael@0 496 nsHtml5ElementName* nsHtml5ElementName::ELT_ALTGLYPHITEM = nullptr;
michael@0 497 nsHtml5ElementName* nsHtml5ElementName::ELT_ANIMATECOLOR = nullptr;
michael@0 498 nsHtml5ElementName* nsHtml5ElementName::ELT_DATATEMPLATE = nullptr;
michael@0 499 nsHtml5ElementName* nsHtml5ElementName::ELT_EXPONENTIALE = nullptr;
michael@0 500 nsHtml5ElementName* nsHtml5ElementName::ELT_FETURBULENCE = nullptr;
michael@0 501 nsHtml5ElementName* nsHtml5ElementName::ELT_FEPOINTLIGHT = nullptr;
michael@0 502 nsHtml5ElementName* nsHtml5ElementName::ELT_FEDROPSHADOW = nullptr;
michael@0 503 nsHtml5ElementName* nsHtml5ElementName::ELT_FEMORPHOLOGY = nullptr;
michael@0 504 nsHtml5ElementName* nsHtml5ElementName::ELT_OUTERPRODUCT = nullptr;
michael@0 505 nsHtml5ElementName* nsHtml5ElementName::ELT_ANIMATEMOTION = nullptr;
michael@0 506 nsHtml5ElementName* nsHtml5ElementName::ELT_COLOR_PROFILE = nullptr;
michael@0 507 nsHtml5ElementName* nsHtml5ElementName::ELT_FONT_FACE_SRC = nullptr;
michael@0 508 nsHtml5ElementName* nsHtml5ElementName::ELT_FONT_FACE_URI = nullptr;
michael@0 509 nsHtml5ElementName* nsHtml5ElementName::ELT_FOREIGNOBJECT = nullptr;
michael@0 510 nsHtml5ElementName* nsHtml5ElementName::ELT_FECOLORMATRIX = nullptr;
michael@0 511 nsHtml5ElementName* nsHtml5ElementName::ELT_MISSING_GLYPH = nullptr;
michael@0 512 nsHtml5ElementName* nsHtml5ElementName::ELT_MMULTISCRIPTS = nullptr;
michael@0 513 nsHtml5ElementName* nsHtml5ElementName::ELT_SCALARPRODUCT = nullptr;
michael@0 514 nsHtml5ElementName* nsHtml5ElementName::ELT_VECTORPRODUCT = nullptr;
michael@0 515 nsHtml5ElementName* nsHtml5ElementName::ELT_ANNOTATION_XML = nullptr;
michael@0 516 nsHtml5ElementName* nsHtml5ElementName::ELT_DEFINITION_SRC = nullptr;
michael@0 517 nsHtml5ElementName* nsHtml5ElementName::ELT_FONT_FACE_NAME = nullptr;
michael@0 518 nsHtml5ElementName* nsHtml5ElementName::ELT_FEGAUSSIANBLUR = nullptr;
michael@0 519 nsHtml5ElementName* nsHtml5ElementName::ELT_FEDISTANTLIGHT = nullptr;
michael@0 520 nsHtml5ElementName* nsHtml5ElementName::ELT_LINEARGRADIENT = nullptr;
michael@0 521 nsHtml5ElementName* nsHtml5ElementName::ELT_NATURALNUMBERS = nullptr;
michael@0 522 nsHtml5ElementName* nsHtml5ElementName::ELT_RADIALGRADIENT = nullptr;
michael@0 523 nsHtml5ElementName* nsHtml5ElementName::ELT_ANIMATETRANSFORM = nullptr;
michael@0 524 nsHtml5ElementName* nsHtml5ElementName::ELT_CARTESIANPRODUCT = nullptr;
michael@0 525 nsHtml5ElementName* nsHtml5ElementName::ELT_FONT_FACE_FORMAT = nullptr;
michael@0 526 nsHtml5ElementName* nsHtml5ElementName::ELT_FECONVOLVEMATRIX = nullptr;
michael@0 527 nsHtml5ElementName* nsHtml5ElementName::ELT_FEDIFFUSELIGHTING = nullptr;
michael@0 528 nsHtml5ElementName* nsHtml5ElementName::ELT_FEDISPLACEMENTMAP = nullptr;
michael@0 529 nsHtml5ElementName* nsHtml5ElementName::ELT_FESPECULARLIGHTING = nullptr;
michael@0 530 nsHtml5ElementName* nsHtml5ElementName::ELT_DOMAINOFAPPLICATION = nullptr;
michael@0 531 nsHtml5ElementName* nsHtml5ElementName::ELT_FECOMPONENTTRANSFER = nullptr;
michael@0 532 nsHtml5ElementName** nsHtml5ElementName::ELEMENT_NAMES = 0;
michael@0 533 static int32_t const ELEMENT_HASHES_DATA[] = { 1057, 1090, 1255, 1321, 1552, 1585, 1651, 1717, 68162, 68899, 69059, 69764, 70020, 70276, 71077, 71205, 72134, 72232, 72264, 72296, 72328, 72360, 72392, 73351, 74312, 75209, 78124, 78284, 78476, 79149, 79309, 79341, 79469, 81295, 81487, 82224, 84498, 84626, 86164, 86292, 86612, 86676, 87445, 3183041, 3186241, 3198017, 3218722, 3226754, 3247715, 3256803, 3263971, 3264995, 3289252, 3291332, 3295524, 3299620, 3326725, 3379303, 3392679, 3448233, 3460553, 3461577, 3510347, 3546604, 3552364, 3556524, 3576461, 3586349, 3588141, 3590797, 3596333, 3622062, 3625454, 3627054, 3675728, 3749042, 3771059, 3771571, 3776211, 3782323, 3782963, 3784883, 3785395, 3788979, 3815476, 3839605, 3885110, 3917911, 3948984, 3951096, 135304769, 135858241, 136498210, 136906434, 137138658, 137512995, 137531875, 137548067, 137629283, 137645539, 137646563, 137775779, 138529956, 138615076, 139040932, 140954086, 141179366, 141690439, 142738600, 143013512, 146979116, 147175724, 147475756, 147902637, 147936877, 148017645, 148131885, 148228141, 148229165, 148309165, 148317229, 148395629, 148551853, 148618829, 149076462, 149490158, 149572782, 151277616, 151639440, 153268914, 153486514, 153563314, 153750706, 153763314, 153914034, 154406067, 154417459, 154600979, 154678323, 154680979, 154866835, 155366708, 155375188, 155391572, 155465780, 155869364, 158045494, 168988979, 169321621, 169652752, 173151309, 174240818, 174247297, 174669292, 175391532, 176638123, 177380397, 177879204, 177886734, 180753473, 181020073, 181503558, 181686320, 181999237, 181999311, 182048201, 182074866, 182078003, 182083764, 182920847, 184716457, 184976961, 185145071, 187281445, 187872052, 188100653, 188875944, 188919873, 188920457, 189107250, 189203987, 189371817, 189414886, 189567458, 190266670, 191318187, 191337609, 202479203, 202493027, 202835587, 202843747, 203013219, 203036048, 203045987, 203177552, 203898516, 204648562, 205067918, 205078130, 205096654, 205689142, 205690439, 205988909, 207213161, 207794484, 207800999, 208023602, 208213644, 208213647, 210261490, 210310273, 210940978, 213325049, 213946445, 214055079, 215125040, 215134273, 215135028, 215237420, 215418148, 215553166, 215553394, 215563858, 215627949, 215754324, 217529652, 217713834, 217732628, 218731945, 221417045, 221424946, 221493746, 221515401, 221658189, 221908140, 221910626, 221921586, 222659762, 225001091, 236105833, 236113965, 236194995, 236195427, 236206132, 236206387, 236211683, 236212707, 236381647, 236571826, 237124271, 238210544, 238270764, 238435405, 238501172, 239224867, 239257644, 239710497, 240307721, 241208789, 241241557, 241318060, 241319404, 241343533, 241344069, 241405397, 241765845, 243864964, 244502085, 244946220, 245109902, 247647266, 247707956, 248648814, 248648836, 248682161, 248986932, 249058914, 249697357, 252132601, 252135604, 252317348, 255007012, 255278388, 255641645, 256365156, 257566121, 269763372, 271202790, 271863856, 272049197, 272127474, 274339449, 274939471, 275388004, 275388005, 275388006, 275977800, 278267602, 278513831, 278712622, 281613765, 281683369, 282120228, 282250732, 282498697, 282508942, 283743649, 283787570, 284710386, 285391148, 285478533, 285854898, 285873762, 286931113, 288964227, 289445441, 289591340, 289689648, 291671489, 303512884, 305319975, 305610036, 305764101, 308448294, 308675890, 312085683, 312264750, 315032867, 316391000, 317331042, 317902135, 318950711, 319447220, 321499182, 322538804, 323145200, 337067316, 337826293, 339905989, 340833697, 341457068, 342310196, 345302593, 349554733, 349771471, 349786245, 350819405, 356072847, 370349192, 373962798, 375558638, 375574835, 376053993, 383276530, 383373833, 383407586, 384439906, 386079012, 404133513, 404307343, 407031852, 408072233, 409112005, 409608425, 409713793, 409771500, 419040932, 437730612, 439529766, 442616365, 442813037, 443157674, 443295316, 450118444, 450482697, 456789668, 459935396, 471217869, 474073645, 476230702, 476665218, 476717289, 483014825, 485083298, 489306281, 538364390, 540675748, 543819186, 543958612, 576960820, 577242548, 610515252, 642202932, 644420819 };
michael@0 534 staticJArray<int32_t,int32_t> nsHtml5ElementName::ELEMENT_HASHES = { ELEMENT_HASHES_DATA, MOZ_ARRAY_LENGTH(ELEMENT_HASHES_DATA) };
michael@0 535 void
michael@0 536 nsHtml5ElementName::initializeStatics()
michael@0 537 {
michael@0 538 ELT_NULL_ELEMENT_NAME = new nsHtml5ElementName(nullptr);
michael@0 539 ELT_A = new nsHtml5ElementName(nsHtml5Atoms::a, nsHtml5Atoms::a, NS_HTML5TREE_BUILDER_A);
michael@0 540 ELT_B = new nsHtml5ElementName(nsHtml5Atoms::b, nsHtml5Atoms::b, NS_HTML5TREE_BUILDER_B_OR_BIG_OR_CODE_OR_EM_OR_I_OR_S_OR_SMALL_OR_STRIKE_OR_STRONG_OR_TT_OR_U);
michael@0 541 ELT_G = new nsHtml5ElementName(nsHtml5Atoms::g, nsHtml5Atoms::g, NS_HTML5TREE_BUILDER_OTHER);
michael@0 542 ELT_I = new nsHtml5ElementName(nsHtml5Atoms::i, nsHtml5Atoms::i, NS_HTML5TREE_BUILDER_B_OR_BIG_OR_CODE_OR_EM_OR_I_OR_S_OR_SMALL_OR_STRIKE_OR_STRONG_OR_TT_OR_U);
michael@0 543 ELT_P = new nsHtml5ElementName(nsHtml5Atoms::p, nsHtml5Atoms::p, NS_HTML5TREE_BUILDER_P | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 544 ELT_Q = new nsHtml5ElementName(nsHtml5Atoms::q, nsHtml5Atoms::q, NS_HTML5TREE_BUILDER_OTHER);
michael@0 545 ELT_S = new nsHtml5ElementName(nsHtml5Atoms::s, nsHtml5Atoms::s, NS_HTML5TREE_BUILDER_B_OR_BIG_OR_CODE_OR_EM_OR_I_OR_S_OR_SMALL_OR_STRIKE_OR_STRONG_OR_TT_OR_U);
michael@0 546 ELT_U = new nsHtml5ElementName(nsHtml5Atoms::u, nsHtml5Atoms::u, NS_HTML5TREE_BUILDER_B_OR_BIG_OR_CODE_OR_EM_OR_I_OR_S_OR_SMALL_OR_STRIKE_OR_STRONG_OR_TT_OR_U);
michael@0 547 ELT_BR = new nsHtml5ElementName(nsHtml5Atoms::br, nsHtml5Atoms::br, NS_HTML5TREE_BUILDER_BR | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 548 ELT_CI = new nsHtml5ElementName(nsHtml5Atoms::ci, nsHtml5Atoms::ci, NS_HTML5TREE_BUILDER_OTHER);
michael@0 549 ELT_CN = new nsHtml5ElementName(nsHtml5Atoms::cn, nsHtml5Atoms::cn, NS_HTML5TREE_BUILDER_OTHER);
michael@0 550 ELT_DD = new nsHtml5ElementName(nsHtml5Atoms::dd, nsHtml5Atoms::dd, NS_HTML5TREE_BUILDER_DD_OR_DT | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 551 ELT_DL = new nsHtml5ElementName(nsHtml5Atoms::dl, nsHtml5Atoms::dl, NS_HTML5TREE_BUILDER_UL_OR_OL_OR_DL | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 552 ELT_DT = new nsHtml5ElementName(nsHtml5Atoms::dt, nsHtml5Atoms::dt, NS_HTML5TREE_BUILDER_DD_OR_DT | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 553 ELT_EM = new nsHtml5ElementName(nsHtml5Atoms::em, nsHtml5Atoms::em, NS_HTML5TREE_BUILDER_B_OR_BIG_OR_CODE_OR_EM_OR_I_OR_S_OR_SMALL_OR_STRIKE_OR_STRONG_OR_TT_OR_U);
michael@0 554 ELT_EQ = new nsHtml5ElementName(nsHtml5Atoms::eq, nsHtml5Atoms::eq, NS_HTML5TREE_BUILDER_OTHER);
michael@0 555 ELT_FN = new nsHtml5ElementName(nsHtml5Atoms::fn, nsHtml5Atoms::fn, NS_HTML5TREE_BUILDER_OTHER);
michael@0 556 ELT_H1 = new nsHtml5ElementName(nsHtml5Atoms::h1, nsHtml5Atoms::h1, NS_HTML5TREE_BUILDER_H1_OR_H2_OR_H3_OR_H4_OR_H5_OR_H6 | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 557 ELT_H2 = new nsHtml5ElementName(nsHtml5Atoms::h2, nsHtml5Atoms::h2, NS_HTML5TREE_BUILDER_H1_OR_H2_OR_H3_OR_H4_OR_H5_OR_H6 | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 558 ELT_H3 = new nsHtml5ElementName(nsHtml5Atoms::h3, nsHtml5Atoms::h3, NS_HTML5TREE_BUILDER_H1_OR_H2_OR_H3_OR_H4_OR_H5_OR_H6 | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 559 ELT_H4 = new nsHtml5ElementName(nsHtml5Atoms::h4, nsHtml5Atoms::h4, NS_HTML5TREE_BUILDER_H1_OR_H2_OR_H3_OR_H4_OR_H5_OR_H6 | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 560 ELT_H5 = new nsHtml5ElementName(nsHtml5Atoms::h5, nsHtml5Atoms::h5, NS_HTML5TREE_BUILDER_H1_OR_H2_OR_H3_OR_H4_OR_H5_OR_H6 | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 561 ELT_H6 = new nsHtml5ElementName(nsHtml5Atoms::h6, nsHtml5Atoms::h6, NS_HTML5TREE_BUILDER_H1_OR_H2_OR_H3_OR_H4_OR_H5_OR_H6 | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 562 ELT_GT = new nsHtml5ElementName(nsHtml5Atoms::gt, nsHtml5Atoms::gt, NS_HTML5TREE_BUILDER_OTHER);
michael@0 563 ELT_HR = new nsHtml5ElementName(nsHtml5Atoms::hr, nsHtml5Atoms::hr, NS_HTML5TREE_BUILDER_HR | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 564 ELT_IN = new nsHtml5ElementName(nsHtml5Atoms::in, nsHtml5Atoms::in, NS_HTML5TREE_BUILDER_OTHER);
michael@0 565 ELT_LI = new nsHtml5ElementName(nsHtml5Atoms::li, nsHtml5Atoms::li, NS_HTML5TREE_BUILDER_LI | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 566 ELT_LN = new nsHtml5ElementName(nsHtml5Atoms::ln, nsHtml5Atoms::ln, NS_HTML5TREE_BUILDER_OTHER);
michael@0 567 ELT_LT = new nsHtml5ElementName(nsHtml5Atoms::lt, nsHtml5Atoms::lt, NS_HTML5TREE_BUILDER_OTHER);
michael@0 568 ELT_MI = new nsHtml5ElementName(nsHtml5Atoms::mi, nsHtml5Atoms::mi, NS_HTML5TREE_BUILDER_MI_MO_MN_MS_MTEXT | NS_HTML5ELEMENT_NAME_SCOPING_AS_MATHML);
michael@0 569 ELT_MN = new nsHtml5ElementName(nsHtml5Atoms::mn, nsHtml5Atoms::mn, NS_HTML5TREE_BUILDER_MI_MO_MN_MS_MTEXT | NS_HTML5ELEMENT_NAME_SCOPING_AS_MATHML);
michael@0 570 ELT_MO = new nsHtml5ElementName(nsHtml5Atoms::mo, nsHtml5Atoms::mo, NS_HTML5TREE_BUILDER_MI_MO_MN_MS_MTEXT | NS_HTML5ELEMENT_NAME_SCOPING_AS_MATHML);
michael@0 571 ELT_MS = new nsHtml5ElementName(nsHtml5Atoms::ms, nsHtml5Atoms::ms, NS_HTML5TREE_BUILDER_MI_MO_MN_MS_MTEXT | NS_HTML5ELEMENT_NAME_SCOPING_AS_MATHML);
michael@0 572 ELT_OL = new nsHtml5ElementName(nsHtml5Atoms::ol, nsHtml5Atoms::ol, NS_HTML5TREE_BUILDER_UL_OR_OL_OR_DL | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 573 ELT_OR = new nsHtml5ElementName(nsHtml5Atoms::or_, nsHtml5Atoms::or_, NS_HTML5TREE_BUILDER_OTHER);
michael@0 574 ELT_PI = new nsHtml5ElementName(nsHtml5Atoms::pi, nsHtml5Atoms::pi, NS_HTML5TREE_BUILDER_OTHER);
michael@0 575 ELT_RP = new nsHtml5ElementName(nsHtml5Atoms::rp, nsHtml5Atoms::rp, NS_HTML5TREE_BUILDER_RT_OR_RP | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 576 ELT_RT = new nsHtml5ElementName(nsHtml5Atoms::rt, nsHtml5Atoms::rt, NS_HTML5TREE_BUILDER_RT_OR_RP | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 577 ELT_TD = new nsHtml5ElementName(nsHtml5Atoms::td, nsHtml5Atoms::td, NS_HTML5TREE_BUILDER_TD_OR_TH | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_SCOPING | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 578 ELT_TH = new nsHtml5ElementName(nsHtml5Atoms::th, nsHtml5Atoms::th, NS_HTML5TREE_BUILDER_TD_OR_TH | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_SCOPING | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 579 ELT_TR = new nsHtml5ElementName(nsHtml5Atoms::tr, nsHtml5Atoms::tr, NS_HTML5TREE_BUILDER_TR | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_FOSTER_PARENTING | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 580 ELT_TT = new nsHtml5ElementName(nsHtml5Atoms::tt, nsHtml5Atoms::tt, NS_HTML5TREE_BUILDER_B_OR_BIG_OR_CODE_OR_EM_OR_I_OR_S_OR_SMALL_OR_STRIKE_OR_STRONG_OR_TT_OR_U);
michael@0 581 ELT_UL = new nsHtml5ElementName(nsHtml5Atoms::ul, nsHtml5Atoms::ul, NS_HTML5TREE_BUILDER_UL_OR_OL_OR_DL | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 582 ELT_AND = new nsHtml5ElementName(nsHtml5Atoms::and_, nsHtml5Atoms::and_, NS_HTML5TREE_BUILDER_OTHER);
michael@0 583 ELT_ARG = new nsHtml5ElementName(nsHtml5Atoms::arg, nsHtml5Atoms::arg, NS_HTML5TREE_BUILDER_OTHER);
michael@0 584 ELT_ABS = new nsHtml5ElementName(nsHtml5Atoms::abs, nsHtml5Atoms::abs, NS_HTML5TREE_BUILDER_OTHER);
michael@0 585 ELT_BIG = new nsHtml5ElementName(nsHtml5Atoms::big, nsHtml5Atoms::big, NS_HTML5TREE_BUILDER_B_OR_BIG_OR_CODE_OR_EM_OR_I_OR_S_OR_SMALL_OR_STRIKE_OR_STRONG_OR_TT_OR_U);
michael@0 586 ELT_BDO = new nsHtml5ElementName(nsHtml5Atoms::bdo, nsHtml5Atoms::bdo, NS_HTML5TREE_BUILDER_OTHER);
michael@0 587 ELT_CSC = new nsHtml5ElementName(nsHtml5Atoms::csc, nsHtml5Atoms::csc, NS_HTML5TREE_BUILDER_OTHER);
michael@0 588 ELT_COL = new nsHtml5ElementName(nsHtml5Atoms::col, nsHtml5Atoms::col, NS_HTML5TREE_BUILDER_COL | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 589 ELT_COS = new nsHtml5ElementName(nsHtml5Atoms::cos, nsHtml5Atoms::cos, NS_HTML5TREE_BUILDER_OTHER);
michael@0 590 ELT_COT = new nsHtml5ElementName(nsHtml5Atoms::cot, nsHtml5Atoms::cot, NS_HTML5TREE_BUILDER_OTHER);
michael@0 591 ELT_DEL = new nsHtml5ElementName(nsHtml5Atoms::del, nsHtml5Atoms::del, NS_HTML5TREE_BUILDER_OTHER);
michael@0 592 ELT_DFN = new nsHtml5ElementName(nsHtml5Atoms::dfn, nsHtml5Atoms::dfn, NS_HTML5TREE_BUILDER_OTHER);
michael@0 593 ELT_DIR = new nsHtml5ElementName(nsHtml5Atoms::dir, nsHtml5Atoms::dir, NS_HTML5TREE_BUILDER_ADDRESS_OR_ARTICLE_OR_ASIDE_OR_DETAILS_OR_DIR_OR_FIGCAPTION_OR_FIGURE_OR_FOOTER_OR_HEADER_OR_HGROUP_OR_MAIN_OR_NAV_OR_SECTION_OR_SUMMARY | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 594 ELT_DIV = new nsHtml5ElementName(nsHtml5Atoms::div, nsHtml5Atoms::div, NS_HTML5TREE_BUILDER_DIV_OR_BLOCKQUOTE_OR_CENTER_OR_MENU | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 595 ELT_EXP = new nsHtml5ElementName(nsHtml5Atoms::exp, nsHtml5Atoms::exp, NS_HTML5TREE_BUILDER_OTHER);
michael@0 596 ELT_GCD = new nsHtml5ElementName(nsHtml5Atoms::gcd, nsHtml5Atoms::gcd, NS_HTML5TREE_BUILDER_OTHER);
michael@0 597 ELT_GEQ = new nsHtml5ElementName(nsHtml5Atoms::geq, nsHtml5Atoms::geq, NS_HTML5TREE_BUILDER_OTHER);
michael@0 598 ELT_IMG = new nsHtml5ElementName(nsHtml5Atoms::img, nsHtml5Atoms::img, NS_HTML5TREE_BUILDER_IMG | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 599 ELT_INS = new nsHtml5ElementName(nsHtml5Atoms::ins, nsHtml5Atoms::ins, NS_HTML5TREE_BUILDER_OTHER);
michael@0 600 ELT_INT = new nsHtml5ElementName(nsHtml5Atoms::int_, nsHtml5Atoms::int_, NS_HTML5TREE_BUILDER_OTHER);
michael@0 601 ELT_KBD = new nsHtml5ElementName(nsHtml5Atoms::kbd, nsHtml5Atoms::kbd, NS_HTML5TREE_BUILDER_OTHER);
michael@0 602 ELT_LOG = new nsHtml5ElementName(nsHtml5Atoms::log, nsHtml5Atoms::log, NS_HTML5TREE_BUILDER_OTHER);
michael@0 603 ELT_LCM = new nsHtml5ElementName(nsHtml5Atoms::lcm, nsHtml5Atoms::lcm, NS_HTML5TREE_BUILDER_OTHER);
michael@0 604 ELT_LEQ = new nsHtml5ElementName(nsHtml5Atoms::leq, nsHtml5Atoms::leq, NS_HTML5TREE_BUILDER_OTHER);
michael@0 605 ELT_MTD = new nsHtml5ElementName(nsHtml5Atoms::mtd, nsHtml5Atoms::mtd, NS_HTML5TREE_BUILDER_OTHER);
michael@0 606 ELT_MIN = new nsHtml5ElementName(nsHtml5Atoms::min, nsHtml5Atoms::min, NS_HTML5TREE_BUILDER_OTHER);
michael@0 607 ELT_MAP = new nsHtml5ElementName(nsHtml5Atoms::map, nsHtml5Atoms::map, NS_HTML5TREE_BUILDER_OTHER);
michael@0 608 ELT_MTR = new nsHtml5ElementName(nsHtml5Atoms::mtr, nsHtml5Atoms::mtr, NS_HTML5TREE_BUILDER_OTHER);
michael@0 609 ELT_MAX = new nsHtml5ElementName(nsHtml5Atoms::max, nsHtml5Atoms::max, NS_HTML5TREE_BUILDER_OTHER);
michael@0 610 ELT_NEQ = new nsHtml5ElementName(nsHtml5Atoms::neq, nsHtml5Atoms::neq, NS_HTML5TREE_BUILDER_OTHER);
michael@0 611 ELT_NOT = new nsHtml5ElementName(nsHtml5Atoms::not_, nsHtml5Atoms::not_, NS_HTML5TREE_BUILDER_OTHER);
michael@0 612 ELT_NAV = new nsHtml5ElementName(nsHtml5Atoms::nav, nsHtml5Atoms::nav, NS_HTML5TREE_BUILDER_ADDRESS_OR_ARTICLE_OR_ASIDE_OR_DETAILS_OR_DIR_OR_FIGCAPTION_OR_FIGURE_OR_FOOTER_OR_HEADER_OR_HGROUP_OR_MAIN_OR_NAV_OR_SECTION_OR_SUMMARY | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 613 ELT_PRE = new nsHtml5ElementName(nsHtml5Atoms::pre, nsHtml5Atoms::pre, NS_HTML5TREE_BUILDER_PRE_OR_LISTING | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 614 ELT_REM = new nsHtml5ElementName(nsHtml5Atoms::rem, nsHtml5Atoms::rem, NS_HTML5TREE_BUILDER_OTHER);
michael@0 615 ELT_SUB = new nsHtml5ElementName(nsHtml5Atoms::sub, nsHtml5Atoms::sub, NS_HTML5TREE_BUILDER_RUBY_OR_SPAN_OR_SUB_OR_SUP_OR_VAR);
michael@0 616 ELT_SEC = new nsHtml5ElementName(nsHtml5Atoms::sec, nsHtml5Atoms::sec, NS_HTML5TREE_BUILDER_OTHER);
michael@0 617 ELT_SVG = new nsHtml5ElementName(nsHtml5Atoms::svg, nsHtml5Atoms::svg, NS_HTML5TREE_BUILDER_SVG);
michael@0 618 ELT_SUM = new nsHtml5ElementName(nsHtml5Atoms::sum, nsHtml5Atoms::sum, NS_HTML5TREE_BUILDER_OTHER);
michael@0 619 ELT_SIN = new nsHtml5ElementName(nsHtml5Atoms::sin, nsHtml5Atoms::sin, NS_HTML5TREE_BUILDER_OTHER);
michael@0 620 ELT_SEP = new nsHtml5ElementName(nsHtml5Atoms::sep, nsHtml5Atoms::sep, NS_HTML5TREE_BUILDER_OTHER);
michael@0 621 ELT_SUP = new nsHtml5ElementName(nsHtml5Atoms::sup, nsHtml5Atoms::sup, NS_HTML5TREE_BUILDER_RUBY_OR_SPAN_OR_SUB_OR_SUP_OR_VAR);
michael@0 622 ELT_SET = new nsHtml5ElementName(nsHtml5Atoms::set, nsHtml5Atoms::set, NS_HTML5TREE_BUILDER_OTHER);
michael@0 623 ELT_TAN = new nsHtml5ElementName(nsHtml5Atoms::tan, nsHtml5Atoms::tan, NS_HTML5TREE_BUILDER_OTHER);
michael@0 624 ELT_USE = new nsHtml5ElementName(nsHtml5Atoms::use, nsHtml5Atoms::use, NS_HTML5TREE_BUILDER_OTHER);
michael@0 625 ELT_VAR = new nsHtml5ElementName(nsHtml5Atoms::var, nsHtml5Atoms::var, NS_HTML5TREE_BUILDER_RUBY_OR_SPAN_OR_SUB_OR_SUP_OR_VAR);
michael@0 626 ELT_WBR = new nsHtml5ElementName(nsHtml5Atoms::wbr, nsHtml5Atoms::wbr, NS_HTML5TREE_BUILDER_AREA_OR_WBR | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 627 ELT_XMP = new nsHtml5ElementName(nsHtml5Atoms::xmp, nsHtml5Atoms::xmp, NS_HTML5TREE_BUILDER_XMP | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 628 ELT_XOR = new nsHtml5ElementName(nsHtml5Atoms::xor_, nsHtml5Atoms::xor_, NS_HTML5TREE_BUILDER_OTHER);
michael@0 629 ELT_AREA = new nsHtml5ElementName(nsHtml5Atoms::area, nsHtml5Atoms::area, NS_HTML5TREE_BUILDER_AREA_OR_WBR | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 630 ELT_ABBR = new nsHtml5ElementName(nsHtml5Atoms::abbr, nsHtml5Atoms::abbr, NS_HTML5TREE_BUILDER_OTHER);
michael@0 631 ELT_BASE = new nsHtml5ElementName(nsHtml5Atoms::base, nsHtml5Atoms::base, NS_HTML5TREE_BUILDER_BASE | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 632 ELT_BVAR = new nsHtml5ElementName(nsHtml5Atoms::bvar, nsHtml5Atoms::bvar, NS_HTML5TREE_BUILDER_OTHER);
michael@0 633 ELT_BODY = new nsHtml5ElementName(nsHtml5Atoms::body, nsHtml5Atoms::body, NS_HTML5TREE_BUILDER_BODY | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 634 ELT_CARD = new nsHtml5ElementName(nsHtml5Atoms::card, nsHtml5Atoms::card, NS_HTML5TREE_BUILDER_OTHER);
michael@0 635 ELT_CODE = new nsHtml5ElementName(nsHtml5Atoms::code, nsHtml5Atoms::code, NS_HTML5TREE_BUILDER_B_OR_BIG_OR_CODE_OR_EM_OR_I_OR_S_OR_SMALL_OR_STRIKE_OR_STRONG_OR_TT_OR_U);
michael@0 636 ELT_CITE = new nsHtml5ElementName(nsHtml5Atoms::cite, nsHtml5Atoms::cite, NS_HTML5TREE_BUILDER_OTHER);
michael@0 637 ELT_CSCH = new nsHtml5ElementName(nsHtml5Atoms::csch, nsHtml5Atoms::csch, NS_HTML5TREE_BUILDER_OTHER);
michael@0 638 ELT_COSH = new nsHtml5ElementName(nsHtml5Atoms::cosh, nsHtml5Atoms::cosh, NS_HTML5TREE_BUILDER_OTHER);
michael@0 639 ELT_COTH = new nsHtml5ElementName(nsHtml5Atoms::coth, nsHtml5Atoms::coth, NS_HTML5TREE_BUILDER_OTHER);
michael@0 640 ELT_CURL = new nsHtml5ElementName(nsHtml5Atoms::curl, nsHtml5Atoms::curl, NS_HTML5TREE_BUILDER_OTHER);
michael@0 641 ELT_DESC = new nsHtml5ElementName(nsHtml5Atoms::desc, nsHtml5Atoms::desc, NS_HTML5TREE_BUILDER_FOREIGNOBJECT_OR_DESC | NS_HTML5ELEMENT_NAME_SCOPING_AS_SVG);
michael@0 642 ELT_DIFF = new nsHtml5ElementName(nsHtml5Atoms::diff, nsHtml5Atoms::diff, NS_HTML5TREE_BUILDER_OTHER);
michael@0 643 ELT_DEFS = new nsHtml5ElementName(nsHtml5Atoms::defs, nsHtml5Atoms::defs, NS_HTML5TREE_BUILDER_OTHER);
michael@0 644 ELT_FORM = new nsHtml5ElementName(nsHtml5Atoms::form, nsHtml5Atoms::form, NS_HTML5TREE_BUILDER_FORM | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 645 ELT_FONT = new nsHtml5ElementName(nsHtml5Atoms::font, nsHtml5Atoms::font, NS_HTML5TREE_BUILDER_FONT);
michael@0 646 ELT_GRAD = new nsHtml5ElementName(nsHtml5Atoms::grad, nsHtml5Atoms::grad, NS_HTML5TREE_BUILDER_OTHER);
michael@0 647 ELT_HEAD = new nsHtml5ElementName(nsHtml5Atoms::head, nsHtml5Atoms::head, NS_HTML5TREE_BUILDER_HEAD | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 648 ELT_HTML = new nsHtml5ElementName(nsHtml5Atoms::html, nsHtml5Atoms::html, NS_HTML5TREE_BUILDER_HTML | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_SCOPING | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 649 ELT_LINE = new nsHtml5ElementName(nsHtml5Atoms::line, nsHtml5Atoms::line, NS_HTML5TREE_BUILDER_OTHER);
michael@0 650 ELT_LINK = new nsHtml5ElementName(nsHtml5Atoms::link, nsHtml5Atoms::link, NS_HTML5TREE_BUILDER_LINK_OR_BASEFONT_OR_BGSOUND | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 651 ELT_LIST = new nsHtml5ElementName(nsHtml5Atoms::list, nsHtml5Atoms::list, NS_HTML5TREE_BUILDER_OTHER);
michael@0 652 ELT_META = new nsHtml5ElementName(nsHtml5Atoms::meta, nsHtml5Atoms::meta, NS_HTML5TREE_BUILDER_META | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 653 ELT_MSUB = new nsHtml5ElementName(nsHtml5Atoms::msub, nsHtml5Atoms::msub, NS_HTML5TREE_BUILDER_OTHER);
michael@0 654 ELT_MODE = new nsHtml5ElementName(nsHtml5Atoms::mode, nsHtml5Atoms::mode, NS_HTML5TREE_BUILDER_OTHER);
michael@0 655 ELT_MATH = new nsHtml5ElementName(nsHtml5Atoms::math, nsHtml5Atoms::math, NS_HTML5TREE_BUILDER_MATH);
michael@0 656 ELT_MARK = new nsHtml5ElementName(nsHtml5Atoms::mark, nsHtml5Atoms::mark, NS_HTML5TREE_BUILDER_OTHER);
michael@0 657 ELT_MASK = new nsHtml5ElementName(nsHtml5Atoms::mask, nsHtml5Atoms::mask, NS_HTML5TREE_BUILDER_OTHER);
michael@0 658 ELT_MEAN = new nsHtml5ElementName(nsHtml5Atoms::mean, nsHtml5Atoms::mean, NS_HTML5TREE_BUILDER_OTHER);
michael@0 659 ELT_MAIN = new nsHtml5ElementName(nsHtml5Atoms::main, nsHtml5Atoms::main, NS_HTML5TREE_BUILDER_ADDRESS_OR_ARTICLE_OR_ASIDE_OR_DETAILS_OR_DIR_OR_FIGCAPTION_OR_FIGURE_OR_FOOTER_OR_HEADER_OR_HGROUP_OR_MAIN_OR_NAV_OR_SECTION_OR_SUMMARY | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 660 ELT_MSUP = new nsHtml5ElementName(nsHtml5Atoms::msup, nsHtml5Atoms::msup, NS_HTML5TREE_BUILDER_OTHER);
michael@0 661 ELT_MENU = new nsHtml5ElementName(nsHtml5Atoms::menu, nsHtml5Atoms::menu, NS_HTML5TREE_BUILDER_DIV_OR_BLOCKQUOTE_OR_CENTER_OR_MENU | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 662 ELT_MROW = new nsHtml5ElementName(nsHtml5Atoms::mrow, nsHtml5Atoms::mrow, NS_HTML5TREE_BUILDER_OTHER);
michael@0 663 ELT_NONE = new nsHtml5ElementName(nsHtml5Atoms::none, nsHtml5Atoms::none, NS_HTML5TREE_BUILDER_OTHER);
michael@0 664 ELT_NOBR = new nsHtml5ElementName(nsHtml5Atoms::nobr, nsHtml5Atoms::nobr, NS_HTML5TREE_BUILDER_NOBR);
michael@0 665 ELT_NEST = new nsHtml5ElementName(nsHtml5Atoms::nest, nsHtml5Atoms::nest, NS_HTML5TREE_BUILDER_OTHER);
michael@0 666 ELT_PATH = new nsHtml5ElementName(nsHtml5Atoms::path, nsHtml5Atoms::path, NS_HTML5TREE_BUILDER_OTHER);
michael@0 667 ELT_PLUS = new nsHtml5ElementName(nsHtml5Atoms::plus, nsHtml5Atoms::plus, NS_HTML5TREE_BUILDER_OTHER);
michael@0 668 ELT_RULE = new nsHtml5ElementName(nsHtml5Atoms::rule, nsHtml5Atoms::rule, NS_HTML5TREE_BUILDER_OTHER);
michael@0 669 ELT_REAL = new nsHtml5ElementName(nsHtml5Atoms::real, nsHtml5Atoms::real, NS_HTML5TREE_BUILDER_OTHER);
michael@0 670 ELT_RELN = new nsHtml5ElementName(nsHtml5Atoms::reln, nsHtml5Atoms::reln, NS_HTML5TREE_BUILDER_OTHER);
michael@0 671 ELT_RECT = new nsHtml5ElementName(nsHtml5Atoms::rect, nsHtml5Atoms::rect, NS_HTML5TREE_BUILDER_OTHER);
michael@0 672 ELT_ROOT = new nsHtml5ElementName(nsHtml5Atoms::root, nsHtml5Atoms::root, NS_HTML5TREE_BUILDER_OTHER);
michael@0 673 ELT_RUBY = new nsHtml5ElementName(nsHtml5Atoms::ruby, nsHtml5Atoms::ruby, NS_HTML5TREE_BUILDER_RUBY_OR_SPAN_OR_SUB_OR_SUP_OR_VAR);
michael@0 674 ELT_SECH = new nsHtml5ElementName(nsHtml5Atoms::sech, nsHtml5Atoms::sech, NS_HTML5TREE_BUILDER_OTHER);
michael@0 675 ELT_SINH = new nsHtml5ElementName(nsHtml5Atoms::sinh, nsHtml5Atoms::sinh, NS_HTML5TREE_BUILDER_OTHER);
michael@0 676 ELT_SPAN = new nsHtml5ElementName(nsHtml5Atoms::span, nsHtml5Atoms::span, NS_HTML5TREE_BUILDER_RUBY_OR_SPAN_OR_SUB_OR_SUP_OR_VAR);
michael@0 677 ELT_SAMP = new nsHtml5ElementName(nsHtml5Atoms::samp, nsHtml5Atoms::samp, NS_HTML5TREE_BUILDER_OTHER);
michael@0 678 ELT_STOP = new nsHtml5ElementName(nsHtml5Atoms::stop, nsHtml5Atoms::stop, NS_HTML5TREE_BUILDER_OTHER);
michael@0 679 ELT_SDEV = new nsHtml5ElementName(nsHtml5Atoms::sdev, nsHtml5Atoms::sdev, NS_HTML5TREE_BUILDER_OTHER);
michael@0 680 ELT_TIME = new nsHtml5ElementName(nsHtml5Atoms::time, nsHtml5Atoms::time, NS_HTML5TREE_BUILDER_OTHER);
michael@0 681 ELT_TRUE = new nsHtml5ElementName(nsHtml5Atoms::true_, nsHtml5Atoms::true_, NS_HTML5TREE_BUILDER_OTHER);
michael@0 682 ELT_TREF = new nsHtml5ElementName(nsHtml5Atoms::tref, nsHtml5Atoms::tref, NS_HTML5TREE_BUILDER_OTHER);
michael@0 683 ELT_TANH = new nsHtml5ElementName(nsHtml5Atoms::tanh, nsHtml5Atoms::tanh, NS_HTML5TREE_BUILDER_OTHER);
michael@0 684 ELT_TEXT = new nsHtml5ElementName(nsHtml5Atoms::text, nsHtml5Atoms::text, NS_HTML5TREE_BUILDER_OTHER);
michael@0 685 ELT_VIEW = new nsHtml5ElementName(nsHtml5Atoms::view, nsHtml5Atoms::view, NS_HTML5TREE_BUILDER_OTHER);
michael@0 686 ELT_ASIDE = new nsHtml5ElementName(nsHtml5Atoms::aside, nsHtml5Atoms::aside, NS_HTML5TREE_BUILDER_ADDRESS_OR_ARTICLE_OR_ASIDE_OR_DETAILS_OR_DIR_OR_FIGCAPTION_OR_FIGURE_OR_FOOTER_OR_HEADER_OR_HGROUP_OR_MAIN_OR_NAV_OR_SECTION_OR_SUMMARY | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 687 ELT_AUDIO = new nsHtml5ElementName(nsHtml5Atoms::audio, nsHtml5Atoms::audio, NS_HTML5TREE_BUILDER_OTHER);
michael@0 688 ELT_APPLY = new nsHtml5ElementName(nsHtml5Atoms::apply, nsHtml5Atoms::apply, NS_HTML5TREE_BUILDER_OTHER);
michael@0 689 ELT_EMBED = new nsHtml5ElementName(nsHtml5Atoms::embed, nsHtml5Atoms::embed, NS_HTML5TREE_BUILDER_EMBED | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 690 ELT_FRAME = new nsHtml5ElementName(nsHtml5Atoms::frame, nsHtml5Atoms::frame, NS_HTML5TREE_BUILDER_FRAME | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 691 ELT_FALSE = new nsHtml5ElementName(nsHtml5Atoms::false_, nsHtml5Atoms::false_, NS_HTML5TREE_BUILDER_OTHER);
michael@0 692 ELT_FLOOR = new nsHtml5ElementName(nsHtml5Atoms::floor, nsHtml5Atoms::floor, NS_HTML5TREE_BUILDER_OTHER);
michael@0 693 ELT_GLYPH = new nsHtml5ElementName(nsHtml5Atoms::glyph, nsHtml5Atoms::glyph, NS_HTML5TREE_BUILDER_OTHER);
michael@0 694 ELT_HKERN = new nsHtml5ElementName(nsHtml5Atoms::hkern, nsHtml5Atoms::hkern, NS_HTML5TREE_BUILDER_OTHER);
michael@0 695 ELT_IMAGE = new nsHtml5ElementName(nsHtml5Atoms::image, nsHtml5Atoms::image, NS_HTML5TREE_BUILDER_IMAGE);
michael@0 696 ELT_IDENT = new nsHtml5ElementName(nsHtml5Atoms::ident, nsHtml5Atoms::ident, NS_HTML5TREE_BUILDER_OTHER);
michael@0 697 ELT_INPUT = new nsHtml5ElementName(nsHtml5Atoms::input, nsHtml5Atoms::input, NS_HTML5TREE_BUILDER_INPUT | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 698 ELT_LABEL = new nsHtml5ElementName(nsHtml5Atoms::label, nsHtml5Atoms::label, NS_HTML5TREE_BUILDER_OUTPUT_OR_LABEL);
michael@0 699 ELT_LIMIT = new nsHtml5ElementName(nsHtml5Atoms::limit, nsHtml5Atoms::limit, NS_HTML5TREE_BUILDER_OTHER);
michael@0 700 ELT_MFRAC = new nsHtml5ElementName(nsHtml5Atoms::mfrac, nsHtml5Atoms::mfrac, NS_HTML5TREE_BUILDER_OTHER);
michael@0 701 ELT_MPATH = new nsHtml5ElementName(nsHtml5Atoms::mpath, nsHtml5Atoms::mpath, NS_HTML5TREE_BUILDER_OTHER);
michael@0 702 ELT_METER = new nsHtml5ElementName(nsHtml5Atoms::meter, nsHtml5Atoms::meter, NS_HTML5TREE_BUILDER_OTHER);
michael@0 703 ELT_MOVER = new nsHtml5ElementName(nsHtml5Atoms::mover, nsHtml5Atoms::mover, NS_HTML5TREE_BUILDER_OTHER);
michael@0 704 ELT_MINUS = new nsHtml5ElementName(nsHtml5Atoms::minus, nsHtml5Atoms::minus, NS_HTML5TREE_BUILDER_OTHER);
michael@0 705 ELT_MROOT = new nsHtml5ElementName(nsHtml5Atoms::mroot, nsHtml5Atoms::mroot, NS_HTML5TREE_BUILDER_OTHER);
michael@0 706 ELT_MSQRT = new nsHtml5ElementName(nsHtml5Atoms::msqrt, nsHtml5Atoms::msqrt, NS_HTML5TREE_BUILDER_OTHER);
michael@0 707 ELT_MTEXT = new nsHtml5ElementName(nsHtml5Atoms::mtext, nsHtml5Atoms::mtext, NS_HTML5TREE_BUILDER_MI_MO_MN_MS_MTEXT | NS_HTML5ELEMENT_NAME_SCOPING_AS_MATHML);
michael@0 708 ELT_NOTIN = new nsHtml5ElementName(nsHtml5Atoms::notin, nsHtml5Atoms::notin, NS_HTML5TREE_BUILDER_OTHER);
michael@0 709 ELT_PIECE = new nsHtml5ElementName(nsHtml5Atoms::piece, nsHtml5Atoms::piece, NS_HTML5TREE_BUILDER_OTHER);
michael@0 710 ELT_PARAM = new nsHtml5ElementName(nsHtml5Atoms::param, nsHtml5Atoms::param, NS_HTML5TREE_BUILDER_PARAM_OR_SOURCE_OR_TRACK | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 711 ELT_POWER = new nsHtml5ElementName(nsHtml5Atoms::power, nsHtml5Atoms::power, NS_HTML5TREE_BUILDER_OTHER);
michael@0 712 ELT_REALS = new nsHtml5ElementName(nsHtml5Atoms::reals, nsHtml5Atoms::reals, NS_HTML5TREE_BUILDER_OTHER);
michael@0 713 ELT_STYLE = new nsHtml5ElementName(nsHtml5Atoms::style, nsHtml5Atoms::style, NS_HTML5TREE_BUILDER_STYLE | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 714 ELT_SMALL = new nsHtml5ElementName(nsHtml5Atoms::small_, nsHtml5Atoms::small_, NS_HTML5TREE_BUILDER_B_OR_BIG_OR_CODE_OR_EM_OR_I_OR_S_OR_SMALL_OR_STRIKE_OR_STRONG_OR_TT_OR_U);
michael@0 715 ELT_THEAD = new nsHtml5ElementName(nsHtml5Atoms::thead, nsHtml5Atoms::thead, NS_HTML5TREE_BUILDER_TBODY_OR_THEAD_OR_TFOOT | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_FOSTER_PARENTING | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 716 ELT_TABLE = new nsHtml5ElementName(nsHtml5Atoms::table, nsHtml5Atoms::table, NS_HTML5TREE_BUILDER_TABLE | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_FOSTER_PARENTING | NS_HTML5ELEMENT_NAME_SCOPING);
michael@0 717 ELT_TITLE = new nsHtml5ElementName(nsHtml5Atoms::title, nsHtml5Atoms::title, NS_HTML5TREE_BUILDER_TITLE | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_SCOPING_AS_SVG);
michael@0 718 ELT_TRACK = new nsHtml5ElementName(nsHtml5Atoms::track, nsHtml5Atoms::track, NS_HTML5TREE_BUILDER_PARAM_OR_SOURCE_OR_TRACK | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 719 ELT_TSPAN = new nsHtml5ElementName(nsHtml5Atoms::tspan, nsHtml5Atoms::tspan, NS_HTML5TREE_BUILDER_OTHER);
michael@0 720 ELT_TIMES = new nsHtml5ElementName(nsHtml5Atoms::times, nsHtml5Atoms::times, NS_HTML5TREE_BUILDER_OTHER);
michael@0 721 ELT_TFOOT = new nsHtml5ElementName(nsHtml5Atoms::tfoot, nsHtml5Atoms::tfoot, NS_HTML5TREE_BUILDER_TBODY_OR_THEAD_OR_TFOOT | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_FOSTER_PARENTING | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 722 ELT_TBODY = new nsHtml5ElementName(nsHtml5Atoms::tbody, nsHtml5Atoms::tbody, NS_HTML5TREE_BUILDER_TBODY_OR_THEAD_OR_TFOOT | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_FOSTER_PARENTING | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 723 ELT_UNION = new nsHtml5ElementName(nsHtml5Atoms::union_, nsHtml5Atoms::union_, NS_HTML5TREE_BUILDER_OTHER);
michael@0 724 ELT_VKERN = new nsHtml5ElementName(nsHtml5Atoms::vkern, nsHtml5Atoms::vkern, NS_HTML5TREE_BUILDER_OTHER);
michael@0 725 ELT_VIDEO = new nsHtml5ElementName(nsHtml5Atoms::video, nsHtml5Atoms::video, NS_HTML5TREE_BUILDER_OTHER);
michael@0 726 ELT_ARCSEC = new nsHtml5ElementName(nsHtml5Atoms::arcsec, nsHtml5Atoms::arcsec, NS_HTML5TREE_BUILDER_OTHER);
michael@0 727 ELT_ARCCSC = new nsHtml5ElementName(nsHtml5Atoms::arccsc, nsHtml5Atoms::arccsc, NS_HTML5TREE_BUILDER_OTHER);
michael@0 728 ELT_ARCTAN = new nsHtml5ElementName(nsHtml5Atoms::arctan, nsHtml5Atoms::arctan, NS_HTML5TREE_BUILDER_OTHER);
michael@0 729 ELT_ARCSIN = new nsHtml5ElementName(nsHtml5Atoms::arcsin, nsHtml5Atoms::arcsin, NS_HTML5TREE_BUILDER_OTHER);
michael@0 730 ELT_ARCCOS = new nsHtml5ElementName(nsHtml5Atoms::arccos, nsHtml5Atoms::arccos, NS_HTML5TREE_BUILDER_OTHER);
michael@0 731 ELT_APPLET = new nsHtml5ElementName(nsHtml5Atoms::applet, nsHtml5Atoms::applet, NS_HTML5TREE_BUILDER_MARQUEE_OR_APPLET | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_SCOPING);
michael@0 732 ELT_ARCCOT = new nsHtml5ElementName(nsHtml5Atoms::arccot, nsHtml5Atoms::arccot, NS_HTML5TREE_BUILDER_OTHER);
michael@0 733 ELT_APPROX = new nsHtml5ElementName(nsHtml5Atoms::approx, nsHtml5Atoms::approx, NS_HTML5TREE_BUILDER_OTHER);
michael@0 734 ELT_BUTTON = new nsHtml5ElementName(nsHtml5Atoms::button, nsHtml5Atoms::button, NS_HTML5TREE_BUILDER_BUTTON | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 735 ELT_CIRCLE = new nsHtml5ElementName(nsHtml5Atoms::circle, nsHtml5Atoms::circle, NS_HTML5TREE_BUILDER_OTHER);
michael@0 736 ELT_CENTER = new nsHtml5ElementName(nsHtml5Atoms::center, nsHtml5Atoms::center, NS_HTML5TREE_BUILDER_DIV_OR_BLOCKQUOTE_OR_CENTER_OR_MENU | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 737 ELT_CURSOR = new nsHtml5ElementName(nsHtml5Atoms::cursor, nsHtml5Atoms::cursor, NS_HTML5TREE_BUILDER_OTHER);
michael@0 738 ELT_CANVAS = new nsHtml5ElementName(nsHtml5Atoms::canvas, nsHtml5Atoms::canvas, NS_HTML5TREE_BUILDER_OTHER);
michael@0 739 ELT_DIVIDE = new nsHtml5ElementName(nsHtml5Atoms::divide, nsHtml5Atoms::divide, NS_HTML5TREE_BUILDER_OTHER);
michael@0 740 ELT_DEGREE = new nsHtml5ElementName(nsHtml5Atoms::degree, nsHtml5Atoms::degree, NS_HTML5TREE_BUILDER_OTHER);
michael@0 741 ELT_DOMAIN = new nsHtml5ElementName(nsHtml5Atoms::domain, nsHtml5Atoms::domain, NS_HTML5TREE_BUILDER_OTHER);
michael@0 742 ELT_EXISTS = new nsHtml5ElementName(nsHtml5Atoms::exists, nsHtml5Atoms::exists, NS_HTML5TREE_BUILDER_OTHER);
michael@0 743 ELT_FETILE = new nsHtml5ElementName(nsHtml5Atoms::fetile, nsHtml5Atoms::feTile, NS_HTML5TREE_BUILDER_OTHER);
michael@0 744 ELT_FIGURE = new nsHtml5ElementName(nsHtml5Atoms::figure, nsHtml5Atoms::figure, NS_HTML5TREE_BUILDER_ADDRESS_OR_ARTICLE_OR_ASIDE_OR_DETAILS_OR_DIR_OR_FIGCAPTION_OR_FIGURE_OR_FOOTER_OR_HEADER_OR_HGROUP_OR_MAIN_OR_NAV_OR_SECTION_OR_SUMMARY | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 745 ELT_FORALL = new nsHtml5ElementName(nsHtml5Atoms::forall, nsHtml5Atoms::forall, NS_HTML5TREE_BUILDER_OTHER);
michael@0 746 ELT_FILTER = new nsHtml5ElementName(nsHtml5Atoms::filter, nsHtml5Atoms::filter, NS_HTML5TREE_BUILDER_OTHER);
michael@0 747 ELT_FOOTER = new nsHtml5ElementName(nsHtml5Atoms::footer, nsHtml5Atoms::footer, NS_HTML5TREE_BUILDER_ADDRESS_OR_ARTICLE_OR_ASIDE_OR_DETAILS_OR_DIR_OR_FIGCAPTION_OR_FIGURE_OR_FOOTER_OR_HEADER_OR_HGROUP_OR_MAIN_OR_NAV_OR_SECTION_OR_SUMMARY | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 748 ELT_HGROUP = new nsHtml5ElementName(nsHtml5Atoms::hgroup, nsHtml5Atoms::hgroup, NS_HTML5TREE_BUILDER_ADDRESS_OR_ARTICLE_OR_ASIDE_OR_DETAILS_OR_DIR_OR_FIGCAPTION_OR_FIGURE_OR_FOOTER_OR_HEADER_OR_HGROUP_OR_MAIN_OR_NAV_OR_SECTION_OR_SUMMARY | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 749 ELT_HEADER = new nsHtml5ElementName(nsHtml5Atoms::header, nsHtml5Atoms::header, NS_HTML5TREE_BUILDER_ADDRESS_OR_ARTICLE_OR_ASIDE_OR_DETAILS_OR_DIR_OR_FIGCAPTION_OR_FIGURE_OR_FOOTER_OR_HEADER_OR_HGROUP_OR_MAIN_OR_NAV_OR_SECTION_OR_SUMMARY | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 750 ELT_IFRAME = new nsHtml5ElementName(nsHtml5Atoms::iframe, nsHtml5Atoms::iframe, NS_HTML5TREE_BUILDER_IFRAME | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 751 ELT_KEYGEN = new nsHtml5ElementName(nsHtml5Atoms::keygen, nsHtml5Atoms::keygen, NS_HTML5TREE_BUILDER_KEYGEN);
michael@0 752 ELT_LAMBDA = new nsHtml5ElementName(nsHtml5Atoms::lambda, nsHtml5Atoms::lambda, NS_HTML5TREE_BUILDER_OTHER);
michael@0 753 ELT_LEGEND = new nsHtml5ElementName(nsHtml5Atoms::legend, nsHtml5Atoms::legend, NS_HTML5TREE_BUILDER_OTHER);
michael@0 754 ELT_MSPACE = new nsHtml5ElementName(nsHtml5Atoms::mspace, nsHtml5Atoms::mspace, NS_HTML5TREE_BUILDER_OTHER);
michael@0 755 ELT_MTABLE = new nsHtml5ElementName(nsHtml5Atoms::mtable, nsHtml5Atoms::mtable, NS_HTML5TREE_BUILDER_OTHER);
michael@0 756 ELT_MSTYLE = new nsHtml5ElementName(nsHtml5Atoms::mstyle, nsHtml5Atoms::mstyle, NS_HTML5TREE_BUILDER_OTHER);
michael@0 757 ELT_MGLYPH = new nsHtml5ElementName(nsHtml5Atoms::mglyph, nsHtml5Atoms::mglyph, NS_HTML5TREE_BUILDER_MGLYPH_OR_MALIGNMARK);
michael@0 758 ELT_MEDIAN = new nsHtml5ElementName(nsHtml5Atoms::median, nsHtml5Atoms::median, NS_HTML5TREE_BUILDER_OTHER);
michael@0 759 ELT_MUNDER = new nsHtml5ElementName(nsHtml5Atoms::munder, nsHtml5Atoms::munder, NS_HTML5TREE_BUILDER_OTHER);
michael@0 760 ELT_MARKER = new nsHtml5ElementName(nsHtml5Atoms::marker, nsHtml5Atoms::marker, NS_HTML5TREE_BUILDER_OTHER);
michael@0 761 ELT_MERROR = new nsHtml5ElementName(nsHtml5Atoms::merror, nsHtml5Atoms::merror, NS_HTML5TREE_BUILDER_OTHER);
michael@0 762 ELT_MOMENT = new nsHtml5ElementName(nsHtml5Atoms::moment, nsHtml5Atoms::moment, NS_HTML5TREE_BUILDER_OTHER);
michael@0 763 ELT_MATRIX = new nsHtml5ElementName(nsHtml5Atoms::matrix, nsHtml5Atoms::matrix, NS_HTML5TREE_BUILDER_OTHER);
michael@0 764 ELT_OPTION = new nsHtml5ElementName(nsHtml5Atoms::option, nsHtml5Atoms::option, NS_HTML5TREE_BUILDER_OPTION | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 765 ELT_OBJECT = new nsHtml5ElementName(nsHtml5Atoms::object, nsHtml5Atoms::object, NS_HTML5TREE_BUILDER_OBJECT | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_SCOPING);
michael@0 766 ELT_OUTPUT = new nsHtml5ElementName(nsHtml5Atoms::output, nsHtml5Atoms::output, NS_HTML5TREE_BUILDER_OUTPUT_OR_LABEL);
michael@0 767 ELT_PRIMES = new nsHtml5ElementName(nsHtml5Atoms::primes, nsHtml5Atoms::primes, NS_HTML5TREE_BUILDER_OTHER);
michael@0 768 ELT_SOURCE = new nsHtml5ElementName(nsHtml5Atoms::source, nsHtml5Atoms::source, NS_HTML5TREE_BUILDER_PARAM_OR_SOURCE_OR_TRACK);
michael@0 769 ELT_STRIKE = new nsHtml5ElementName(nsHtml5Atoms::strike, nsHtml5Atoms::strike, NS_HTML5TREE_BUILDER_B_OR_BIG_OR_CODE_OR_EM_OR_I_OR_S_OR_SMALL_OR_STRIKE_OR_STRONG_OR_TT_OR_U);
michael@0 770 ELT_STRONG = new nsHtml5ElementName(nsHtml5Atoms::strong, nsHtml5Atoms::strong, NS_HTML5TREE_BUILDER_B_OR_BIG_OR_CODE_OR_EM_OR_I_OR_S_OR_SMALL_OR_STRIKE_OR_STRONG_OR_TT_OR_U);
michael@0 771 ELT_SWITCH = new nsHtml5ElementName(nsHtml5Atoms::switch_, nsHtml5Atoms::switch_, NS_HTML5TREE_BUILDER_OTHER);
michael@0 772 ELT_SYMBOL = new nsHtml5ElementName(nsHtml5Atoms::symbol, nsHtml5Atoms::symbol, NS_HTML5TREE_BUILDER_OTHER);
michael@0 773 ELT_SELECT = new nsHtml5ElementName(nsHtml5Atoms::select, nsHtml5Atoms::select, NS_HTML5TREE_BUILDER_SELECT | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 774 ELT_SUBSET = new nsHtml5ElementName(nsHtml5Atoms::subset, nsHtml5Atoms::subset, NS_HTML5TREE_BUILDER_OTHER);
michael@0 775 ELT_SCRIPT = new nsHtml5ElementName(nsHtml5Atoms::script, nsHtml5Atoms::script, NS_HTML5TREE_BUILDER_SCRIPT | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 776 ELT_TBREAK = new nsHtml5ElementName(nsHtml5Atoms::tbreak, nsHtml5Atoms::tbreak, NS_HTML5TREE_BUILDER_OTHER);
michael@0 777 ELT_VECTOR = new nsHtml5ElementName(nsHtml5Atoms::vector, nsHtml5Atoms::vector, NS_HTML5TREE_BUILDER_OTHER);
michael@0 778 ELT_ARTICLE = new nsHtml5ElementName(nsHtml5Atoms::article, nsHtml5Atoms::article, NS_HTML5TREE_BUILDER_ADDRESS_OR_ARTICLE_OR_ASIDE_OR_DETAILS_OR_DIR_OR_FIGCAPTION_OR_FIGURE_OR_FOOTER_OR_HEADER_OR_HGROUP_OR_MAIN_OR_NAV_OR_SECTION_OR_SUMMARY | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 779 ELT_ANIMATE = new nsHtml5ElementName(nsHtml5Atoms::animate, nsHtml5Atoms::animate, NS_HTML5TREE_BUILDER_OTHER);
michael@0 780 ELT_ARCSECH = new nsHtml5ElementName(nsHtml5Atoms::arcsech, nsHtml5Atoms::arcsech, NS_HTML5TREE_BUILDER_OTHER);
michael@0 781 ELT_ARCCSCH = new nsHtml5ElementName(nsHtml5Atoms::arccsch, nsHtml5Atoms::arccsch, NS_HTML5TREE_BUILDER_OTHER);
michael@0 782 ELT_ARCTANH = new nsHtml5ElementName(nsHtml5Atoms::arctanh, nsHtml5Atoms::arctanh, NS_HTML5TREE_BUILDER_OTHER);
michael@0 783 ELT_ARCSINH = new nsHtml5ElementName(nsHtml5Atoms::arcsinh, nsHtml5Atoms::arcsinh, NS_HTML5TREE_BUILDER_OTHER);
michael@0 784 ELT_ARCCOSH = new nsHtml5ElementName(nsHtml5Atoms::arccosh, nsHtml5Atoms::arccosh, NS_HTML5TREE_BUILDER_OTHER);
michael@0 785 ELT_ARCCOTH = new nsHtml5ElementName(nsHtml5Atoms::arccoth, nsHtml5Atoms::arccoth, NS_HTML5TREE_BUILDER_OTHER);
michael@0 786 ELT_ACRONYM = new nsHtml5ElementName(nsHtml5Atoms::acronym, nsHtml5Atoms::acronym, NS_HTML5TREE_BUILDER_OTHER);
michael@0 787 ELT_ADDRESS = new nsHtml5ElementName(nsHtml5Atoms::address, nsHtml5Atoms::address, NS_HTML5TREE_BUILDER_ADDRESS_OR_ARTICLE_OR_ASIDE_OR_DETAILS_OR_DIR_OR_FIGCAPTION_OR_FIGURE_OR_FOOTER_OR_HEADER_OR_HGROUP_OR_MAIN_OR_NAV_OR_SECTION_OR_SUMMARY | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 788 ELT_BGSOUND = new nsHtml5ElementName(nsHtml5Atoms::bgsound, nsHtml5Atoms::bgsound, NS_HTML5TREE_BUILDER_LINK_OR_BASEFONT_OR_BGSOUND | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 789 ELT_COMPOSE = new nsHtml5ElementName(nsHtml5Atoms::compose, nsHtml5Atoms::compose, NS_HTML5TREE_BUILDER_OTHER);
michael@0 790 ELT_CEILING = new nsHtml5ElementName(nsHtml5Atoms::ceiling, nsHtml5Atoms::ceiling, NS_HTML5TREE_BUILDER_OTHER);
michael@0 791 ELT_CSYMBOL = new nsHtml5ElementName(nsHtml5Atoms::csymbol, nsHtml5Atoms::csymbol, NS_HTML5TREE_BUILDER_OTHER);
michael@0 792 ELT_CAPTION = new nsHtml5ElementName(nsHtml5Atoms::caption, nsHtml5Atoms::caption, NS_HTML5TREE_BUILDER_CAPTION | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_SCOPING);
michael@0 793 ELT_DISCARD = new nsHtml5ElementName(nsHtml5Atoms::discard, nsHtml5Atoms::discard, NS_HTML5TREE_BUILDER_OTHER);
michael@0 794 ELT_DECLARE = new nsHtml5ElementName(nsHtml5Atoms::declare, nsHtml5Atoms::declare, NS_HTML5TREE_BUILDER_OTHER);
michael@0 795 ELT_DETAILS = new nsHtml5ElementName(nsHtml5Atoms::details, nsHtml5Atoms::details, NS_HTML5TREE_BUILDER_ADDRESS_OR_ARTICLE_OR_ASIDE_OR_DETAILS_OR_DIR_OR_FIGCAPTION_OR_FIGURE_OR_FOOTER_OR_HEADER_OR_HGROUP_OR_MAIN_OR_NAV_OR_SECTION_OR_SUMMARY | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 796 ELT_ELLIPSE = new nsHtml5ElementName(nsHtml5Atoms::ellipse, nsHtml5Atoms::ellipse, NS_HTML5TREE_BUILDER_OTHER);
michael@0 797 ELT_FEFUNCA = new nsHtml5ElementName(nsHtml5Atoms::fefunca, nsHtml5Atoms::feFuncA, NS_HTML5TREE_BUILDER_OTHER);
michael@0 798 ELT_FEFUNCB = new nsHtml5ElementName(nsHtml5Atoms::fefuncb, nsHtml5Atoms::feFuncB, NS_HTML5TREE_BUILDER_OTHER);
michael@0 799 ELT_FEBLEND = new nsHtml5ElementName(nsHtml5Atoms::feblend, nsHtml5Atoms::feBlend, NS_HTML5TREE_BUILDER_OTHER);
michael@0 800 ELT_FEFLOOD = new nsHtml5ElementName(nsHtml5Atoms::feflood, nsHtml5Atoms::feFlood, NS_HTML5TREE_BUILDER_OTHER);
michael@0 801 ELT_FEIMAGE = new nsHtml5ElementName(nsHtml5Atoms::feimage, nsHtml5Atoms::feImage, NS_HTML5TREE_BUILDER_OTHER);
michael@0 802 ELT_FEMERGE = new nsHtml5ElementName(nsHtml5Atoms::femerge, nsHtml5Atoms::feMerge, NS_HTML5TREE_BUILDER_OTHER);
michael@0 803 ELT_FEFUNCG = new nsHtml5ElementName(nsHtml5Atoms::fefuncg, nsHtml5Atoms::feFuncG, NS_HTML5TREE_BUILDER_OTHER);
michael@0 804 ELT_FEFUNCR = new nsHtml5ElementName(nsHtml5Atoms::fefuncr, nsHtml5Atoms::feFuncR, NS_HTML5TREE_BUILDER_OTHER);
michael@0 805 ELT_HANDLER = new nsHtml5ElementName(nsHtml5Atoms::handler, nsHtml5Atoms::handler, NS_HTML5TREE_BUILDER_OTHER);
michael@0 806 ELT_INVERSE = new nsHtml5ElementName(nsHtml5Atoms::inverse, nsHtml5Atoms::inverse, NS_HTML5TREE_BUILDER_OTHER);
michael@0 807 ELT_IMPLIES = new nsHtml5ElementName(nsHtml5Atoms::implies, nsHtml5Atoms::implies, NS_HTML5TREE_BUILDER_OTHER);
michael@0 808 ELT_ISINDEX = new nsHtml5ElementName(nsHtml5Atoms::isindex, nsHtml5Atoms::isindex, NS_HTML5TREE_BUILDER_ISINDEX | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 809 ELT_LOGBASE = new nsHtml5ElementName(nsHtml5Atoms::logbase, nsHtml5Atoms::logbase, NS_HTML5TREE_BUILDER_OTHER);
michael@0 810 ELT_LISTING = new nsHtml5ElementName(nsHtml5Atoms::listing, nsHtml5Atoms::listing, NS_HTML5TREE_BUILDER_PRE_OR_LISTING | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 811 ELT_MFENCED = new nsHtml5ElementName(nsHtml5Atoms::mfenced, nsHtml5Atoms::mfenced, NS_HTML5TREE_BUILDER_OTHER);
michael@0 812 ELT_MPADDED = new nsHtml5ElementName(nsHtml5Atoms::mpadded, nsHtml5Atoms::mpadded, NS_HTML5TREE_BUILDER_OTHER);
michael@0 813 ELT_MARQUEE = new nsHtml5ElementName(nsHtml5Atoms::marquee, nsHtml5Atoms::marquee, NS_HTML5TREE_BUILDER_MARQUEE_OR_APPLET | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_SCOPING);
michael@0 814 ELT_MACTION = new nsHtml5ElementName(nsHtml5Atoms::maction, nsHtml5Atoms::maction, NS_HTML5TREE_BUILDER_OTHER);
michael@0 815 ELT_MSUBSUP = new nsHtml5ElementName(nsHtml5Atoms::msubsup, nsHtml5Atoms::msubsup, NS_HTML5TREE_BUILDER_OTHER);
michael@0 816 ELT_NOEMBED = new nsHtml5ElementName(nsHtml5Atoms::noembed, nsHtml5Atoms::noembed, NS_HTML5TREE_BUILDER_NOEMBED | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 817 ELT_POLYGON = new nsHtml5ElementName(nsHtml5Atoms::polygon, nsHtml5Atoms::polygon, NS_HTML5TREE_BUILDER_OTHER);
michael@0 818 ELT_PATTERN = new nsHtml5ElementName(nsHtml5Atoms::pattern, nsHtml5Atoms::pattern, NS_HTML5TREE_BUILDER_OTHER);
michael@0 819 ELT_PRODUCT = new nsHtml5ElementName(nsHtml5Atoms::product, nsHtml5Atoms::product, NS_HTML5TREE_BUILDER_OTHER);
michael@0 820 ELT_SETDIFF = new nsHtml5ElementName(nsHtml5Atoms::setdiff, nsHtml5Atoms::setdiff, NS_HTML5TREE_BUILDER_OTHER);
michael@0 821 ELT_SECTION = new nsHtml5ElementName(nsHtml5Atoms::section, nsHtml5Atoms::section, NS_HTML5TREE_BUILDER_ADDRESS_OR_ARTICLE_OR_ASIDE_OR_DETAILS_OR_DIR_OR_FIGCAPTION_OR_FIGURE_OR_FOOTER_OR_HEADER_OR_HGROUP_OR_MAIN_OR_NAV_OR_SECTION_OR_SUMMARY | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 822 ELT_SUMMARY = new nsHtml5ElementName(nsHtml5Atoms::summary, nsHtml5Atoms::summary, NS_HTML5TREE_BUILDER_ADDRESS_OR_ARTICLE_OR_ASIDE_OR_DETAILS_OR_DIR_OR_FIGCAPTION_OR_FIGURE_OR_FOOTER_OR_HEADER_OR_HGROUP_OR_MAIN_OR_NAV_OR_SECTION_OR_SUMMARY | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 823 ELT_TENDSTO = new nsHtml5ElementName(nsHtml5Atoms::tendsto, nsHtml5Atoms::tendsto, NS_HTML5TREE_BUILDER_OTHER);
michael@0 824 ELT_UPLIMIT = new nsHtml5ElementName(nsHtml5Atoms::uplimit, nsHtml5Atoms::uplimit, NS_HTML5TREE_BUILDER_OTHER);
michael@0 825 ELT_ALTGLYPH = new nsHtml5ElementName(nsHtml5Atoms::altglyph, nsHtml5Atoms::altGlyph, NS_HTML5TREE_BUILDER_OTHER);
michael@0 826 ELT_BASEFONT = new nsHtml5ElementName(nsHtml5Atoms::basefont, nsHtml5Atoms::basefont, NS_HTML5TREE_BUILDER_LINK_OR_BASEFONT_OR_BGSOUND | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 827 ELT_CLIPPATH = new nsHtml5ElementName(nsHtml5Atoms::clippath, nsHtml5Atoms::clipPath, NS_HTML5TREE_BUILDER_OTHER);
michael@0 828 ELT_CODOMAIN = new nsHtml5ElementName(nsHtml5Atoms::codomain, nsHtml5Atoms::codomain, NS_HTML5TREE_BUILDER_OTHER);
michael@0 829 ELT_COLGROUP = new nsHtml5ElementName(nsHtml5Atoms::colgroup, nsHtml5Atoms::colgroup, NS_HTML5TREE_BUILDER_COLGROUP | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 830 ELT_EMPTYSET = new nsHtml5ElementName(nsHtml5Atoms::emptyset, nsHtml5Atoms::emptyset, NS_HTML5TREE_BUILDER_OTHER);
michael@0 831 ELT_FACTOROF = new nsHtml5ElementName(nsHtml5Atoms::factorof, nsHtml5Atoms::factorof, NS_HTML5TREE_BUILDER_OTHER);
michael@0 832 ELT_FIELDSET = new nsHtml5ElementName(nsHtml5Atoms::fieldset, nsHtml5Atoms::fieldset, NS_HTML5TREE_BUILDER_FIELDSET | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 833 ELT_FRAMESET = new nsHtml5ElementName(nsHtml5Atoms::frameset, nsHtml5Atoms::frameset, NS_HTML5TREE_BUILDER_FRAMESET | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 834 ELT_FEOFFSET = new nsHtml5ElementName(nsHtml5Atoms::feoffset, nsHtml5Atoms::feOffset, NS_HTML5TREE_BUILDER_OTHER);
michael@0 835 ELT_GLYPHREF = new nsHtml5ElementName(nsHtml5Atoms::glyphref, nsHtml5Atoms::glyphRef, NS_HTML5TREE_BUILDER_OTHER);
michael@0 836 ELT_INTERVAL = new nsHtml5ElementName(nsHtml5Atoms::interval, nsHtml5Atoms::interval, NS_HTML5TREE_BUILDER_OTHER);
michael@0 837 ELT_INTEGERS = new nsHtml5ElementName(nsHtml5Atoms::integers, nsHtml5Atoms::integers, NS_HTML5TREE_BUILDER_OTHER);
michael@0 838 ELT_INFINITY = new nsHtml5ElementName(nsHtml5Atoms::infinity, nsHtml5Atoms::infinity, NS_HTML5TREE_BUILDER_OTHER);
michael@0 839 ELT_LISTENER = new nsHtml5ElementName(nsHtml5Atoms::listener, nsHtml5Atoms::listener, NS_HTML5TREE_BUILDER_OTHER);
michael@0 840 ELT_LOWLIMIT = new nsHtml5ElementName(nsHtml5Atoms::lowlimit, nsHtml5Atoms::lowlimit, NS_HTML5TREE_BUILDER_OTHER);
michael@0 841 ELT_METADATA = new nsHtml5ElementName(nsHtml5Atoms::metadata, nsHtml5Atoms::metadata, NS_HTML5TREE_BUILDER_OTHER);
michael@0 842 ELT_MENCLOSE = new nsHtml5ElementName(nsHtml5Atoms::menclose, nsHtml5Atoms::menclose, NS_HTML5TREE_BUILDER_OTHER);
michael@0 843 ELT_MENUITEM = new nsHtml5ElementName(nsHtml5Atoms::menuitem, nsHtml5Atoms::menuitem, NS_HTML5TREE_BUILDER_MENUITEM);
michael@0 844 ELT_MPHANTOM = new nsHtml5ElementName(nsHtml5Atoms::mphantom, nsHtml5Atoms::mphantom, NS_HTML5TREE_BUILDER_OTHER);
michael@0 845 ELT_NOFRAMES = new nsHtml5ElementName(nsHtml5Atoms::noframes, nsHtml5Atoms::noframes, NS_HTML5TREE_BUILDER_NOFRAMES | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 846 ELT_NOSCRIPT = new nsHtml5ElementName(nsHtml5Atoms::noscript, nsHtml5Atoms::noscript, NS_HTML5TREE_BUILDER_NOSCRIPT | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 847 ELT_OPTGROUP = new nsHtml5ElementName(nsHtml5Atoms::optgroup, nsHtml5Atoms::optgroup, NS_HTML5TREE_BUILDER_OPTGROUP | NS_HTML5ELEMENT_NAME_OPTIONAL_END_TAG);
michael@0 848 ELT_POLYLINE = new nsHtml5ElementName(nsHtml5Atoms::polyline, nsHtml5Atoms::polyline, NS_HTML5TREE_BUILDER_OTHER);
michael@0 849 ELT_PREFETCH = new nsHtml5ElementName(nsHtml5Atoms::prefetch, nsHtml5Atoms::prefetch, NS_HTML5TREE_BUILDER_OTHER);
michael@0 850 ELT_PROGRESS = new nsHtml5ElementName(nsHtml5Atoms::progress, nsHtml5Atoms::progress, NS_HTML5TREE_BUILDER_OTHER);
michael@0 851 ELT_PRSUBSET = new nsHtml5ElementName(nsHtml5Atoms::prsubset, nsHtml5Atoms::prsubset, NS_HTML5TREE_BUILDER_OTHER);
michael@0 852 ELT_QUOTIENT = new nsHtml5ElementName(nsHtml5Atoms::quotient, nsHtml5Atoms::quotient, NS_HTML5TREE_BUILDER_OTHER);
michael@0 853 ELT_SELECTOR = new nsHtml5ElementName(nsHtml5Atoms::selector, nsHtml5Atoms::selector, NS_HTML5TREE_BUILDER_OTHER);
michael@0 854 ELT_TEXTAREA = new nsHtml5ElementName(nsHtml5Atoms::textarea, nsHtml5Atoms::textarea, NS_HTML5TREE_BUILDER_TEXTAREA | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 855 ELT_TEMPLATE = new nsHtml5ElementName(nsHtml5Atoms::template_, nsHtml5Atoms::template_, NS_HTML5TREE_BUILDER_TEMPLATE | NS_HTML5ELEMENT_NAME_SPECIAL | NS_HTML5ELEMENT_NAME_SCOPING);
michael@0 856 ELT_TEXTPATH = new nsHtml5ElementName(nsHtml5Atoms::textpath, nsHtml5Atoms::textPath, NS_HTML5TREE_BUILDER_OTHER);
michael@0 857 ELT_VARIANCE = new nsHtml5ElementName(nsHtml5Atoms::variance, nsHtml5Atoms::variance, NS_HTML5TREE_BUILDER_OTHER);
michael@0 858 ELT_ANIMATION = new nsHtml5ElementName(nsHtml5Atoms::animation, nsHtml5Atoms::animation, NS_HTML5TREE_BUILDER_OTHER);
michael@0 859 ELT_CONJUGATE = new nsHtml5ElementName(nsHtml5Atoms::conjugate, nsHtml5Atoms::conjugate, NS_HTML5TREE_BUILDER_OTHER);
michael@0 860 ELT_CONDITION = new nsHtml5ElementName(nsHtml5Atoms::condition, nsHtml5Atoms::condition, NS_HTML5TREE_BUILDER_OTHER);
michael@0 861 ELT_COMPLEXES = new nsHtml5ElementName(nsHtml5Atoms::complexes, nsHtml5Atoms::complexes, NS_HTML5TREE_BUILDER_OTHER);
michael@0 862 ELT_FONT_FACE = new nsHtml5ElementName(nsHtml5Atoms::font_face, nsHtml5Atoms::font_face, NS_HTML5TREE_BUILDER_OTHER);
michael@0 863 ELT_FACTORIAL = new nsHtml5ElementName(nsHtml5Atoms::factorial, nsHtml5Atoms::factorial, NS_HTML5TREE_BUILDER_OTHER);
michael@0 864 ELT_INTERSECT = new nsHtml5ElementName(nsHtml5Atoms::intersect, nsHtml5Atoms::intersect, NS_HTML5TREE_BUILDER_OTHER);
michael@0 865 ELT_IMAGINARY = new nsHtml5ElementName(nsHtml5Atoms::imaginary, nsHtml5Atoms::imaginary, NS_HTML5TREE_BUILDER_OTHER);
michael@0 866 ELT_LAPLACIAN = new nsHtml5ElementName(nsHtml5Atoms::laplacian, nsHtml5Atoms::laplacian, NS_HTML5TREE_BUILDER_OTHER);
michael@0 867 ELT_MATRIXROW = new nsHtml5ElementName(nsHtml5Atoms::matrixrow, nsHtml5Atoms::matrixrow, NS_HTML5TREE_BUILDER_OTHER);
michael@0 868 ELT_NOTSUBSET = new nsHtml5ElementName(nsHtml5Atoms::notsubset, nsHtml5Atoms::notsubset, NS_HTML5TREE_BUILDER_OTHER);
michael@0 869 ELT_OTHERWISE = new nsHtml5ElementName(nsHtml5Atoms::otherwise, nsHtml5Atoms::otherwise, NS_HTML5TREE_BUILDER_OTHER);
michael@0 870 ELT_PIECEWISE = new nsHtml5ElementName(nsHtml5Atoms::piecewise, nsHtml5Atoms::piecewise, NS_HTML5TREE_BUILDER_OTHER);
michael@0 871 ELT_PLAINTEXT = new nsHtml5ElementName(nsHtml5Atoms::plaintext, nsHtml5Atoms::plaintext, NS_HTML5TREE_BUILDER_PLAINTEXT | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 872 ELT_RATIONALS = new nsHtml5ElementName(nsHtml5Atoms::rationals, nsHtml5Atoms::rationals, NS_HTML5TREE_BUILDER_OTHER);
michael@0 873 ELT_SEMANTICS = new nsHtml5ElementName(nsHtml5Atoms::semantics, nsHtml5Atoms::semantics, NS_HTML5TREE_BUILDER_OTHER);
michael@0 874 ELT_TRANSPOSE = new nsHtml5ElementName(nsHtml5Atoms::transpose, nsHtml5Atoms::transpose, NS_HTML5TREE_BUILDER_OTHER);
michael@0 875 ELT_ANNOTATION = new nsHtml5ElementName(nsHtml5Atoms::annotation, nsHtml5Atoms::annotation, NS_HTML5TREE_BUILDER_OTHER);
michael@0 876 ELT_BLOCKQUOTE = new nsHtml5ElementName(nsHtml5Atoms::blockquote, nsHtml5Atoms::blockquote, NS_HTML5TREE_BUILDER_DIV_OR_BLOCKQUOTE_OR_CENTER_OR_MENU | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 877 ELT_DIVERGENCE = new nsHtml5ElementName(nsHtml5Atoms::divergence, nsHtml5Atoms::divergence, NS_HTML5TREE_BUILDER_OTHER);
michael@0 878 ELT_EULERGAMMA = new nsHtml5ElementName(nsHtml5Atoms::eulergamma, nsHtml5Atoms::eulergamma, NS_HTML5TREE_BUILDER_OTHER);
michael@0 879 ELT_EQUIVALENT = new nsHtml5ElementName(nsHtml5Atoms::equivalent, nsHtml5Atoms::equivalent, NS_HTML5TREE_BUILDER_OTHER);
michael@0 880 ELT_FIGCAPTION = new nsHtml5ElementName(nsHtml5Atoms::figcaption, nsHtml5Atoms::figcaption, NS_HTML5TREE_BUILDER_ADDRESS_OR_ARTICLE_OR_ASIDE_OR_DETAILS_OR_DIR_OR_FIGCAPTION_OR_FIGURE_OR_FOOTER_OR_HEADER_OR_HGROUP_OR_MAIN_OR_NAV_OR_SECTION_OR_SUMMARY | NS_HTML5ELEMENT_NAME_SPECIAL);
michael@0 881 ELT_IMAGINARYI = new nsHtml5ElementName(nsHtml5Atoms::imaginaryi, nsHtml5Atoms::imaginaryi, NS_HTML5TREE_BUILDER_OTHER);
michael@0 882 ELT_MALIGNMARK = new nsHtml5ElementName(nsHtml5Atoms::malignmark, nsHtml5Atoms::malignmark, NS_HTML5TREE_BUILDER_MGLYPH_OR_MALIGNMARK);
michael@0 883 ELT_MUNDEROVER = new nsHtml5ElementName(nsHtml5Atoms::munderover, nsHtml5Atoms::munderover, NS_HTML5TREE_BUILDER_OTHER);
michael@0 884 ELT_MLABELEDTR = new nsHtml5ElementName(nsHtml5Atoms::mlabeledtr, nsHtml5Atoms::mlabeledtr, NS_HTML5TREE_BUILDER_OTHER);
michael@0 885 ELT_NOTANUMBER = new nsHtml5ElementName(nsHtml5Atoms::notanumber, nsHtml5Atoms::notanumber, NS_HTML5TREE_BUILDER_OTHER);
michael@0 886 ELT_SOLIDCOLOR = new nsHtml5ElementName(nsHtml5Atoms::solidcolor, nsHtml5Atoms::solidcolor, NS_HTML5TREE_BUILDER_OTHER);
michael@0 887 ELT_ALTGLYPHDEF = new nsHtml5ElementName(nsHtml5Atoms::altglyphdef, nsHtml5Atoms::altGlyphDef, NS_HTML5TREE_BUILDER_OTHER);
michael@0 888 ELT_DETERMINANT = new nsHtml5ElementName(nsHtml5Atoms::determinant, nsHtml5Atoms::determinant, NS_HTML5TREE_BUILDER_OTHER);
michael@0 889 ELT_FEMERGENODE = new nsHtml5ElementName(nsHtml5Atoms::femergenode, nsHtml5Atoms::feMergeNode, NS_HTML5TREE_BUILDER_OTHER);
michael@0 890 ELT_FECOMPOSITE = new nsHtml5ElementName(nsHtml5Atoms::fecomposite, nsHtml5Atoms::feComposite, NS_HTML5TREE_BUILDER_OTHER);
michael@0 891 ELT_FESPOTLIGHT = new nsHtml5ElementName(nsHtml5Atoms::fespotlight, nsHtml5Atoms::feSpotLight, NS_HTML5TREE_BUILDER_OTHER);
michael@0 892 ELT_MALIGNGROUP = new nsHtml5ElementName(nsHtml5Atoms::maligngroup, nsHtml5Atoms::maligngroup, NS_HTML5TREE_BUILDER_OTHER);
michael@0 893 ELT_MPRESCRIPTS = new nsHtml5ElementName(nsHtml5Atoms::mprescripts, nsHtml5Atoms::mprescripts, NS_HTML5TREE_BUILDER_OTHER);
michael@0 894 ELT_MOMENTABOUT = new nsHtml5ElementName(nsHtml5Atoms::momentabout, nsHtml5Atoms::momentabout, NS_HTML5TREE_BUILDER_OTHER);
michael@0 895 ELT_NOTPRSUBSET = new nsHtml5ElementName(nsHtml5Atoms::notprsubset, nsHtml5Atoms::notprsubset, NS_HTML5TREE_BUILDER_OTHER);
michael@0 896 ELT_PARTIALDIFF = new nsHtml5ElementName(nsHtml5Atoms::partialdiff, nsHtml5Atoms::partialdiff, NS_HTML5TREE_BUILDER_OTHER);
michael@0 897 ELT_ALTGLYPHITEM = new nsHtml5ElementName(nsHtml5Atoms::altglyphitem, nsHtml5Atoms::altGlyphItem, NS_HTML5TREE_BUILDER_OTHER);
michael@0 898 ELT_ANIMATECOLOR = new nsHtml5ElementName(nsHtml5Atoms::animatecolor, nsHtml5Atoms::animateColor, NS_HTML5TREE_BUILDER_OTHER);
michael@0 899 ELT_DATATEMPLATE = new nsHtml5ElementName(nsHtml5Atoms::datatemplate, nsHtml5Atoms::datatemplate, NS_HTML5TREE_BUILDER_OTHER);
michael@0 900 ELT_EXPONENTIALE = new nsHtml5ElementName(nsHtml5Atoms::exponentiale, nsHtml5Atoms::exponentiale, NS_HTML5TREE_BUILDER_OTHER);
michael@0 901 ELT_FETURBULENCE = new nsHtml5ElementName(nsHtml5Atoms::feturbulence, nsHtml5Atoms::feTurbulence, NS_HTML5TREE_BUILDER_OTHER);
michael@0 902 ELT_FEPOINTLIGHT = new nsHtml5ElementName(nsHtml5Atoms::fepointlight, nsHtml5Atoms::fePointLight, NS_HTML5TREE_BUILDER_OTHER);
michael@0 903 ELT_FEDROPSHADOW = new nsHtml5ElementName(nsHtml5Atoms::fedropshadow, nsHtml5Atoms::feDropShadow, NS_HTML5TREE_BUILDER_OTHER);
michael@0 904 ELT_FEMORPHOLOGY = new nsHtml5ElementName(nsHtml5Atoms::femorphology, nsHtml5Atoms::feMorphology, NS_HTML5TREE_BUILDER_OTHER);
michael@0 905 ELT_OUTERPRODUCT = new nsHtml5ElementName(nsHtml5Atoms::outerproduct, nsHtml5Atoms::outerproduct, NS_HTML5TREE_BUILDER_OTHER);
michael@0 906 ELT_ANIMATEMOTION = new nsHtml5ElementName(nsHtml5Atoms::animatemotion, nsHtml5Atoms::animateMotion, NS_HTML5TREE_BUILDER_OTHER);
michael@0 907 ELT_COLOR_PROFILE = new nsHtml5ElementName(nsHtml5Atoms::color_profile, nsHtml5Atoms::color_profile, NS_HTML5TREE_BUILDER_OTHER);
michael@0 908 ELT_FONT_FACE_SRC = new nsHtml5ElementName(nsHtml5Atoms::font_face_src, nsHtml5Atoms::font_face_src, NS_HTML5TREE_BUILDER_OTHER);
michael@0 909 ELT_FONT_FACE_URI = new nsHtml5ElementName(nsHtml5Atoms::font_face_uri, nsHtml5Atoms::font_face_uri, NS_HTML5TREE_BUILDER_OTHER);
michael@0 910 ELT_FOREIGNOBJECT = new nsHtml5ElementName(nsHtml5Atoms::foreignobject, nsHtml5Atoms::foreignObject, NS_HTML5TREE_BUILDER_FOREIGNOBJECT_OR_DESC | NS_HTML5ELEMENT_NAME_SCOPING_AS_SVG);
michael@0 911 ELT_FECOLORMATRIX = new nsHtml5ElementName(nsHtml5Atoms::fecolormatrix, nsHtml5Atoms::feColorMatrix, NS_HTML5TREE_BUILDER_OTHER);
michael@0 912 ELT_MISSING_GLYPH = new nsHtml5ElementName(nsHtml5Atoms::missing_glyph, nsHtml5Atoms::missing_glyph, NS_HTML5TREE_BUILDER_OTHER);
michael@0 913 ELT_MMULTISCRIPTS = new nsHtml5ElementName(nsHtml5Atoms::mmultiscripts, nsHtml5Atoms::mmultiscripts, NS_HTML5TREE_BUILDER_OTHER);
michael@0 914 ELT_SCALARPRODUCT = new nsHtml5ElementName(nsHtml5Atoms::scalarproduct, nsHtml5Atoms::scalarproduct, NS_HTML5TREE_BUILDER_OTHER);
michael@0 915 ELT_VECTORPRODUCT = new nsHtml5ElementName(nsHtml5Atoms::vectorproduct, nsHtml5Atoms::vectorproduct, NS_HTML5TREE_BUILDER_OTHER);
michael@0 916 ELT_ANNOTATION_XML = new nsHtml5ElementName(nsHtml5Atoms::annotation_xml, nsHtml5Atoms::annotation_xml, NS_HTML5TREE_BUILDER_ANNOTATION_XML | NS_HTML5ELEMENT_NAME_SCOPING_AS_MATHML);
michael@0 917 ELT_DEFINITION_SRC = new nsHtml5ElementName(nsHtml5Atoms::definition_src, nsHtml5Atoms::definition_src, NS_HTML5TREE_BUILDER_OTHER);
michael@0 918 ELT_FONT_FACE_NAME = new nsHtml5ElementName(nsHtml5Atoms::font_face_name, nsHtml5Atoms::font_face_name, NS_HTML5TREE_BUILDER_OTHER);
michael@0 919 ELT_FEGAUSSIANBLUR = new nsHtml5ElementName(nsHtml5Atoms::fegaussianblur, nsHtml5Atoms::feGaussianBlur, NS_HTML5TREE_BUILDER_OTHER);
michael@0 920 ELT_FEDISTANTLIGHT = new nsHtml5ElementName(nsHtml5Atoms::fedistantlight, nsHtml5Atoms::feDistantLight, NS_HTML5TREE_BUILDER_OTHER);
michael@0 921 ELT_LINEARGRADIENT = new nsHtml5ElementName(nsHtml5Atoms::lineargradient, nsHtml5Atoms::linearGradient, NS_HTML5TREE_BUILDER_OTHER);
michael@0 922 ELT_NATURALNUMBERS = new nsHtml5ElementName(nsHtml5Atoms::naturalnumbers, nsHtml5Atoms::naturalnumbers, NS_HTML5TREE_BUILDER_OTHER);
michael@0 923 ELT_RADIALGRADIENT = new nsHtml5ElementName(nsHtml5Atoms::radialgradient, nsHtml5Atoms::radialGradient, NS_HTML5TREE_BUILDER_OTHER);
michael@0 924 ELT_ANIMATETRANSFORM = new nsHtml5ElementName(nsHtml5Atoms::animatetransform, nsHtml5Atoms::animateTransform, NS_HTML5TREE_BUILDER_OTHER);
michael@0 925 ELT_CARTESIANPRODUCT = new nsHtml5ElementName(nsHtml5Atoms::cartesianproduct, nsHtml5Atoms::cartesianproduct, NS_HTML5TREE_BUILDER_OTHER);
michael@0 926 ELT_FONT_FACE_FORMAT = new nsHtml5ElementName(nsHtml5Atoms::font_face_format, nsHtml5Atoms::font_face_format, NS_HTML5TREE_BUILDER_OTHER);
michael@0 927 ELT_FECONVOLVEMATRIX = new nsHtml5ElementName(nsHtml5Atoms::feconvolvematrix, nsHtml5Atoms::feConvolveMatrix, NS_HTML5TREE_BUILDER_OTHER);
michael@0 928 ELT_FEDIFFUSELIGHTING = new nsHtml5ElementName(nsHtml5Atoms::fediffuselighting, nsHtml5Atoms::feDiffuseLighting, NS_HTML5TREE_BUILDER_OTHER);
michael@0 929 ELT_FEDISPLACEMENTMAP = new nsHtml5ElementName(nsHtml5Atoms::fedisplacementmap, nsHtml5Atoms::feDisplacementMap, NS_HTML5TREE_BUILDER_OTHER);
michael@0 930 ELT_FESPECULARLIGHTING = new nsHtml5ElementName(nsHtml5Atoms::fespecularlighting, nsHtml5Atoms::feSpecularLighting, NS_HTML5TREE_BUILDER_OTHER);
michael@0 931 ELT_DOMAINOFAPPLICATION = new nsHtml5ElementName(nsHtml5Atoms::domainofapplication, nsHtml5Atoms::domainofapplication, NS_HTML5TREE_BUILDER_OTHER);
michael@0 932 ELT_FECOMPONENTTRANSFER = new nsHtml5ElementName(nsHtml5Atoms::fecomponenttransfer, nsHtml5Atoms::feComponentTransfer, NS_HTML5TREE_BUILDER_OTHER);
michael@0 933 ELEMENT_NAMES = new nsHtml5ElementName*[394];
michael@0 934 ELEMENT_NAMES[0] = ELT_A;
michael@0 935 ELEMENT_NAMES[1] = ELT_B;
michael@0 936 ELEMENT_NAMES[2] = ELT_G;
michael@0 937 ELEMENT_NAMES[3] = ELT_I;
michael@0 938 ELEMENT_NAMES[4] = ELT_P;
michael@0 939 ELEMENT_NAMES[5] = ELT_Q;
michael@0 940 ELEMENT_NAMES[6] = ELT_S;
michael@0 941 ELEMENT_NAMES[7] = ELT_U;
michael@0 942 ELEMENT_NAMES[8] = ELT_BR;
michael@0 943 ELEMENT_NAMES[9] = ELT_CI;
michael@0 944 ELEMENT_NAMES[10] = ELT_CN;
michael@0 945 ELEMENT_NAMES[11] = ELT_DD;
michael@0 946 ELEMENT_NAMES[12] = ELT_DL;
michael@0 947 ELEMENT_NAMES[13] = ELT_DT;
michael@0 948 ELEMENT_NAMES[14] = ELT_EM;
michael@0 949 ELEMENT_NAMES[15] = ELT_EQ;
michael@0 950 ELEMENT_NAMES[16] = ELT_FN;
michael@0 951 ELEMENT_NAMES[17] = ELT_H1;
michael@0 952 ELEMENT_NAMES[18] = ELT_H2;
michael@0 953 ELEMENT_NAMES[19] = ELT_H3;
michael@0 954 ELEMENT_NAMES[20] = ELT_H4;
michael@0 955 ELEMENT_NAMES[21] = ELT_H5;
michael@0 956 ELEMENT_NAMES[22] = ELT_H6;
michael@0 957 ELEMENT_NAMES[23] = ELT_GT;
michael@0 958 ELEMENT_NAMES[24] = ELT_HR;
michael@0 959 ELEMENT_NAMES[25] = ELT_IN;
michael@0 960 ELEMENT_NAMES[26] = ELT_LI;
michael@0 961 ELEMENT_NAMES[27] = ELT_LN;
michael@0 962 ELEMENT_NAMES[28] = ELT_LT;
michael@0 963 ELEMENT_NAMES[29] = ELT_MI;
michael@0 964 ELEMENT_NAMES[30] = ELT_MN;
michael@0 965 ELEMENT_NAMES[31] = ELT_MO;
michael@0 966 ELEMENT_NAMES[32] = ELT_MS;
michael@0 967 ELEMENT_NAMES[33] = ELT_OL;
michael@0 968 ELEMENT_NAMES[34] = ELT_OR;
michael@0 969 ELEMENT_NAMES[35] = ELT_PI;
michael@0 970 ELEMENT_NAMES[36] = ELT_RP;
michael@0 971 ELEMENT_NAMES[37] = ELT_RT;
michael@0 972 ELEMENT_NAMES[38] = ELT_TD;
michael@0 973 ELEMENT_NAMES[39] = ELT_TH;
michael@0 974 ELEMENT_NAMES[40] = ELT_TR;
michael@0 975 ELEMENT_NAMES[41] = ELT_TT;
michael@0 976 ELEMENT_NAMES[42] = ELT_UL;
michael@0 977 ELEMENT_NAMES[43] = ELT_AND;
michael@0 978 ELEMENT_NAMES[44] = ELT_ARG;
michael@0 979 ELEMENT_NAMES[45] = ELT_ABS;
michael@0 980 ELEMENT_NAMES[46] = ELT_BIG;
michael@0 981 ELEMENT_NAMES[47] = ELT_BDO;
michael@0 982 ELEMENT_NAMES[48] = ELT_CSC;
michael@0 983 ELEMENT_NAMES[49] = ELT_COL;
michael@0 984 ELEMENT_NAMES[50] = ELT_COS;
michael@0 985 ELEMENT_NAMES[51] = ELT_COT;
michael@0 986 ELEMENT_NAMES[52] = ELT_DEL;
michael@0 987 ELEMENT_NAMES[53] = ELT_DFN;
michael@0 988 ELEMENT_NAMES[54] = ELT_DIR;
michael@0 989 ELEMENT_NAMES[55] = ELT_DIV;
michael@0 990 ELEMENT_NAMES[56] = ELT_EXP;
michael@0 991 ELEMENT_NAMES[57] = ELT_GCD;
michael@0 992 ELEMENT_NAMES[58] = ELT_GEQ;
michael@0 993 ELEMENT_NAMES[59] = ELT_IMG;
michael@0 994 ELEMENT_NAMES[60] = ELT_INS;
michael@0 995 ELEMENT_NAMES[61] = ELT_INT;
michael@0 996 ELEMENT_NAMES[62] = ELT_KBD;
michael@0 997 ELEMENT_NAMES[63] = ELT_LOG;
michael@0 998 ELEMENT_NAMES[64] = ELT_LCM;
michael@0 999 ELEMENT_NAMES[65] = ELT_LEQ;
michael@0 1000 ELEMENT_NAMES[66] = ELT_MTD;
michael@0 1001 ELEMENT_NAMES[67] = ELT_MIN;
michael@0 1002 ELEMENT_NAMES[68] = ELT_MAP;
michael@0 1003 ELEMENT_NAMES[69] = ELT_MTR;
michael@0 1004 ELEMENT_NAMES[70] = ELT_MAX;
michael@0 1005 ELEMENT_NAMES[71] = ELT_NEQ;
michael@0 1006 ELEMENT_NAMES[72] = ELT_NOT;
michael@0 1007 ELEMENT_NAMES[73] = ELT_NAV;
michael@0 1008 ELEMENT_NAMES[74] = ELT_PRE;
michael@0 1009 ELEMENT_NAMES[75] = ELT_REM;
michael@0 1010 ELEMENT_NAMES[76] = ELT_SUB;
michael@0 1011 ELEMENT_NAMES[77] = ELT_SEC;
michael@0 1012 ELEMENT_NAMES[78] = ELT_SVG;
michael@0 1013 ELEMENT_NAMES[79] = ELT_SUM;
michael@0 1014 ELEMENT_NAMES[80] = ELT_SIN;
michael@0 1015 ELEMENT_NAMES[81] = ELT_SEP;
michael@0 1016 ELEMENT_NAMES[82] = ELT_SUP;
michael@0 1017 ELEMENT_NAMES[83] = ELT_SET;
michael@0 1018 ELEMENT_NAMES[84] = ELT_TAN;
michael@0 1019 ELEMENT_NAMES[85] = ELT_USE;
michael@0 1020 ELEMENT_NAMES[86] = ELT_VAR;
michael@0 1021 ELEMENT_NAMES[87] = ELT_WBR;
michael@0 1022 ELEMENT_NAMES[88] = ELT_XMP;
michael@0 1023 ELEMENT_NAMES[89] = ELT_XOR;
michael@0 1024 ELEMENT_NAMES[90] = ELT_AREA;
michael@0 1025 ELEMENT_NAMES[91] = ELT_ABBR;
michael@0 1026 ELEMENT_NAMES[92] = ELT_BASE;
michael@0 1027 ELEMENT_NAMES[93] = ELT_BVAR;
michael@0 1028 ELEMENT_NAMES[94] = ELT_BODY;
michael@0 1029 ELEMENT_NAMES[95] = ELT_CARD;
michael@0 1030 ELEMENT_NAMES[96] = ELT_CODE;
michael@0 1031 ELEMENT_NAMES[97] = ELT_CITE;
michael@0 1032 ELEMENT_NAMES[98] = ELT_CSCH;
michael@0 1033 ELEMENT_NAMES[99] = ELT_COSH;
michael@0 1034 ELEMENT_NAMES[100] = ELT_COTH;
michael@0 1035 ELEMENT_NAMES[101] = ELT_CURL;
michael@0 1036 ELEMENT_NAMES[102] = ELT_DESC;
michael@0 1037 ELEMENT_NAMES[103] = ELT_DIFF;
michael@0 1038 ELEMENT_NAMES[104] = ELT_DEFS;
michael@0 1039 ELEMENT_NAMES[105] = ELT_FORM;
michael@0 1040 ELEMENT_NAMES[106] = ELT_FONT;
michael@0 1041 ELEMENT_NAMES[107] = ELT_GRAD;
michael@0 1042 ELEMENT_NAMES[108] = ELT_HEAD;
michael@0 1043 ELEMENT_NAMES[109] = ELT_HTML;
michael@0 1044 ELEMENT_NAMES[110] = ELT_LINE;
michael@0 1045 ELEMENT_NAMES[111] = ELT_LINK;
michael@0 1046 ELEMENT_NAMES[112] = ELT_LIST;
michael@0 1047 ELEMENT_NAMES[113] = ELT_META;
michael@0 1048 ELEMENT_NAMES[114] = ELT_MSUB;
michael@0 1049 ELEMENT_NAMES[115] = ELT_MODE;
michael@0 1050 ELEMENT_NAMES[116] = ELT_MATH;
michael@0 1051 ELEMENT_NAMES[117] = ELT_MARK;
michael@0 1052 ELEMENT_NAMES[118] = ELT_MASK;
michael@0 1053 ELEMENT_NAMES[119] = ELT_MEAN;
michael@0 1054 ELEMENT_NAMES[120] = ELT_MAIN;
michael@0 1055 ELEMENT_NAMES[121] = ELT_MSUP;
michael@0 1056 ELEMENT_NAMES[122] = ELT_MENU;
michael@0 1057 ELEMENT_NAMES[123] = ELT_MROW;
michael@0 1058 ELEMENT_NAMES[124] = ELT_NONE;
michael@0 1059 ELEMENT_NAMES[125] = ELT_NOBR;
michael@0 1060 ELEMENT_NAMES[126] = ELT_NEST;
michael@0 1061 ELEMENT_NAMES[127] = ELT_PATH;
michael@0 1062 ELEMENT_NAMES[128] = ELT_PLUS;
michael@0 1063 ELEMENT_NAMES[129] = ELT_RULE;
michael@0 1064 ELEMENT_NAMES[130] = ELT_REAL;
michael@0 1065 ELEMENT_NAMES[131] = ELT_RELN;
michael@0 1066 ELEMENT_NAMES[132] = ELT_RECT;
michael@0 1067 ELEMENT_NAMES[133] = ELT_ROOT;
michael@0 1068 ELEMENT_NAMES[134] = ELT_RUBY;
michael@0 1069 ELEMENT_NAMES[135] = ELT_SECH;
michael@0 1070 ELEMENT_NAMES[136] = ELT_SINH;
michael@0 1071 ELEMENT_NAMES[137] = ELT_SPAN;
michael@0 1072 ELEMENT_NAMES[138] = ELT_SAMP;
michael@0 1073 ELEMENT_NAMES[139] = ELT_STOP;
michael@0 1074 ELEMENT_NAMES[140] = ELT_SDEV;
michael@0 1075 ELEMENT_NAMES[141] = ELT_TIME;
michael@0 1076 ELEMENT_NAMES[142] = ELT_TRUE;
michael@0 1077 ELEMENT_NAMES[143] = ELT_TREF;
michael@0 1078 ELEMENT_NAMES[144] = ELT_TANH;
michael@0 1079 ELEMENT_NAMES[145] = ELT_TEXT;
michael@0 1080 ELEMENT_NAMES[146] = ELT_VIEW;
michael@0 1081 ELEMENT_NAMES[147] = ELT_ASIDE;
michael@0 1082 ELEMENT_NAMES[148] = ELT_AUDIO;
michael@0 1083 ELEMENT_NAMES[149] = ELT_APPLY;
michael@0 1084 ELEMENT_NAMES[150] = ELT_EMBED;
michael@0 1085 ELEMENT_NAMES[151] = ELT_FRAME;
michael@0 1086 ELEMENT_NAMES[152] = ELT_FALSE;
michael@0 1087 ELEMENT_NAMES[153] = ELT_FLOOR;
michael@0 1088 ELEMENT_NAMES[154] = ELT_GLYPH;
michael@0 1089 ELEMENT_NAMES[155] = ELT_HKERN;
michael@0 1090 ELEMENT_NAMES[156] = ELT_IMAGE;
michael@0 1091 ELEMENT_NAMES[157] = ELT_IDENT;
michael@0 1092 ELEMENT_NAMES[158] = ELT_INPUT;
michael@0 1093 ELEMENT_NAMES[159] = ELT_LABEL;
michael@0 1094 ELEMENT_NAMES[160] = ELT_LIMIT;
michael@0 1095 ELEMENT_NAMES[161] = ELT_MFRAC;
michael@0 1096 ELEMENT_NAMES[162] = ELT_MPATH;
michael@0 1097 ELEMENT_NAMES[163] = ELT_METER;
michael@0 1098 ELEMENT_NAMES[164] = ELT_MOVER;
michael@0 1099 ELEMENT_NAMES[165] = ELT_MINUS;
michael@0 1100 ELEMENT_NAMES[166] = ELT_MROOT;
michael@0 1101 ELEMENT_NAMES[167] = ELT_MSQRT;
michael@0 1102 ELEMENT_NAMES[168] = ELT_MTEXT;
michael@0 1103 ELEMENT_NAMES[169] = ELT_NOTIN;
michael@0 1104 ELEMENT_NAMES[170] = ELT_PIECE;
michael@0 1105 ELEMENT_NAMES[171] = ELT_PARAM;
michael@0 1106 ELEMENT_NAMES[172] = ELT_POWER;
michael@0 1107 ELEMENT_NAMES[173] = ELT_REALS;
michael@0 1108 ELEMENT_NAMES[174] = ELT_STYLE;
michael@0 1109 ELEMENT_NAMES[175] = ELT_SMALL;
michael@0 1110 ELEMENT_NAMES[176] = ELT_THEAD;
michael@0 1111 ELEMENT_NAMES[177] = ELT_TABLE;
michael@0 1112 ELEMENT_NAMES[178] = ELT_TITLE;
michael@0 1113 ELEMENT_NAMES[179] = ELT_TRACK;
michael@0 1114 ELEMENT_NAMES[180] = ELT_TSPAN;
michael@0 1115 ELEMENT_NAMES[181] = ELT_TIMES;
michael@0 1116 ELEMENT_NAMES[182] = ELT_TFOOT;
michael@0 1117 ELEMENT_NAMES[183] = ELT_TBODY;
michael@0 1118 ELEMENT_NAMES[184] = ELT_UNION;
michael@0 1119 ELEMENT_NAMES[185] = ELT_VKERN;
michael@0 1120 ELEMENT_NAMES[186] = ELT_VIDEO;
michael@0 1121 ELEMENT_NAMES[187] = ELT_ARCSEC;
michael@0 1122 ELEMENT_NAMES[188] = ELT_ARCCSC;
michael@0 1123 ELEMENT_NAMES[189] = ELT_ARCTAN;
michael@0 1124 ELEMENT_NAMES[190] = ELT_ARCSIN;
michael@0 1125 ELEMENT_NAMES[191] = ELT_ARCCOS;
michael@0 1126 ELEMENT_NAMES[192] = ELT_APPLET;
michael@0 1127 ELEMENT_NAMES[193] = ELT_ARCCOT;
michael@0 1128 ELEMENT_NAMES[194] = ELT_APPROX;
michael@0 1129 ELEMENT_NAMES[195] = ELT_BUTTON;
michael@0 1130 ELEMENT_NAMES[196] = ELT_CIRCLE;
michael@0 1131 ELEMENT_NAMES[197] = ELT_CENTER;
michael@0 1132 ELEMENT_NAMES[198] = ELT_CURSOR;
michael@0 1133 ELEMENT_NAMES[199] = ELT_CANVAS;
michael@0 1134 ELEMENT_NAMES[200] = ELT_DIVIDE;
michael@0 1135 ELEMENT_NAMES[201] = ELT_DEGREE;
michael@0 1136 ELEMENT_NAMES[202] = ELT_DOMAIN;
michael@0 1137 ELEMENT_NAMES[203] = ELT_EXISTS;
michael@0 1138 ELEMENT_NAMES[204] = ELT_FETILE;
michael@0 1139 ELEMENT_NAMES[205] = ELT_FIGURE;
michael@0 1140 ELEMENT_NAMES[206] = ELT_FORALL;
michael@0 1141 ELEMENT_NAMES[207] = ELT_FILTER;
michael@0 1142 ELEMENT_NAMES[208] = ELT_FOOTER;
michael@0 1143 ELEMENT_NAMES[209] = ELT_HGROUP;
michael@0 1144 ELEMENT_NAMES[210] = ELT_HEADER;
michael@0 1145 ELEMENT_NAMES[211] = ELT_IFRAME;
michael@0 1146 ELEMENT_NAMES[212] = ELT_KEYGEN;
michael@0 1147 ELEMENT_NAMES[213] = ELT_LAMBDA;
michael@0 1148 ELEMENT_NAMES[214] = ELT_LEGEND;
michael@0 1149 ELEMENT_NAMES[215] = ELT_MSPACE;
michael@0 1150 ELEMENT_NAMES[216] = ELT_MTABLE;
michael@0 1151 ELEMENT_NAMES[217] = ELT_MSTYLE;
michael@0 1152 ELEMENT_NAMES[218] = ELT_MGLYPH;
michael@0 1153 ELEMENT_NAMES[219] = ELT_MEDIAN;
michael@0 1154 ELEMENT_NAMES[220] = ELT_MUNDER;
michael@0 1155 ELEMENT_NAMES[221] = ELT_MARKER;
michael@0 1156 ELEMENT_NAMES[222] = ELT_MERROR;
michael@0 1157 ELEMENT_NAMES[223] = ELT_MOMENT;
michael@0 1158 ELEMENT_NAMES[224] = ELT_MATRIX;
michael@0 1159 ELEMENT_NAMES[225] = ELT_OPTION;
michael@0 1160 ELEMENT_NAMES[226] = ELT_OBJECT;
michael@0 1161 ELEMENT_NAMES[227] = ELT_OUTPUT;
michael@0 1162 ELEMENT_NAMES[228] = ELT_PRIMES;
michael@0 1163 ELEMENT_NAMES[229] = ELT_SOURCE;
michael@0 1164 ELEMENT_NAMES[230] = ELT_STRIKE;
michael@0 1165 ELEMENT_NAMES[231] = ELT_STRONG;
michael@0 1166 ELEMENT_NAMES[232] = ELT_SWITCH;
michael@0 1167 ELEMENT_NAMES[233] = ELT_SYMBOL;
michael@0 1168 ELEMENT_NAMES[234] = ELT_SELECT;
michael@0 1169 ELEMENT_NAMES[235] = ELT_SUBSET;
michael@0 1170 ELEMENT_NAMES[236] = ELT_SCRIPT;
michael@0 1171 ELEMENT_NAMES[237] = ELT_TBREAK;
michael@0 1172 ELEMENT_NAMES[238] = ELT_VECTOR;
michael@0 1173 ELEMENT_NAMES[239] = ELT_ARTICLE;
michael@0 1174 ELEMENT_NAMES[240] = ELT_ANIMATE;
michael@0 1175 ELEMENT_NAMES[241] = ELT_ARCSECH;
michael@0 1176 ELEMENT_NAMES[242] = ELT_ARCCSCH;
michael@0 1177 ELEMENT_NAMES[243] = ELT_ARCTANH;
michael@0 1178 ELEMENT_NAMES[244] = ELT_ARCSINH;
michael@0 1179 ELEMENT_NAMES[245] = ELT_ARCCOSH;
michael@0 1180 ELEMENT_NAMES[246] = ELT_ARCCOTH;
michael@0 1181 ELEMENT_NAMES[247] = ELT_ACRONYM;
michael@0 1182 ELEMENT_NAMES[248] = ELT_ADDRESS;
michael@0 1183 ELEMENT_NAMES[249] = ELT_BGSOUND;
michael@0 1184 ELEMENT_NAMES[250] = ELT_COMPOSE;
michael@0 1185 ELEMENT_NAMES[251] = ELT_CEILING;
michael@0 1186 ELEMENT_NAMES[252] = ELT_CSYMBOL;
michael@0 1187 ELEMENT_NAMES[253] = ELT_CAPTION;
michael@0 1188 ELEMENT_NAMES[254] = ELT_DISCARD;
michael@0 1189 ELEMENT_NAMES[255] = ELT_DECLARE;
michael@0 1190 ELEMENT_NAMES[256] = ELT_DETAILS;
michael@0 1191 ELEMENT_NAMES[257] = ELT_ELLIPSE;
michael@0 1192 ELEMENT_NAMES[258] = ELT_FEFUNCA;
michael@0 1193 ELEMENT_NAMES[259] = ELT_FEFUNCB;
michael@0 1194 ELEMENT_NAMES[260] = ELT_FEBLEND;
michael@0 1195 ELEMENT_NAMES[261] = ELT_FEFLOOD;
michael@0 1196 ELEMENT_NAMES[262] = ELT_FEIMAGE;
michael@0 1197 ELEMENT_NAMES[263] = ELT_FEMERGE;
michael@0 1198 ELEMENT_NAMES[264] = ELT_FEFUNCG;
michael@0 1199 ELEMENT_NAMES[265] = ELT_FEFUNCR;
michael@0 1200 ELEMENT_NAMES[266] = ELT_HANDLER;
michael@0 1201 ELEMENT_NAMES[267] = ELT_INVERSE;
michael@0 1202 ELEMENT_NAMES[268] = ELT_IMPLIES;
michael@0 1203 ELEMENT_NAMES[269] = ELT_ISINDEX;
michael@0 1204 ELEMENT_NAMES[270] = ELT_LOGBASE;
michael@0 1205 ELEMENT_NAMES[271] = ELT_LISTING;
michael@0 1206 ELEMENT_NAMES[272] = ELT_MFENCED;
michael@0 1207 ELEMENT_NAMES[273] = ELT_MPADDED;
michael@0 1208 ELEMENT_NAMES[274] = ELT_MARQUEE;
michael@0 1209 ELEMENT_NAMES[275] = ELT_MACTION;
michael@0 1210 ELEMENT_NAMES[276] = ELT_MSUBSUP;
michael@0 1211 ELEMENT_NAMES[277] = ELT_NOEMBED;
michael@0 1212 ELEMENT_NAMES[278] = ELT_POLYGON;
michael@0 1213 ELEMENT_NAMES[279] = ELT_PATTERN;
michael@0 1214 ELEMENT_NAMES[280] = ELT_PRODUCT;
michael@0 1215 ELEMENT_NAMES[281] = ELT_SETDIFF;
michael@0 1216 ELEMENT_NAMES[282] = ELT_SECTION;
michael@0 1217 ELEMENT_NAMES[283] = ELT_SUMMARY;
michael@0 1218 ELEMENT_NAMES[284] = ELT_TENDSTO;
michael@0 1219 ELEMENT_NAMES[285] = ELT_UPLIMIT;
michael@0 1220 ELEMENT_NAMES[286] = ELT_ALTGLYPH;
michael@0 1221 ELEMENT_NAMES[287] = ELT_BASEFONT;
michael@0 1222 ELEMENT_NAMES[288] = ELT_CLIPPATH;
michael@0 1223 ELEMENT_NAMES[289] = ELT_CODOMAIN;
michael@0 1224 ELEMENT_NAMES[290] = ELT_COLGROUP;
michael@0 1225 ELEMENT_NAMES[291] = ELT_EMPTYSET;
michael@0 1226 ELEMENT_NAMES[292] = ELT_FACTOROF;
michael@0 1227 ELEMENT_NAMES[293] = ELT_FIELDSET;
michael@0 1228 ELEMENT_NAMES[294] = ELT_FRAMESET;
michael@0 1229 ELEMENT_NAMES[295] = ELT_FEOFFSET;
michael@0 1230 ELEMENT_NAMES[296] = ELT_GLYPHREF;
michael@0 1231 ELEMENT_NAMES[297] = ELT_INTERVAL;
michael@0 1232 ELEMENT_NAMES[298] = ELT_INTEGERS;
michael@0 1233 ELEMENT_NAMES[299] = ELT_INFINITY;
michael@0 1234 ELEMENT_NAMES[300] = ELT_LISTENER;
michael@0 1235 ELEMENT_NAMES[301] = ELT_LOWLIMIT;
michael@0 1236 ELEMENT_NAMES[302] = ELT_METADATA;
michael@0 1237 ELEMENT_NAMES[303] = ELT_MENCLOSE;
michael@0 1238 ELEMENT_NAMES[304] = ELT_MENUITEM;
michael@0 1239 ELEMENT_NAMES[305] = ELT_MPHANTOM;
michael@0 1240 ELEMENT_NAMES[306] = ELT_NOFRAMES;
michael@0 1241 ELEMENT_NAMES[307] = ELT_NOSCRIPT;
michael@0 1242 ELEMENT_NAMES[308] = ELT_OPTGROUP;
michael@0 1243 ELEMENT_NAMES[309] = ELT_POLYLINE;
michael@0 1244 ELEMENT_NAMES[310] = ELT_PREFETCH;
michael@0 1245 ELEMENT_NAMES[311] = ELT_PROGRESS;
michael@0 1246 ELEMENT_NAMES[312] = ELT_PRSUBSET;
michael@0 1247 ELEMENT_NAMES[313] = ELT_QUOTIENT;
michael@0 1248 ELEMENT_NAMES[314] = ELT_SELECTOR;
michael@0 1249 ELEMENT_NAMES[315] = ELT_TEXTAREA;
michael@0 1250 ELEMENT_NAMES[316] = ELT_TEMPLATE;
michael@0 1251 ELEMENT_NAMES[317] = ELT_TEXTPATH;
michael@0 1252 ELEMENT_NAMES[318] = ELT_VARIANCE;
michael@0 1253 ELEMENT_NAMES[319] = ELT_ANIMATION;
michael@0 1254 ELEMENT_NAMES[320] = ELT_CONJUGATE;
michael@0 1255 ELEMENT_NAMES[321] = ELT_CONDITION;
michael@0 1256 ELEMENT_NAMES[322] = ELT_COMPLEXES;
michael@0 1257 ELEMENT_NAMES[323] = ELT_FONT_FACE;
michael@0 1258 ELEMENT_NAMES[324] = ELT_FACTORIAL;
michael@0 1259 ELEMENT_NAMES[325] = ELT_INTERSECT;
michael@0 1260 ELEMENT_NAMES[326] = ELT_IMAGINARY;
michael@0 1261 ELEMENT_NAMES[327] = ELT_LAPLACIAN;
michael@0 1262 ELEMENT_NAMES[328] = ELT_MATRIXROW;
michael@0 1263 ELEMENT_NAMES[329] = ELT_NOTSUBSET;
michael@0 1264 ELEMENT_NAMES[330] = ELT_OTHERWISE;
michael@0 1265 ELEMENT_NAMES[331] = ELT_PIECEWISE;
michael@0 1266 ELEMENT_NAMES[332] = ELT_PLAINTEXT;
michael@0 1267 ELEMENT_NAMES[333] = ELT_RATIONALS;
michael@0 1268 ELEMENT_NAMES[334] = ELT_SEMANTICS;
michael@0 1269 ELEMENT_NAMES[335] = ELT_TRANSPOSE;
michael@0 1270 ELEMENT_NAMES[336] = ELT_ANNOTATION;
michael@0 1271 ELEMENT_NAMES[337] = ELT_BLOCKQUOTE;
michael@0 1272 ELEMENT_NAMES[338] = ELT_DIVERGENCE;
michael@0 1273 ELEMENT_NAMES[339] = ELT_EULERGAMMA;
michael@0 1274 ELEMENT_NAMES[340] = ELT_EQUIVALENT;
michael@0 1275 ELEMENT_NAMES[341] = ELT_FIGCAPTION;
michael@0 1276 ELEMENT_NAMES[342] = ELT_IMAGINARYI;
michael@0 1277 ELEMENT_NAMES[343] = ELT_MALIGNMARK;
michael@0 1278 ELEMENT_NAMES[344] = ELT_MUNDEROVER;
michael@0 1279 ELEMENT_NAMES[345] = ELT_MLABELEDTR;
michael@0 1280 ELEMENT_NAMES[346] = ELT_NOTANUMBER;
michael@0 1281 ELEMENT_NAMES[347] = ELT_SOLIDCOLOR;
michael@0 1282 ELEMENT_NAMES[348] = ELT_ALTGLYPHDEF;
michael@0 1283 ELEMENT_NAMES[349] = ELT_DETERMINANT;
michael@0 1284 ELEMENT_NAMES[350] = ELT_FEMERGENODE;
michael@0 1285 ELEMENT_NAMES[351] = ELT_FECOMPOSITE;
michael@0 1286 ELEMENT_NAMES[352] = ELT_FESPOTLIGHT;
michael@0 1287 ELEMENT_NAMES[353] = ELT_MALIGNGROUP;
michael@0 1288 ELEMENT_NAMES[354] = ELT_MPRESCRIPTS;
michael@0 1289 ELEMENT_NAMES[355] = ELT_MOMENTABOUT;
michael@0 1290 ELEMENT_NAMES[356] = ELT_NOTPRSUBSET;
michael@0 1291 ELEMENT_NAMES[357] = ELT_PARTIALDIFF;
michael@0 1292 ELEMENT_NAMES[358] = ELT_ALTGLYPHITEM;
michael@0 1293 ELEMENT_NAMES[359] = ELT_ANIMATECOLOR;
michael@0 1294 ELEMENT_NAMES[360] = ELT_DATATEMPLATE;
michael@0 1295 ELEMENT_NAMES[361] = ELT_EXPONENTIALE;
michael@0 1296 ELEMENT_NAMES[362] = ELT_FETURBULENCE;
michael@0 1297 ELEMENT_NAMES[363] = ELT_FEPOINTLIGHT;
michael@0 1298 ELEMENT_NAMES[364] = ELT_FEDROPSHADOW;
michael@0 1299 ELEMENT_NAMES[365] = ELT_FEMORPHOLOGY;
michael@0 1300 ELEMENT_NAMES[366] = ELT_OUTERPRODUCT;
michael@0 1301 ELEMENT_NAMES[367] = ELT_ANIMATEMOTION;
michael@0 1302 ELEMENT_NAMES[368] = ELT_COLOR_PROFILE;
michael@0 1303 ELEMENT_NAMES[369] = ELT_FONT_FACE_SRC;
michael@0 1304 ELEMENT_NAMES[370] = ELT_FONT_FACE_URI;
michael@0 1305 ELEMENT_NAMES[371] = ELT_FOREIGNOBJECT;
michael@0 1306 ELEMENT_NAMES[372] = ELT_FECOLORMATRIX;
michael@0 1307 ELEMENT_NAMES[373] = ELT_MISSING_GLYPH;
michael@0 1308 ELEMENT_NAMES[374] = ELT_MMULTISCRIPTS;
michael@0 1309 ELEMENT_NAMES[375] = ELT_SCALARPRODUCT;
michael@0 1310 ELEMENT_NAMES[376] = ELT_VECTORPRODUCT;
michael@0 1311 ELEMENT_NAMES[377] = ELT_ANNOTATION_XML;
michael@0 1312 ELEMENT_NAMES[378] = ELT_DEFINITION_SRC;
michael@0 1313 ELEMENT_NAMES[379] = ELT_FONT_FACE_NAME;
michael@0 1314 ELEMENT_NAMES[380] = ELT_FEGAUSSIANBLUR;
michael@0 1315 ELEMENT_NAMES[381] = ELT_FEDISTANTLIGHT;
michael@0 1316 ELEMENT_NAMES[382] = ELT_LINEARGRADIENT;
michael@0 1317 ELEMENT_NAMES[383] = ELT_NATURALNUMBERS;
michael@0 1318 ELEMENT_NAMES[384] = ELT_RADIALGRADIENT;
michael@0 1319 ELEMENT_NAMES[385] = ELT_ANIMATETRANSFORM;
michael@0 1320 ELEMENT_NAMES[386] = ELT_CARTESIANPRODUCT;
michael@0 1321 ELEMENT_NAMES[387] = ELT_FONT_FACE_FORMAT;
michael@0 1322 ELEMENT_NAMES[388] = ELT_FECONVOLVEMATRIX;
michael@0 1323 ELEMENT_NAMES[389] = ELT_FEDIFFUSELIGHTING;
michael@0 1324 ELEMENT_NAMES[390] = ELT_FEDISPLACEMENTMAP;
michael@0 1325 ELEMENT_NAMES[391] = ELT_FESPECULARLIGHTING;
michael@0 1326 ELEMENT_NAMES[392] = ELT_DOMAINOFAPPLICATION;
michael@0 1327 ELEMENT_NAMES[393] = ELT_FECOMPONENTTRANSFER;
michael@0 1328 }
michael@0 1329
michael@0 1330 void
michael@0 1331 nsHtml5ElementName::releaseStatics()
michael@0 1332 {
michael@0 1333 delete ELT_NULL_ELEMENT_NAME;
michael@0 1334 delete ELT_A;
michael@0 1335 delete ELT_B;
michael@0 1336 delete ELT_G;
michael@0 1337 delete ELT_I;
michael@0 1338 delete ELT_P;
michael@0 1339 delete ELT_Q;
michael@0 1340 delete ELT_S;
michael@0 1341 delete ELT_U;
michael@0 1342 delete ELT_BR;
michael@0 1343 delete ELT_CI;
michael@0 1344 delete ELT_CN;
michael@0 1345 delete ELT_DD;
michael@0 1346 delete ELT_DL;
michael@0 1347 delete ELT_DT;
michael@0 1348 delete ELT_EM;
michael@0 1349 delete ELT_EQ;
michael@0 1350 delete ELT_FN;
michael@0 1351 delete ELT_H1;
michael@0 1352 delete ELT_H2;
michael@0 1353 delete ELT_H3;
michael@0 1354 delete ELT_H4;
michael@0 1355 delete ELT_H5;
michael@0 1356 delete ELT_H6;
michael@0 1357 delete ELT_GT;
michael@0 1358 delete ELT_HR;
michael@0 1359 delete ELT_IN;
michael@0 1360 delete ELT_LI;
michael@0 1361 delete ELT_LN;
michael@0 1362 delete ELT_LT;
michael@0 1363 delete ELT_MI;
michael@0 1364 delete ELT_MN;
michael@0 1365 delete ELT_MO;
michael@0 1366 delete ELT_MS;
michael@0 1367 delete ELT_OL;
michael@0 1368 delete ELT_OR;
michael@0 1369 delete ELT_PI;
michael@0 1370 delete ELT_RP;
michael@0 1371 delete ELT_RT;
michael@0 1372 delete ELT_TD;
michael@0 1373 delete ELT_TH;
michael@0 1374 delete ELT_TR;
michael@0 1375 delete ELT_TT;
michael@0 1376 delete ELT_UL;
michael@0 1377 delete ELT_AND;
michael@0 1378 delete ELT_ARG;
michael@0 1379 delete ELT_ABS;
michael@0 1380 delete ELT_BIG;
michael@0 1381 delete ELT_BDO;
michael@0 1382 delete ELT_CSC;
michael@0 1383 delete ELT_COL;
michael@0 1384 delete ELT_COS;
michael@0 1385 delete ELT_COT;
michael@0 1386 delete ELT_DEL;
michael@0 1387 delete ELT_DFN;
michael@0 1388 delete ELT_DIR;
michael@0 1389 delete ELT_DIV;
michael@0 1390 delete ELT_EXP;
michael@0 1391 delete ELT_GCD;
michael@0 1392 delete ELT_GEQ;
michael@0 1393 delete ELT_IMG;
michael@0 1394 delete ELT_INS;
michael@0 1395 delete ELT_INT;
michael@0 1396 delete ELT_KBD;
michael@0 1397 delete ELT_LOG;
michael@0 1398 delete ELT_LCM;
michael@0 1399 delete ELT_LEQ;
michael@0 1400 delete ELT_MTD;
michael@0 1401 delete ELT_MIN;
michael@0 1402 delete ELT_MAP;
michael@0 1403 delete ELT_MTR;
michael@0 1404 delete ELT_MAX;
michael@0 1405 delete ELT_NEQ;
michael@0 1406 delete ELT_NOT;
michael@0 1407 delete ELT_NAV;
michael@0 1408 delete ELT_PRE;
michael@0 1409 delete ELT_REM;
michael@0 1410 delete ELT_SUB;
michael@0 1411 delete ELT_SEC;
michael@0 1412 delete ELT_SVG;
michael@0 1413 delete ELT_SUM;
michael@0 1414 delete ELT_SIN;
michael@0 1415 delete ELT_SEP;
michael@0 1416 delete ELT_SUP;
michael@0 1417 delete ELT_SET;
michael@0 1418 delete ELT_TAN;
michael@0 1419 delete ELT_USE;
michael@0 1420 delete ELT_VAR;
michael@0 1421 delete ELT_WBR;
michael@0 1422 delete ELT_XMP;
michael@0 1423 delete ELT_XOR;
michael@0 1424 delete ELT_AREA;
michael@0 1425 delete ELT_ABBR;
michael@0 1426 delete ELT_BASE;
michael@0 1427 delete ELT_BVAR;
michael@0 1428 delete ELT_BODY;
michael@0 1429 delete ELT_CARD;
michael@0 1430 delete ELT_CODE;
michael@0 1431 delete ELT_CITE;
michael@0 1432 delete ELT_CSCH;
michael@0 1433 delete ELT_COSH;
michael@0 1434 delete ELT_COTH;
michael@0 1435 delete ELT_CURL;
michael@0 1436 delete ELT_DESC;
michael@0 1437 delete ELT_DIFF;
michael@0 1438 delete ELT_DEFS;
michael@0 1439 delete ELT_FORM;
michael@0 1440 delete ELT_FONT;
michael@0 1441 delete ELT_GRAD;
michael@0 1442 delete ELT_HEAD;
michael@0 1443 delete ELT_HTML;
michael@0 1444 delete ELT_LINE;
michael@0 1445 delete ELT_LINK;
michael@0 1446 delete ELT_LIST;
michael@0 1447 delete ELT_META;
michael@0 1448 delete ELT_MSUB;
michael@0 1449 delete ELT_MODE;
michael@0 1450 delete ELT_MATH;
michael@0 1451 delete ELT_MARK;
michael@0 1452 delete ELT_MASK;
michael@0 1453 delete ELT_MEAN;
michael@0 1454 delete ELT_MAIN;
michael@0 1455 delete ELT_MSUP;
michael@0 1456 delete ELT_MENU;
michael@0 1457 delete ELT_MROW;
michael@0 1458 delete ELT_NONE;
michael@0 1459 delete ELT_NOBR;
michael@0 1460 delete ELT_NEST;
michael@0 1461 delete ELT_PATH;
michael@0 1462 delete ELT_PLUS;
michael@0 1463 delete ELT_RULE;
michael@0 1464 delete ELT_REAL;
michael@0 1465 delete ELT_RELN;
michael@0 1466 delete ELT_RECT;
michael@0 1467 delete ELT_ROOT;
michael@0 1468 delete ELT_RUBY;
michael@0 1469 delete ELT_SECH;
michael@0 1470 delete ELT_SINH;
michael@0 1471 delete ELT_SPAN;
michael@0 1472 delete ELT_SAMP;
michael@0 1473 delete ELT_STOP;
michael@0 1474 delete ELT_SDEV;
michael@0 1475 delete ELT_TIME;
michael@0 1476 delete ELT_TRUE;
michael@0 1477 delete ELT_TREF;
michael@0 1478 delete ELT_TANH;
michael@0 1479 delete ELT_TEXT;
michael@0 1480 delete ELT_VIEW;
michael@0 1481 delete ELT_ASIDE;
michael@0 1482 delete ELT_AUDIO;
michael@0 1483 delete ELT_APPLY;
michael@0 1484 delete ELT_EMBED;
michael@0 1485 delete ELT_FRAME;
michael@0 1486 delete ELT_FALSE;
michael@0 1487 delete ELT_FLOOR;
michael@0 1488 delete ELT_GLYPH;
michael@0 1489 delete ELT_HKERN;
michael@0 1490 delete ELT_IMAGE;
michael@0 1491 delete ELT_IDENT;
michael@0 1492 delete ELT_INPUT;
michael@0 1493 delete ELT_LABEL;
michael@0 1494 delete ELT_LIMIT;
michael@0 1495 delete ELT_MFRAC;
michael@0 1496 delete ELT_MPATH;
michael@0 1497 delete ELT_METER;
michael@0 1498 delete ELT_MOVER;
michael@0 1499 delete ELT_MINUS;
michael@0 1500 delete ELT_MROOT;
michael@0 1501 delete ELT_MSQRT;
michael@0 1502 delete ELT_MTEXT;
michael@0 1503 delete ELT_NOTIN;
michael@0 1504 delete ELT_PIECE;
michael@0 1505 delete ELT_PARAM;
michael@0 1506 delete ELT_POWER;
michael@0 1507 delete ELT_REALS;
michael@0 1508 delete ELT_STYLE;
michael@0 1509 delete ELT_SMALL;
michael@0 1510 delete ELT_THEAD;
michael@0 1511 delete ELT_TABLE;
michael@0 1512 delete ELT_TITLE;
michael@0 1513 delete ELT_TRACK;
michael@0 1514 delete ELT_TSPAN;
michael@0 1515 delete ELT_TIMES;
michael@0 1516 delete ELT_TFOOT;
michael@0 1517 delete ELT_TBODY;
michael@0 1518 delete ELT_UNION;
michael@0 1519 delete ELT_VKERN;
michael@0 1520 delete ELT_VIDEO;
michael@0 1521 delete ELT_ARCSEC;
michael@0 1522 delete ELT_ARCCSC;
michael@0 1523 delete ELT_ARCTAN;
michael@0 1524 delete ELT_ARCSIN;
michael@0 1525 delete ELT_ARCCOS;
michael@0 1526 delete ELT_APPLET;
michael@0 1527 delete ELT_ARCCOT;
michael@0 1528 delete ELT_APPROX;
michael@0 1529 delete ELT_BUTTON;
michael@0 1530 delete ELT_CIRCLE;
michael@0 1531 delete ELT_CENTER;
michael@0 1532 delete ELT_CURSOR;
michael@0 1533 delete ELT_CANVAS;
michael@0 1534 delete ELT_DIVIDE;
michael@0 1535 delete ELT_DEGREE;
michael@0 1536 delete ELT_DOMAIN;
michael@0 1537 delete ELT_EXISTS;
michael@0 1538 delete ELT_FETILE;
michael@0 1539 delete ELT_FIGURE;
michael@0 1540 delete ELT_FORALL;
michael@0 1541 delete ELT_FILTER;
michael@0 1542 delete ELT_FOOTER;
michael@0 1543 delete ELT_HGROUP;
michael@0 1544 delete ELT_HEADER;
michael@0 1545 delete ELT_IFRAME;
michael@0 1546 delete ELT_KEYGEN;
michael@0 1547 delete ELT_LAMBDA;
michael@0 1548 delete ELT_LEGEND;
michael@0 1549 delete ELT_MSPACE;
michael@0 1550 delete ELT_MTABLE;
michael@0 1551 delete ELT_MSTYLE;
michael@0 1552 delete ELT_MGLYPH;
michael@0 1553 delete ELT_MEDIAN;
michael@0 1554 delete ELT_MUNDER;
michael@0 1555 delete ELT_MARKER;
michael@0 1556 delete ELT_MERROR;
michael@0 1557 delete ELT_MOMENT;
michael@0 1558 delete ELT_MATRIX;
michael@0 1559 delete ELT_OPTION;
michael@0 1560 delete ELT_OBJECT;
michael@0 1561 delete ELT_OUTPUT;
michael@0 1562 delete ELT_PRIMES;
michael@0 1563 delete ELT_SOURCE;
michael@0 1564 delete ELT_STRIKE;
michael@0 1565 delete ELT_STRONG;
michael@0 1566 delete ELT_SWITCH;
michael@0 1567 delete ELT_SYMBOL;
michael@0 1568 delete ELT_SELECT;
michael@0 1569 delete ELT_SUBSET;
michael@0 1570 delete ELT_SCRIPT;
michael@0 1571 delete ELT_TBREAK;
michael@0 1572 delete ELT_VECTOR;
michael@0 1573 delete ELT_ARTICLE;
michael@0 1574 delete ELT_ANIMATE;
michael@0 1575 delete ELT_ARCSECH;
michael@0 1576 delete ELT_ARCCSCH;
michael@0 1577 delete ELT_ARCTANH;
michael@0 1578 delete ELT_ARCSINH;
michael@0 1579 delete ELT_ARCCOSH;
michael@0 1580 delete ELT_ARCCOTH;
michael@0 1581 delete ELT_ACRONYM;
michael@0 1582 delete ELT_ADDRESS;
michael@0 1583 delete ELT_BGSOUND;
michael@0 1584 delete ELT_COMPOSE;
michael@0 1585 delete ELT_CEILING;
michael@0 1586 delete ELT_CSYMBOL;
michael@0 1587 delete ELT_CAPTION;
michael@0 1588 delete ELT_DISCARD;
michael@0 1589 delete ELT_DECLARE;
michael@0 1590 delete ELT_DETAILS;
michael@0 1591 delete ELT_ELLIPSE;
michael@0 1592 delete ELT_FEFUNCA;
michael@0 1593 delete ELT_FEFUNCB;
michael@0 1594 delete ELT_FEBLEND;
michael@0 1595 delete ELT_FEFLOOD;
michael@0 1596 delete ELT_FEIMAGE;
michael@0 1597 delete ELT_FEMERGE;
michael@0 1598 delete ELT_FEFUNCG;
michael@0 1599 delete ELT_FEFUNCR;
michael@0 1600 delete ELT_HANDLER;
michael@0 1601 delete ELT_INVERSE;
michael@0 1602 delete ELT_IMPLIES;
michael@0 1603 delete ELT_ISINDEX;
michael@0 1604 delete ELT_LOGBASE;
michael@0 1605 delete ELT_LISTING;
michael@0 1606 delete ELT_MFENCED;
michael@0 1607 delete ELT_MPADDED;
michael@0 1608 delete ELT_MARQUEE;
michael@0 1609 delete ELT_MACTION;
michael@0 1610 delete ELT_MSUBSUP;
michael@0 1611 delete ELT_NOEMBED;
michael@0 1612 delete ELT_POLYGON;
michael@0 1613 delete ELT_PATTERN;
michael@0 1614 delete ELT_PRODUCT;
michael@0 1615 delete ELT_SETDIFF;
michael@0 1616 delete ELT_SECTION;
michael@0 1617 delete ELT_SUMMARY;
michael@0 1618 delete ELT_TENDSTO;
michael@0 1619 delete ELT_UPLIMIT;
michael@0 1620 delete ELT_ALTGLYPH;
michael@0 1621 delete ELT_BASEFONT;
michael@0 1622 delete ELT_CLIPPATH;
michael@0 1623 delete ELT_CODOMAIN;
michael@0 1624 delete ELT_COLGROUP;
michael@0 1625 delete ELT_EMPTYSET;
michael@0 1626 delete ELT_FACTOROF;
michael@0 1627 delete ELT_FIELDSET;
michael@0 1628 delete ELT_FRAMESET;
michael@0 1629 delete ELT_FEOFFSET;
michael@0 1630 delete ELT_GLYPHREF;
michael@0 1631 delete ELT_INTERVAL;
michael@0 1632 delete ELT_INTEGERS;
michael@0 1633 delete ELT_INFINITY;
michael@0 1634 delete ELT_LISTENER;
michael@0 1635 delete ELT_LOWLIMIT;
michael@0 1636 delete ELT_METADATA;
michael@0 1637 delete ELT_MENCLOSE;
michael@0 1638 delete ELT_MENUITEM;
michael@0 1639 delete ELT_MPHANTOM;
michael@0 1640 delete ELT_NOFRAMES;
michael@0 1641 delete ELT_NOSCRIPT;
michael@0 1642 delete ELT_OPTGROUP;
michael@0 1643 delete ELT_POLYLINE;
michael@0 1644 delete ELT_PREFETCH;
michael@0 1645 delete ELT_PROGRESS;
michael@0 1646 delete ELT_PRSUBSET;
michael@0 1647 delete ELT_QUOTIENT;
michael@0 1648 delete ELT_SELECTOR;
michael@0 1649 delete ELT_TEXTAREA;
michael@0 1650 delete ELT_TEMPLATE;
michael@0 1651 delete ELT_TEXTPATH;
michael@0 1652 delete ELT_VARIANCE;
michael@0 1653 delete ELT_ANIMATION;
michael@0 1654 delete ELT_CONJUGATE;
michael@0 1655 delete ELT_CONDITION;
michael@0 1656 delete ELT_COMPLEXES;
michael@0 1657 delete ELT_FONT_FACE;
michael@0 1658 delete ELT_FACTORIAL;
michael@0 1659 delete ELT_INTERSECT;
michael@0 1660 delete ELT_IMAGINARY;
michael@0 1661 delete ELT_LAPLACIAN;
michael@0 1662 delete ELT_MATRIXROW;
michael@0 1663 delete ELT_NOTSUBSET;
michael@0 1664 delete ELT_OTHERWISE;
michael@0 1665 delete ELT_PIECEWISE;
michael@0 1666 delete ELT_PLAINTEXT;
michael@0 1667 delete ELT_RATIONALS;
michael@0 1668 delete ELT_SEMANTICS;
michael@0 1669 delete ELT_TRANSPOSE;
michael@0 1670 delete ELT_ANNOTATION;
michael@0 1671 delete ELT_BLOCKQUOTE;
michael@0 1672 delete ELT_DIVERGENCE;
michael@0 1673 delete ELT_EULERGAMMA;
michael@0 1674 delete ELT_EQUIVALENT;
michael@0 1675 delete ELT_FIGCAPTION;
michael@0 1676 delete ELT_IMAGINARYI;
michael@0 1677 delete ELT_MALIGNMARK;
michael@0 1678 delete ELT_MUNDEROVER;
michael@0 1679 delete ELT_MLABELEDTR;
michael@0 1680 delete ELT_NOTANUMBER;
michael@0 1681 delete ELT_SOLIDCOLOR;
michael@0 1682 delete ELT_ALTGLYPHDEF;
michael@0 1683 delete ELT_DETERMINANT;
michael@0 1684 delete ELT_FEMERGENODE;
michael@0 1685 delete ELT_FECOMPOSITE;
michael@0 1686 delete ELT_FESPOTLIGHT;
michael@0 1687 delete ELT_MALIGNGROUP;
michael@0 1688 delete ELT_MPRESCRIPTS;
michael@0 1689 delete ELT_MOMENTABOUT;
michael@0 1690 delete ELT_NOTPRSUBSET;
michael@0 1691 delete ELT_PARTIALDIFF;
michael@0 1692 delete ELT_ALTGLYPHITEM;
michael@0 1693 delete ELT_ANIMATECOLOR;
michael@0 1694 delete ELT_DATATEMPLATE;
michael@0 1695 delete ELT_EXPONENTIALE;
michael@0 1696 delete ELT_FETURBULENCE;
michael@0 1697 delete ELT_FEPOINTLIGHT;
michael@0 1698 delete ELT_FEDROPSHADOW;
michael@0 1699 delete ELT_FEMORPHOLOGY;
michael@0 1700 delete ELT_OUTERPRODUCT;
michael@0 1701 delete ELT_ANIMATEMOTION;
michael@0 1702 delete ELT_COLOR_PROFILE;
michael@0 1703 delete ELT_FONT_FACE_SRC;
michael@0 1704 delete ELT_FONT_FACE_URI;
michael@0 1705 delete ELT_FOREIGNOBJECT;
michael@0 1706 delete ELT_FECOLORMATRIX;
michael@0 1707 delete ELT_MISSING_GLYPH;
michael@0 1708 delete ELT_MMULTISCRIPTS;
michael@0 1709 delete ELT_SCALARPRODUCT;
michael@0 1710 delete ELT_VECTORPRODUCT;
michael@0 1711 delete ELT_ANNOTATION_XML;
michael@0 1712 delete ELT_DEFINITION_SRC;
michael@0 1713 delete ELT_FONT_FACE_NAME;
michael@0 1714 delete ELT_FEGAUSSIANBLUR;
michael@0 1715 delete ELT_FEDISTANTLIGHT;
michael@0 1716 delete ELT_LINEARGRADIENT;
michael@0 1717 delete ELT_NATURALNUMBERS;
michael@0 1718 delete ELT_RADIALGRADIENT;
michael@0 1719 delete ELT_ANIMATETRANSFORM;
michael@0 1720 delete ELT_CARTESIANPRODUCT;
michael@0 1721 delete ELT_FONT_FACE_FORMAT;
michael@0 1722 delete ELT_FECONVOLVEMATRIX;
michael@0 1723 delete ELT_FEDIFFUSELIGHTING;
michael@0 1724 delete ELT_FEDISPLACEMENTMAP;
michael@0 1725 delete ELT_FESPECULARLIGHTING;
michael@0 1726 delete ELT_DOMAINOFAPPLICATION;
michael@0 1727 delete ELT_FECOMPONENTTRANSFER;
michael@0 1728 delete[] ELEMENT_NAMES;
michael@0 1729 }
michael@0 1730
michael@0 1731

mercurial