Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
michael@0 | 1 | /* |
michael@0 | 2 | * Copyright (c) 2008-2011 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 AttributeName.java instead and regenerate. |
michael@0 | 26 | */ |
michael@0 | 27 | |
michael@0 | 28 | #ifndef nsHtml5AttributeName_h |
michael@0 | 29 | #define nsHtml5AttributeName_h |
michael@0 | 30 | |
michael@0 | 31 | #include "nsIAtom.h" |
michael@0 | 32 | #include "nsHtml5AtomTable.h" |
michael@0 | 33 | #include "nsString.h" |
michael@0 | 34 | #include "nsNameSpaceManager.h" |
michael@0 | 35 | #include "nsIContent.h" |
michael@0 | 36 | #include "nsTraceRefcnt.h" |
michael@0 | 37 | #include "jArray.h" |
michael@0 | 38 | #include "nsHtml5ArrayCopy.h" |
michael@0 | 39 | #include "nsAHtml5TreeBuilderState.h" |
michael@0 | 40 | #include "nsHtml5Atoms.h" |
michael@0 | 41 | #include "nsHtml5ByteReadable.h" |
michael@0 | 42 | #include "nsIUnicodeDecoder.h" |
michael@0 | 43 | #include "nsHtml5Macros.h" |
michael@0 | 44 | #include "nsIContentHandle.h" |
michael@0 | 45 | |
michael@0 | 46 | class nsHtml5StreamParser; |
michael@0 | 47 | |
michael@0 | 48 | class nsHtml5Tokenizer; |
michael@0 | 49 | class nsHtml5TreeBuilder; |
michael@0 | 50 | class nsHtml5MetaScanner; |
michael@0 | 51 | class nsHtml5ElementName; |
michael@0 | 52 | class nsHtml5HtmlAttributes; |
michael@0 | 53 | class nsHtml5UTF16Buffer; |
michael@0 | 54 | class nsHtml5StateSnapshot; |
michael@0 | 55 | class nsHtml5Portability; |
michael@0 | 56 | |
michael@0 | 57 | |
michael@0 | 58 | class nsHtml5AttributeName |
michael@0 | 59 | { |
michael@0 | 60 | public: |
michael@0 | 61 | static int32_t* ALL_NO_NS; |
michael@0 | 62 | private: |
michael@0 | 63 | static int32_t* XMLNS_NS; |
michael@0 | 64 | static int32_t* XML_NS; |
michael@0 | 65 | static int32_t* XLINK_NS; |
michael@0 | 66 | public: |
michael@0 | 67 | static nsIAtom** ALL_NO_PREFIX; |
michael@0 | 68 | private: |
michael@0 | 69 | static nsIAtom** XMLNS_PREFIX; |
michael@0 | 70 | static nsIAtom** XLINK_PREFIX; |
michael@0 | 71 | static nsIAtom** XML_PREFIX; |
michael@0 | 72 | static nsIAtom** SVG_DIFFERENT(nsIAtom* name, nsIAtom* camel); |
michael@0 | 73 | static nsIAtom** MATH_DIFFERENT(nsIAtom* name, nsIAtom* camel); |
michael@0 | 74 | static nsIAtom** COLONIFIED_LOCAL(nsIAtom* name, nsIAtom* suffix); |
michael@0 | 75 | public: |
michael@0 | 76 | static nsIAtom** SAME_LOCAL(nsIAtom* name); |
michael@0 | 77 | static nsHtml5AttributeName* nameByBuffer(char16_t* buf, int32_t offset, int32_t length, nsHtml5AtomTable* interner); |
michael@0 | 78 | private: |
michael@0 | 79 | static int32_t bufToHash(char16_t* buf, int32_t len); |
michael@0 | 80 | int32_t* uri; |
michael@0 | 81 | nsIAtom** local; |
michael@0 | 82 | nsIAtom** prefix; |
michael@0 | 83 | protected: |
michael@0 | 84 | nsHtml5AttributeName(int32_t* uri, nsIAtom** local, nsIAtom** prefix); |
michael@0 | 85 | private: |
michael@0 | 86 | static nsHtml5AttributeName* createAttributeName(nsIAtom* name); |
michael@0 | 87 | public: |
michael@0 | 88 | virtual void release(); |
michael@0 | 89 | virtual ~nsHtml5AttributeName(); |
michael@0 | 90 | virtual nsHtml5AttributeName* cloneAttributeName(nsHtml5AtomTable* interner); |
michael@0 | 91 | int32_t getUri(int32_t mode); |
michael@0 | 92 | nsIAtom* getLocal(int32_t mode); |
michael@0 | 93 | nsIAtom* getPrefix(int32_t mode); |
michael@0 | 94 | bool equalsAnother(nsHtml5AttributeName* another); |
michael@0 | 95 | static nsHtml5AttributeName* ATTR_D; |
michael@0 | 96 | static nsHtml5AttributeName* ATTR_K; |
michael@0 | 97 | static nsHtml5AttributeName* ATTR_R; |
michael@0 | 98 | static nsHtml5AttributeName* ATTR_X; |
michael@0 | 99 | static nsHtml5AttributeName* ATTR_Y; |
michael@0 | 100 | static nsHtml5AttributeName* ATTR_Z; |
michael@0 | 101 | static nsHtml5AttributeName* ATTR_BY; |
michael@0 | 102 | static nsHtml5AttributeName* ATTR_CX; |
michael@0 | 103 | static nsHtml5AttributeName* ATTR_CY; |
michael@0 | 104 | static nsHtml5AttributeName* ATTR_DX; |
michael@0 | 105 | static nsHtml5AttributeName* ATTR_DY; |
michael@0 | 106 | static nsHtml5AttributeName* ATTR_G2; |
michael@0 | 107 | static nsHtml5AttributeName* ATTR_G1; |
michael@0 | 108 | static nsHtml5AttributeName* ATTR_FX; |
michael@0 | 109 | static nsHtml5AttributeName* ATTR_FY; |
michael@0 | 110 | static nsHtml5AttributeName* ATTR_K4; |
michael@0 | 111 | static nsHtml5AttributeName* ATTR_K2; |
michael@0 | 112 | static nsHtml5AttributeName* ATTR_K3; |
michael@0 | 113 | static nsHtml5AttributeName* ATTR_K1; |
michael@0 | 114 | static nsHtml5AttributeName* ATTR_ID; |
michael@0 | 115 | static nsHtml5AttributeName* ATTR_IN; |
michael@0 | 116 | static nsHtml5AttributeName* ATTR_U2; |
michael@0 | 117 | static nsHtml5AttributeName* ATTR_U1; |
michael@0 | 118 | static nsHtml5AttributeName* ATTR_RT; |
michael@0 | 119 | static nsHtml5AttributeName* ATTR_RX; |
michael@0 | 120 | static nsHtml5AttributeName* ATTR_RY; |
michael@0 | 121 | static nsHtml5AttributeName* ATTR_TO; |
michael@0 | 122 | static nsHtml5AttributeName* ATTR_Y2; |
michael@0 | 123 | static nsHtml5AttributeName* ATTR_Y1; |
michael@0 | 124 | static nsHtml5AttributeName* ATTR_X1; |
michael@0 | 125 | static nsHtml5AttributeName* ATTR_X2; |
michael@0 | 126 | static nsHtml5AttributeName* ATTR_ALT; |
michael@0 | 127 | static nsHtml5AttributeName* ATTR_DIR; |
michael@0 | 128 | static nsHtml5AttributeName* ATTR_DUR; |
michael@0 | 129 | static nsHtml5AttributeName* ATTR_END; |
michael@0 | 130 | static nsHtml5AttributeName* ATTR_FOR; |
michael@0 | 131 | static nsHtml5AttributeName* ATTR_IN2; |
michael@0 | 132 | static nsHtml5AttributeName* ATTR_MAX; |
michael@0 | 133 | static nsHtml5AttributeName* ATTR_MIN; |
michael@0 | 134 | static nsHtml5AttributeName* ATTR_LOW; |
michael@0 | 135 | static nsHtml5AttributeName* ATTR_REL; |
michael@0 | 136 | static nsHtml5AttributeName* ATTR_REV; |
michael@0 | 137 | static nsHtml5AttributeName* ATTR_SRC; |
michael@0 | 138 | static nsHtml5AttributeName* ATTR_AXIS; |
michael@0 | 139 | static nsHtml5AttributeName* ATTR_ABBR; |
michael@0 | 140 | static nsHtml5AttributeName* ATTR_BBOX; |
michael@0 | 141 | static nsHtml5AttributeName* ATTR_CITE; |
michael@0 | 142 | static nsHtml5AttributeName* ATTR_CODE; |
michael@0 | 143 | static nsHtml5AttributeName* ATTR_BIAS; |
michael@0 | 144 | static nsHtml5AttributeName* ATTR_COLS; |
michael@0 | 145 | static nsHtml5AttributeName* ATTR_CLIP; |
michael@0 | 146 | static nsHtml5AttributeName* ATTR_CHAR; |
michael@0 | 147 | static nsHtml5AttributeName* ATTR_BASE; |
michael@0 | 148 | static nsHtml5AttributeName* ATTR_EDGE; |
michael@0 | 149 | static nsHtml5AttributeName* ATTR_DATA; |
michael@0 | 150 | static nsHtml5AttributeName* ATTR_FILL; |
michael@0 | 151 | static nsHtml5AttributeName* ATTR_FROM; |
michael@0 | 152 | static nsHtml5AttributeName* ATTR_FORM; |
michael@0 | 153 | static nsHtml5AttributeName* ATTR_FACE; |
michael@0 | 154 | static nsHtml5AttributeName* ATTR_HIGH; |
michael@0 | 155 | static nsHtml5AttributeName* ATTR_HREF; |
michael@0 | 156 | static nsHtml5AttributeName* ATTR_OPEN; |
michael@0 | 157 | static nsHtml5AttributeName* ATTR_ICON; |
michael@0 | 158 | static nsHtml5AttributeName* ATTR_NAME; |
michael@0 | 159 | static nsHtml5AttributeName* ATTR_MODE; |
michael@0 | 160 | static nsHtml5AttributeName* ATTR_MASK; |
michael@0 | 161 | static nsHtml5AttributeName* ATTR_LINK; |
michael@0 | 162 | static nsHtml5AttributeName* ATTR_LANG; |
michael@0 | 163 | static nsHtml5AttributeName* ATTR_LOOP; |
michael@0 | 164 | static nsHtml5AttributeName* ATTR_LIST; |
michael@0 | 165 | static nsHtml5AttributeName* ATTR_TYPE; |
michael@0 | 166 | static nsHtml5AttributeName* ATTR_WHEN; |
michael@0 | 167 | static nsHtml5AttributeName* ATTR_WRAP; |
michael@0 | 168 | static nsHtml5AttributeName* ATTR_TEXT; |
michael@0 | 169 | static nsHtml5AttributeName* ATTR_PATH; |
michael@0 | 170 | static nsHtml5AttributeName* ATTR_PING; |
michael@0 | 171 | static nsHtml5AttributeName* ATTR_REFX; |
michael@0 | 172 | static nsHtml5AttributeName* ATTR_REFY; |
michael@0 | 173 | static nsHtml5AttributeName* ATTR_SIZE; |
michael@0 | 174 | static nsHtml5AttributeName* ATTR_SEED; |
michael@0 | 175 | static nsHtml5AttributeName* ATTR_ROWS; |
michael@0 | 176 | static nsHtml5AttributeName* ATTR_SPAN; |
michael@0 | 177 | static nsHtml5AttributeName* ATTR_STEP; |
michael@0 | 178 | static nsHtml5AttributeName* ATTR_ROLE; |
michael@0 | 179 | static nsHtml5AttributeName* ATTR_XREF; |
michael@0 | 180 | static nsHtml5AttributeName* ATTR_ASYNC; |
michael@0 | 181 | static nsHtml5AttributeName* ATTR_ALINK; |
michael@0 | 182 | static nsHtml5AttributeName* ATTR_ALIGN; |
michael@0 | 183 | static nsHtml5AttributeName* ATTR_CLOSE; |
michael@0 | 184 | static nsHtml5AttributeName* ATTR_COLOR; |
michael@0 | 185 | static nsHtml5AttributeName* ATTR_CLASS; |
michael@0 | 186 | static nsHtml5AttributeName* ATTR_CLEAR; |
michael@0 | 187 | static nsHtml5AttributeName* ATTR_BEGIN; |
michael@0 | 188 | static nsHtml5AttributeName* ATTR_DEPTH; |
michael@0 | 189 | static nsHtml5AttributeName* ATTR_DEFER; |
michael@0 | 190 | static nsHtml5AttributeName* ATTR_FENCE; |
michael@0 | 191 | static nsHtml5AttributeName* ATTR_FRAME; |
michael@0 | 192 | static nsHtml5AttributeName* ATTR_ISMAP; |
michael@0 | 193 | static nsHtml5AttributeName* ATTR_ONEND; |
michael@0 | 194 | static nsHtml5AttributeName* ATTR_INDEX; |
michael@0 | 195 | static nsHtml5AttributeName* ATTR_ORDER; |
michael@0 | 196 | static nsHtml5AttributeName* ATTR_OTHER; |
michael@0 | 197 | static nsHtml5AttributeName* ATTR_ONCUT; |
michael@0 | 198 | static nsHtml5AttributeName* ATTR_NARGS; |
michael@0 | 199 | static nsHtml5AttributeName* ATTR_MEDIA; |
michael@0 | 200 | static nsHtml5AttributeName* ATTR_LABEL; |
michael@0 | 201 | static nsHtml5AttributeName* ATTR_LOCAL; |
michael@0 | 202 | static nsHtml5AttributeName* ATTR_WIDTH; |
michael@0 | 203 | static nsHtml5AttributeName* ATTR_TITLE; |
michael@0 | 204 | static nsHtml5AttributeName* ATTR_VLINK; |
michael@0 | 205 | static nsHtml5AttributeName* ATTR_VALUE; |
michael@0 | 206 | static nsHtml5AttributeName* ATTR_SLOPE; |
michael@0 | 207 | static nsHtml5AttributeName* ATTR_SHAPE; |
michael@0 | 208 | static nsHtml5AttributeName* ATTR_SCOPE; |
michael@0 | 209 | static nsHtml5AttributeName* ATTR_SCALE; |
michael@0 | 210 | static nsHtml5AttributeName* ATTR_SPEED; |
michael@0 | 211 | static nsHtml5AttributeName* ATTR_STYLE; |
michael@0 | 212 | static nsHtml5AttributeName* ATTR_RULES; |
michael@0 | 213 | static nsHtml5AttributeName* ATTR_STEMH; |
michael@0 | 214 | static nsHtml5AttributeName* ATTR_STEMV; |
michael@0 | 215 | static nsHtml5AttributeName* ATTR_START; |
michael@0 | 216 | static nsHtml5AttributeName* ATTR_XMLNS; |
michael@0 | 217 | static nsHtml5AttributeName* ATTR_ACCEPT; |
michael@0 | 218 | static nsHtml5AttributeName* ATTR_ACCENT; |
michael@0 | 219 | static nsHtml5AttributeName* ATTR_ASCENT; |
michael@0 | 220 | static nsHtml5AttributeName* ATTR_ACTIVE; |
michael@0 | 221 | static nsHtml5AttributeName* ATTR_ALTIMG; |
michael@0 | 222 | static nsHtml5AttributeName* ATTR_ACTION; |
michael@0 | 223 | static nsHtml5AttributeName* ATTR_BORDER; |
michael@0 | 224 | static nsHtml5AttributeName* ATTR_CURSOR; |
michael@0 | 225 | static nsHtml5AttributeName* ATTR_COORDS; |
michael@0 | 226 | static nsHtml5AttributeName* ATTR_FILTER; |
michael@0 | 227 | static nsHtml5AttributeName* ATTR_FORMAT; |
michael@0 | 228 | static nsHtml5AttributeName* ATTR_HIDDEN; |
michael@0 | 229 | static nsHtml5AttributeName* ATTR_HSPACE; |
michael@0 | 230 | static nsHtml5AttributeName* ATTR_HEIGHT; |
michael@0 | 231 | static nsHtml5AttributeName* ATTR_ONMOVE; |
michael@0 | 232 | static nsHtml5AttributeName* ATTR_ONLOAD; |
michael@0 | 233 | static nsHtml5AttributeName* ATTR_ONDRAG; |
michael@0 | 234 | static nsHtml5AttributeName* ATTR_ORIGIN; |
michael@0 | 235 | static nsHtml5AttributeName* ATTR_ONZOOM; |
michael@0 | 236 | static nsHtml5AttributeName* ATTR_ONHELP; |
michael@0 | 237 | static nsHtml5AttributeName* ATTR_ONSTOP; |
michael@0 | 238 | static nsHtml5AttributeName* ATTR_ONDROP; |
michael@0 | 239 | static nsHtml5AttributeName* ATTR_ONBLUR; |
michael@0 | 240 | static nsHtml5AttributeName* ATTR_OBJECT; |
michael@0 | 241 | static nsHtml5AttributeName* ATTR_OFFSET; |
michael@0 | 242 | static nsHtml5AttributeName* ATTR_ORIENT; |
michael@0 | 243 | static nsHtml5AttributeName* ATTR_ONCOPY; |
michael@0 | 244 | static nsHtml5AttributeName* ATTR_NOWRAP; |
michael@0 | 245 | static nsHtml5AttributeName* ATTR_NOHREF; |
michael@0 | 246 | static nsHtml5AttributeName* ATTR_MACROS; |
michael@0 | 247 | static nsHtml5AttributeName* ATTR_METHOD; |
michael@0 | 248 | static nsHtml5AttributeName* ATTR_LOWSRC; |
michael@0 | 249 | static nsHtml5AttributeName* ATTR_LSPACE; |
michael@0 | 250 | static nsHtml5AttributeName* ATTR_LQUOTE; |
michael@0 | 251 | static nsHtml5AttributeName* ATTR_USEMAP; |
michael@0 | 252 | static nsHtml5AttributeName* ATTR_WIDTHS; |
michael@0 | 253 | static nsHtml5AttributeName* ATTR_TARGET; |
michael@0 | 254 | static nsHtml5AttributeName* ATTR_VALUES; |
michael@0 | 255 | static nsHtml5AttributeName* ATTR_VALIGN; |
michael@0 | 256 | static nsHtml5AttributeName* ATTR_VSPACE; |
michael@0 | 257 | static nsHtml5AttributeName* ATTR_POSTER; |
michael@0 | 258 | static nsHtml5AttributeName* ATTR_POINTS; |
michael@0 | 259 | static nsHtml5AttributeName* ATTR_PROMPT; |
michael@0 | 260 | static nsHtml5AttributeName* ATTR_SRCDOC; |
michael@0 | 261 | static nsHtml5AttributeName* ATTR_SCOPED; |
michael@0 | 262 | static nsHtml5AttributeName* ATTR_STRING; |
michael@0 | 263 | static nsHtml5AttributeName* ATTR_SCHEME; |
michael@0 | 264 | static nsHtml5AttributeName* ATTR_STROKE; |
michael@0 | 265 | static nsHtml5AttributeName* ATTR_RADIUS; |
michael@0 | 266 | static nsHtml5AttributeName* ATTR_RESULT; |
michael@0 | 267 | static nsHtml5AttributeName* ATTR_REPEAT; |
michael@0 | 268 | static nsHtml5AttributeName* ATTR_RSPACE; |
michael@0 | 269 | static nsHtml5AttributeName* ATTR_ROTATE; |
michael@0 | 270 | static nsHtml5AttributeName* ATTR_RQUOTE; |
michael@0 | 271 | static nsHtml5AttributeName* ATTR_ALTTEXT; |
michael@0 | 272 | static nsHtml5AttributeName* ATTR_ARCHIVE; |
michael@0 | 273 | static nsHtml5AttributeName* ATTR_AZIMUTH; |
michael@0 | 274 | static nsHtml5AttributeName* ATTR_CLOSURE; |
michael@0 | 275 | static nsHtml5AttributeName* ATTR_CHECKED; |
michael@0 | 276 | static nsHtml5AttributeName* ATTR_CLASSID; |
michael@0 | 277 | static nsHtml5AttributeName* ATTR_CHAROFF; |
michael@0 | 278 | static nsHtml5AttributeName* ATTR_BGCOLOR; |
michael@0 | 279 | static nsHtml5AttributeName* ATTR_COLSPAN; |
michael@0 | 280 | static nsHtml5AttributeName* ATTR_CHARSET; |
michael@0 | 281 | static nsHtml5AttributeName* ATTR_COMPACT; |
michael@0 | 282 | static nsHtml5AttributeName* ATTR_CONTENT; |
michael@0 | 283 | static nsHtml5AttributeName* ATTR_ENCTYPE; |
michael@0 | 284 | static nsHtml5AttributeName* ATTR_DATASRC; |
michael@0 | 285 | static nsHtml5AttributeName* ATTR_DATAFLD; |
michael@0 | 286 | static nsHtml5AttributeName* ATTR_DECLARE; |
michael@0 | 287 | static nsHtml5AttributeName* ATTR_DISPLAY; |
michael@0 | 288 | static nsHtml5AttributeName* ATTR_DIVISOR; |
michael@0 | 289 | static nsHtml5AttributeName* ATTR_DEFAULT; |
michael@0 | 290 | static nsHtml5AttributeName* ATTR_DESCENT; |
michael@0 | 291 | static nsHtml5AttributeName* ATTR_KERNING; |
michael@0 | 292 | static nsHtml5AttributeName* ATTR_HANGING; |
michael@0 | 293 | static nsHtml5AttributeName* ATTR_HEADERS; |
michael@0 | 294 | static nsHtml5AttributeName* ATTR_ONPASTE; |
michael@0 | 295 | static nsHtml5AttributeName* ATTR_ONCLICK; |
michael@0 | 296 | static nsHtml5AttributeName* ATTR_OPTIMUM; |
michael@0 | 297 | static nsHtml5AttributeName* ATTR_ONBEGIN; |
michael@0 | 298 | static nsHtml5AttributeName* ATTR_ONKEYUP; |
michael@0 | 299 | static nsHtml5AttributeName* ATTR_ONFOCUS; |
michael@0 | 300 | static nsHtml5AttributeName* ATTR_ONERROR; |
michael@0 | 301 | static nsHtml5AttributeName* ATTR_ONINPUT; |
michael@0 | 302 | static nsHtml5AttributeName* ATTR_ONABORT; |
michael@0 | 303 | static nsHtml5AttributeName* ATTR_ONSTART; |
michael@0 | 304 | static nsHtml5AttributeName* ATTR_ONRESET; |
michael@0 | 305 | static nsHtml5AttributeName* ATTR_OPACITY; |
michael@0 | 306 | static nsHtml5AttributeName* ATTR_NOSHADE; |
michael@0 | 307 | static nsHtml5AttributeName* ATTR_MINSIZE; |
michael@0 | 308 | static nsHtml5AttributeName* ATTR_MAXSIZE; |
michael@0 | 309 | static nsHtml5AttributeName* ATTR_LARGEOP; |
michael@0 | 310 | static nsHtml5AttributeName* ATTR_UNICODE; |
michael@0 | 311 | static nsHtml5AttributeName* ATTR_TARGETX; |
michael@0 | 312 | static nsHtml5AttributeName* ATTR_TARGETY; |
michael@0 | 313 | static nsHtml5AttributeName* ATTR_VIEWBOX; |
michael@0 | 314 | static nsHtml5AttributeName* ATTR_VERSION; |
michael@0 | 315 | static nsHtml5AttributeName* ATTR_PATTERN; |
michael@0 | 316 | static nsHtml5AttributeName* ATTR_PROFILE; |
michael@0 | 317 | static nsHtml5AttributeName* ATTR_SPACING; |
michael@0 | 318 | static nsHtml5AttributeName* ATTR_RESTART; |
michael@0 | 319 | static nsHtml5AttributeName* ATTR_ROWSPAN; |
michael@0 | 320 | static nsHtml5AttributeName* ATTR_SANDBOX; |
michael@0 | 321 | static nsHtml5AttributeName* ATTR_SUMMARY; |
michael@0 | 322 | static nsHtml5AttributeName* ATTR_STANDBY; |
michael@0 | 323 | static nsHtml5AttributeName* ATTR_REPLACE; |
michael@0 | 324 | static nsHtml5AttributeName* ATTR_AUTOPLAY; |
michael@0 | 325 | static nsHtml5AttributeName* ATTR_ADDITIVE; |
michael@0 | 326 | static nsHtml5AttributeName* ATTR_CALCMODE; |
michael@0 | 327 | static nsHtml5AttributeName* ATTR_CODETYPE; |
michael@0 | 328 | static nsHtml5AttributeName* ATTR_CODEBASE; |
michael@0 | 329 | static nsHtml5AttributeName* ATTR_CONTROLS; |
michael@0 | 330 | static nsHtml5AttributeName* ATTR_BEVELLED; |
michael@0 | 331 | static nsHtml5AttributeName* ATTR_BASELINE; |
michael@0 | 332 | static nsHtml5AttributeName* ATTR_EXPONENT; |
michael@0 | 333 | static nsHtml5AttributeName* ATTR_EDGEMODE; |
michael@0 | 334 | static nsHtml5AttributeName* ATTR_ENCODING; |
michael@0 | 335 | static nsHtml5AttributeName* ATTR_GLYPHREF; |
michael@0 | 336 | static nsHtml5AttributeName* ATTR_DATETIME; |
michael@0 | 337 | static nsHtml5AttributeName* ATTR_DISABLED; |
michael@0 | 338 | static nsHtml5AttributeName* ATTR_FONTSIZE; |
michael@0 | 339 | static nsHtml5AttributeName* ATTR_KEYTIMES; |
michael@0 | 340 | static nsHtml5AttributeName* ATTR_PANOSE_1; |
michael@0 | 341 | static nsHtml5AttributeName* ATTR_HREFLANG; |
michael@0 | 342 | static nsHtml5AttributeName* ATTR_ONRESIZE; |
michael@0 | 343 | static nsHtml5AttributeName* ATTR_ONCHANGE; |
michael@0 | 344 | static nsHtml5AttributeName* ATTR_ONBOUNCE; |
michael@0 | 345 | static nsHtml5AttributeName* ATTR_ONUNLOAD; |
michael@0 | 346 | static nsHtml5AttributeName* ATTR_ONFINISH; |
michael@0 | 347 | static nsHtml5AttributeName* ATTR_ONSCROLL; |
michael@0 | 348 | static nsHtml5AttributeName* ATTR_OPERATOR; |
michael@0 | 349 | static nsHtml5AttributeName* ATTR_OVERFLOW; |
michael@0 | 350 | static nsHtml5AttributeName* ATTR_ONSUBMIT; |
michael@0 | 351 | static nsHtml5AttributeName* ATTR_ONREPEAT; |
michael@0 | 352 | static nsHtml5AttributeName* ATTR_ONSELECT; |
michael@0 | 353 | static nsHtml5AttributeName* ATTR_NOTATION; |
michael@0 | 354 | static nsHtml5AttributeName* ATTR_NORESIZE; |
michael@0 | 355 | static nsHtml5AttributeName* ATTR_MANIFEST; |
michael@0 | 356 | static nsHtml5AttributeName* ATTR_MATHSIZE; |
michael@0 | 357 | static nsHtml5AttributeName* ATTR_MULTIPLE; |
michael@0 | 358 | static nsHtml5AttributeName* ATTR_LONGDESC; |
michael@0 | 359 | static nsHtml5AttributeName* ATTR_LANGUAGE; |
michael@0 | 360 | static nsHtml5AttributeName* ATTR_TEMPLATE; |
michael@0 | 361 | static nsHtml5AttributeName* ATTR_TABINDEX; |
michael@0 | 362 | static nsHtml5AttributeName* ATTR_READONLY; |
michael@0 | 363 | static nsHtml5AttributeName* ATTR_SELECTED; |
michael@0 | 364 | static nsHtml5AttributeName* ATTR_ROWLINES; |
michael@0 | 365 | static nsHtml5AttributeName* ATTR_SEAMLESS; |
michael@0 | 366 | static nsHtml5AttributeName* ATTR_ROWALIGN; |
michael@0 | 367 | static nsHtml5AttributeName* ATTR_STRETCHY; |
michael@0 | 368 | static nsHtml5AttributeName* ATTR_REQUIRED; |
michael@0 | 369 | static nsHtml5AttributeName* ATTR_XML_BASE; |
michael@0 | 370 | static nsHtml5AttributeName* ATTR_XML_LANG; |
michael@0 | 371 | static nsHtml5AttributeName* ATTR_X_HEIGHT; |
michael@0 | 372 | static nsHtml5AttributeName* ATTR_ARIA_OWNS; |
michael@0 | 373 | static nsHtml5AttributeName* ATTR_AUTOFOCUS; |
michael@0 | 374 | static nsHtml5AttributeName* ATTR_ARIA_SORT; |
michael@0 | 375 | static nsHtml5AttributeName* ATTR_ACCESSKEY; |
michael@0 | 376 | static nsHtml5AttributeName* ATTR_ARIA_BUSY; |
michael@0 | 377 | static nsHtml5AttributeName* ATTR_ARIA_GRAB; |
michael@0 | 378 | static nsHtml5AttributeName* ATTR_AMPLITUDE; |
michael@0 | 379 | static nsHtml5AttributeName* ATTR_ARIA_LIVE; |
michael@0 | 380 | static nsHtml5AttributeName* ATTR_CLIP_RULE; |
michael@0 | 381 | static nsHtml5AttributeName* ATTR_CLIP_PATH; |
michael@0 | 382 | static nsHtml5AttributeName* ATTR_EQUALROWS; |
michael@0 | 383 | static nsHtml5AttributeName* ATTR_ELEVATION; |
michael@0 | 384 | static nsHtml5AttributeName* ATTR_DIRECTION; |
michael@0 | 385 | static nsHtml5AttributeName* ATTR_DRAGGABLE; |
michael@0 | 386 | static nsHtml5AttributeName* ATTR_FILTERRES; |
michael@0 | 387 | static nsHtml5AttributeName* ATTR_FILL_RULE; |
michael@0 | 388 | static nsHtml5AttributeName* ATTR_FONTSTYLE; |
michael@0 | 389 | static nsHtml5AttributeName* ATTR_FONT_SIZE; |
michael@0 | 390 | static nsHtml5AttributeName* ATTR_KEYPOINTS; |
michael@0 | 391 | static nsHtml5AttributeName* ATTR_HIDEFOCUS; |
michael@0 | 392 | static nsHtml5AttributeName* ATTR_ONMESSAGE; |
michael@0 | 393 | static nsHtml5AttributeName* ATTR_INTERCEPT; |
michael@0 | 394 | static nsHtml5AttributeName* ATTR_ONDRAGEND; |
michael@0 | 395 | static nsHtml5AttributeName* ATTR_ONMOVEEND; |
michael@0 | 396 | static nsHtml5AttributeName* ATTR_ONINVALID; |
michael@0 | 397 | static nsHtml5AttributeName* ATTR_ONKEYDOWN; |
michael@0 | 398 | static nsHtml5AttributeName* ATTR_ONFOCUSIN; |
michael@0 | 399 | static nsHtml5AttributeName* ATTR_ONMOUSEUP; |
michael@0 | 400 | static nsHtml5AttributeName* ATTR_INPUTMODE; |
michael@0 | 401 | static nsHtml5AttributeName* ATTR_ONROWEXIT; |
michael@0 | 402 | static nsHtml5AttributeName* ATTR_MATHCOLOR; |
michael@0 | 403 | static nsHtml5AttributeName* ATTR_MASKUNITS; |
michael@0 | 404 | static nsHtml5AttributeName* ATTR_MAXLENGTH; |
michael@0 | 405 | static nsHtml5AttributeName* ATTR_LINEBREAK; |
michael@0 | 406 | static nsHtml5AttributeName* ATTR_TRANSFORM; |
michael@0 | 407 | static nsHtml5AttributeName* ATTR_V_HANGING; |
michael@0 | 408 | static nsHtml5AttributeName* ATTR_VALUETYPE; |
michael@0 | 409 | static nsHtml5AttributeName* ATTR_POINTSATZ; |
michael@0 | 410 | static nsHtml5AttributeName* ATTR_POINTSATX; |
michael@0 | 411 | static nsHtml5AttributeName* ATTR_POINTSATY; |
michael@0 | 412 | static nsHtml5AttributeName* ATTR_SYMMETRIC; |
michael@0 | 413 | static nsHtml5AttributeName* ATTR_SCROLLING; |
michael@0 | 414 | static nsHtml5AttributeName* ATTR_REPEATDUR; |
michael@0 | 415 | static nsHtml5AttributeName* ATTR_SELECTION; |
michael@0 | 416 | static nsHtml5AttributeName* ATTR_SEPARATOR; |
michael@0 | 417 | static nsHtml5AttributeName* ATTR_XML_SPACE; |
michael@0 | 418 | static nsHtml5AttributeName* ATTR_AUTOSUBMIT; |
michael@0 | 419 | static nsHtml5AttributeName* ATTR_ALPHABETIC; |
michael@0 | 420 | static nsHtml5AttributeName* ATTR_ACTIONTYPE; |
michael@0 | 421 | static nsHtml5AttributeName* ATTR_ACCUMULATE; |
michael@0 | 422 | static nsHtml5AttributeName* ATTR_ARIA_LEVEL; |
michael@0 | 423 | static nsHtml5AttributeName* ATTR_COLUMNSPAN; |
michael@0 | 424 | static nsHtml5AttributeName* ATTR_CAP_HEIGHT; |
michael@0 | 425 | static nsHtml5AttributeName* ATTR_BACKGROUND; |
michael@0 | 426 | static nsHtml5AttributeName* ATTR_GLYPH_NAME; |
michael@0 | 427 | static nsHtml5AttributeName* ATTR_GROUPALIGN; |
michael@0 | 428 | static nsHtml5AttributeName* ATTR_FONTFAMILY; |
michael@0 | 429 | static nsHtml5AttributeName* ATTR_FONTWEIGHT; |
michael@0 | 430 | static nsHtml5AttributeName* ATTR_FONT_STYLE; |
michael@0 | 431 | static nsHtml5AttributeName* ATTR_KEYSPLINES; |
michael@0 | 432 | static nsHtml5AttributeName* ATTR_HTTP_EQUIV; |
michael@0 | 433 | static nsHtml5AttributeName* ATTR_ONACTIVATE; |
michael@0 | 434 | static nsHtml5AttributeName* ATTR_OCCURRENCE; |
michael@0 | 435 | static nsHtml5AttributeName* ATTR_IRRELEVANT; |
michael@0 | 436 | static nsHtml5AttributeName* ATTR_ONDBLCLICK; |
michael@0 | 437 | static nsHtml5AttributeName* ATTR_ONDRAGDROP; |
michael@0 | 438 | static nsHtml5AttributeName* ATTR_ONKEYPRESS; |
michael@0 | 439 | static nsHtml5AttributeName* ATTR_ONROWENTER; |
michael@0 | 440 | static nsHtml5AttributeName* ATTR_ONDRAGOVER; |
michael@0 | 441 | static nsHtml5AttributeName* ATTR_ONFOCUSOUT; |
michael@0 | 442 | static nsHtml5AttributeName* ATTR_ONMOUSEOUT; |
michael@0 | 443 | static nsHtml5AttributeName* ATTR_NUMOCTAVES; |
michael@0 | 444 | static nsHtml5AttributeName* ATTR_MARKER_MID; |
michael@0 | 445 | static nsHtml5AttributeName* ATTR_MARKER_END; |
michael@0 | 446 | static nsHtml5AttributeName* ATTR_TEXTLENGTH; |
michael@0 | 447 | static nsHtml5AttributeName* ATTR_VISIBILITY; |
michael@0 | 448 | static nsHtml5AttributeName* ATTR_VIEWTARGET; |
michael@0 | 449 | static nsHtml5AttributeName* ATTR_VERT_ADV_Y; |
michael@0 | 450 | static nsHtml5AttributeName* ATTR_PATHLENGTH; |
michael@0 | 451 | static nsHtml5AttributeName* ATTR_REPEAT_MAX; |
michael@0 | 452 | static nsHtml5AttributeName* ATTR_RADIOGROUP; |
michael@0 | 453 | static nsHtml5AttributeName* ATTR_STOP_COLOR; |
michael@0 | 454 | static nsHtml5AttributeName* ATTR_SEPARATORS; |
michael@0 | 455 | static nsHtml5AttributeName* ATTR_REPEAT_MIN; |
michael@0 | 456 | static nsHtml5AttributeName* ATTR_ROWSPACING; |
michael@0 | 457 | static nsHtml5AttributeName* ATTR_ZOOMANDPAN; |
michael@0 | 458 | static nsHtml5AttributeName* ATTR_XLINK_TYPE; |
michael@0 | 459 | static nsHtml5AttributeName* ATTR_XLINK_ROLE; |
michael@0 | 460 | static nsHtml5AttributeName* ATTR_XLINK_HREF; |
michael@0 | 461 | static nsHtml5AttributeName* ATTR_XLINK_SHOW; |
michael@0 | 462 | static nsHtml5AttributeName* ATTR_ACCENTUNDER; |
michael@0 | 463 | static nsHtml5AttributeName* ATTR_ARIA_SECRET; |
michael@0 | 464 | static nsHtml5AttributeName* ATTR_ARIA_ATOMIC; |
michael@0 | 465 | static nsHtml5AttributeName* ATTR_ARIA_HIDDEN; |
michael@0 | 466 | static nsHtml5AttributeName* ATTR_ARIA_FLOWTO; |
michael@0 | 467 | static nsHtml5AttributeName* ATTR_ARABIC_FORM; |
michael@0 | 468 | static nsHtml5AttributeName* ATTR_CELLPADDING; |
michael@0 | 469 | static nsHtml5AttributeName* ATTR_CELLSPACING; |
michael@0 | 470 | static nsHtml5AttributeName* ATTR_COLUMNWIDTH; |
michael@0 | 471 | static nsHtml5AttributeName* ATTR_CROSSORIGIN; |
michael@0 | 472 | static nsHtml5AttributeName* ATTR_COLUMNALIGN; |
michael@0 | 473 | static nsHtml5AttributeName* ATTR_COLUMNLINES; |
michael@0 | 474 | static nsHtml5AttributeName* ATTR_CONTEXTMENU; |
michael@0 | 475 | static nsHtml5AttributeName* ATTR_BASEPROFILE; |
michael@0 | 476 | static nsHtml5AttributeName* ATTR_FONT_FAMILY; |
michael@0 | 477 | static nsHtml5AttributeName* ATTR_FRAMEBORDER; |
michael@0 | 478 | static nsHtml5AttributeName* ATTR_FILTERUNITS; |
michael@0 | 479 | static nsHtml5AttributeName* ATTR_FLOOD_COLOR; |
michael@0 | 480 | static nsHtml5AttributeName* ATTR_FONT_WEIGHT; |
michael@0 | 481 | static nsHtml5AttributeName* ATTR_HORIZ_ADV_X; |
michael@0 | 482 | static nsHtml5AttributeName* ATTR_ONDRAGLEAVE; |
michael@0 | 483 | static nsHtml5AttributeName* ATTR_ONMOUSEMOVE; |
michael@0 | 484 | static nsHtml5AttributeName* ATTR_ORIENTATION; |
michael@0 | 485 | static nsHtml5AttributeName* ATTR_ONMOUSEDOWN; |
michael@0 | 486 | static nsHtml5AttributeName* ATTR_ONMOUSEOVER; |
michael@0 | 487 | static nsHtml5AttributeName* ATTR_ONDRAGENTER; |
michael@0 | 488 | static nsHtml5AttributeName* ATTR_IDEOGRAPHIC; |
michael@0 | 489 | static nsHtml5AttributeName* ATTR_ONBEFORECUT; |
michael@0 | 490 | static nsHtml5AttributeName* ATTR_ONFORMINPUT; |
michael@0 | 491 | static nsHtml5AttributeName* ATTR_ONDRAGSTART; |
michael@0 | 492 | static nsHtml5AttributeName* ATTR_ONMOVESTART; |
michael@0 | 493 | static nsHtml5AttributeName* ATTR_MARKERUNITS; |
michael@0 | 494 | static nsHtml5AttributeName* ATTR_MATHVARIANT; |
michael@0 | 495 | static nsHtml5AttributeName* ATTR_MARGINWIDTH; |
michael@0 | 496 | static nsHtml5AttributeName* ATTR_MARKERWIDTH; |
michael@0 | 497 | static nsHtml5AttributeName* ATTR_TEXT_ANCHOR; |
michael@0 | 498 | static nsHtml5AttributeName* ATTR_TABLEVALUES; |
michael@0 | 499 | static nsHtml5AttributeName* ATTR_SCRIPTLEVEL; |
michael@0 | 500 | static nsHtml5AttributeName* ATTR_REPEATCOUNT; |
michael@0 | 501 | static nsHtml5AttributeName* ATTR_STITCHTILES; |
michael@0 | 502 | static nsHtml5AttributeName* ATTR_STARTOFFSET; |
michael@0 | 503 | static nsHtml5AttributeName* ATTR_SCROLLDELAY; |
michael@0 | 504 | static nsHtml5AttributeName* ATTR_XMLNS_XLINK; |
michael@0 | 505 | static nsHtml5AttributeName* ATTR_XLINK_TITLE; |
michael@0 | 506 | static nsHtml5AttributeName* ATTR_ARIA_INVALID; |
michael@0 | 507 | static nsHtml5AttributeName* ATTR_ARIA_PRESSED; |
michael@0 | 508 | static nsHtml5AttributeName* ATTR_ARIA_CHECKED; |
michael@0 | 509 | static nsHtml5AttributeName* ATTR_AUTOCOMPLETE; |
michael@0 | 510 | static nsHtml5AttributeName* ATTR_ARIA_SETSIZE; |
michael@0 | 511 | static nsHtml5AttributeName* ATTR_ARIA_CHANNEL; |
michael@0 | 512 | static nsHtml5AttributeName* ATTR_EQUALCOLUMNS; |
michael@0 | 513 | static nsHtml5AttributeName* ATTR_DISPLAYSTYLE; |
michael@0 | 514 | static nsHtml5AttributeName* ATTR_DATAFORMATAS; |
michael@0 | 515 | static nsHtml5AttributeName* ATTR_FILL_OPACITY; |
michael@0 | 516 | static nsHtml5AttributeName* ATTR_FONT_VARIANT; |
michael@0 | 517 | static nsHtml5AttributeName* ATTR_FONT_STRETCH; |
michael@0 | 518 | static nsHtml5AttributeName* ATTR_FRAMESPACING; |
michael@0 | 519 | static nsHtml5AttributeName* ATTR_KERNELMATRIX; |
michael@0 | 520 | static nsHtml5AttributeName* ATTR_ONDEACTIVATE; |
michael@0 | 521 | static nsHtml5AttributeName* ATTR_ONROWSDELETE; |
michael@0 | 522 | static nsHtml5AttributeName* ATTR_ONMOUSELEAVE; |
michael@0 | 523 | static nsHtml5AttributeName* ATTR_ONFORMCHANGE; |
michael@0 | 524 | static nsHtml5AttributeName* ATTR_ONCELLCHANGE; |
michael@0 | 525 | static nsHtml5AttributeName* ATTR_ONMOUSEWHEEL; |
michael@0 | 526 | static nsHtml5AttributeName* ATTR_ONMOUSEENTER; |
michael@0 | 527 | static nsHtml5AttributeName* ATTR_ONAFTERPRINT; |
michael@0 | 528 | static nsHtml5AttributeName* ATTR_ONBEFORECOPY; |
michael@0 | 529 | static nsHtml5AttributeName* ATTR_MARGINHEIGHT; |
michael@0 | 530 | static nsHtml5AttributeName* ATTR_MARKERHEIGHT; |
michael@0 | 531 | static nsHtml5AttributeName* ATTR_MARKER_START; |
michael@0 | 532 | static nsHtml5AttributeName* ATTR_MATHEMATICAL; |
michael@0 | 533 | static nsHtml5AttributeName* ATTR_LENGTHADJUST; |
michael@0 | 534 | static nsHtml5AttributeName* ATTR_UNSELECTABLE; |
michael@0 | 535 | static nsHtml5AttributeName* ATTR_UNICODE_BIDI; |
michael@0 | 536 | static nsHtml5AttributeName* ATTR_UNITS_PER_EM; |
michael@0 | 537 | static nsHtml5AttributeName* ATTR_WORD_SPACING; |
michael@0 | 538 | static nsHtml5AttributeName* ATTR_WRITING_MODE; |
michael@0 | 539 | static nsHtml5AttributeName* ATTR_V_ALPHABETIC; |
michael@0 | 540 | static nsHtml5AttributeName* ATTR_PATTERNUNITS; |
michael@0 | 541 | static nsHtml5AttributeName* ATTR_SPREADMETHOD; |
michael@0 | 542 | static nsHtml5AttributeName* ATTR_SURFACESCALE; |
michael@0 | 543 | static nsHtml5AttributeName* ATTR_STROKE_WIDTH; |
michael@0 | 544 | static nsHtml5AttributeName* ATTR_REPEAT_START; |
michael@0 | 545 | static nsHtml5AttributeName* ATTR_STDDEVIATION; |
michael@0 | 546 | static nsHtml5AttributeName* ATTR_STOP_OPACITY; |
michael@0 | 547 | static nsHtml5AttributeName* ATTR_ARIA_CONTROLS; |
michael@0 | 548 | static nsHtml5AttributeName* ATTR_ARIA_HASPOPUP; |
michael@0 | 549 | static nsHtml5AttributeName* ATTR_ACCENT_HEIGHT; |
michael@0 | 550 | static nsHtml5AttributeName* ATTR_ARIA_VALUENOW; |
michael@0 | 551 | static nsHtml5AttributeName* ATTR_ARIA_RELEVANT; |
michael@0 | 552 | static nsHtml5AttributeName* ATTR_ARIA_POSINSET; |
michael@0 | 553 | static nsHtml5AttributeName* ATTR_ARIA_VALUEMAX; |
michael@0 | 554 | static nsHtml5AttributeName* ATTR_ARIA_READONLY; |
michael@0 | 555 | static nsHtml5AttributeName* ATTR_ARIA_SELECTED; |
michael@0 | 556 | static nsHtml5AttributeName* ATTR_ARIA_REQUIRED; |
michael@0 | 557 | static nsHtml5AttributeName* ATTR_ARIA_EXPANDED; |
michael@0 | 558 | static nsHtml5AttributeName* ATTR_ARIA_DISABLED; |
michael@0 | 559 | static nsHtml5AttributeName* ATTR_ATTRIBUTETYPE; |
michael@0 | 560 | static nsHtml5AttributeName* ATTR_ATTRIBUTENAME; |
michael@0 | 561 | static nsHtml5AttributeName* ATTR_ARIA_DATATYPE; |
michael@0 | 562 | static nsHtml5AttributeName* ATTR_ARIA_VALUEMIN; |
michael@0 | 563 | static nsHtml5AttributeName* ATTR_BASEFREQUENCY; |
michael@0 | 564 | static nsHtml5AttributeName* ATTR_COLUMNSPACING; |
michael@0 | 565 | static nsHtml5AttributeName* ATTR_COLOR_PROFILE; |
michael@0 | 566 | static nsHtml5AttributeName* ATTR_CLIPPATHUNITS; |
michael@0 | 567 | static nsHtml5AttributeName* ATTR_DEFINITIONURL; |
michael@0 | 568 | static nsHtml5AttributeName* ATTR_GRADIENTUNITS; |
michael@0 | 569 | static nsHtml5AttributeName* ATTR_FLOOD_OPACITY; |
michael@0 | 570 | static nsHtml5AttributeName* ATTR_ONAFTERUPDATE; |
michael@0 | 571 | static nsHtml5AttributeName* ATTR_ONERRORUPDATE; |
michael@0 | 572 | static nsHtml5AttributeName* ATTR_ONBEFOREPASTE; |
michael@0 | 573 | static nsHtml5AttributeName* ATTR_ONLOSECAPTURE; |
michael@0 | 574 | static nsHtml5AttributeName* ATTR_ONCONTEXTMENU; |
michael@0 | 575 | static nsHtml5AttributeName* ATTR_ONSELECTSTART; |
michael@0 | 576 | static nsHtml5AttributeName* ATTR_ONBEFOREPRINT; |
michael@0 | 577 | static nsHtml5AttributeName* ATTR_MOVABLELIMITS; |
michael@0 | 578 | static nsHtml5AttributeName* ATTR_LINETHICKNESS; |
michael@0 | 579 | static nsHtml5AttributeName* ATTR_UNICODE_RANGE; |
michael@0 | 580 | static nsHtml5AttributeName* ATTR_THINMATHSPACE; |
michael@0 | 581 | static nsHtml5AttributeName* ATTR_VERT_ORIGIN_X; |
michael@0 | 582 | static nsHtml5AttributeName* ATTR_VERT_ORIGIN_Y; |
michael@0 | 583 | static nsHtml5AttributeName* ATTR_V_IDEOGRAPHIC; |
michael@0 | 584 | static nsHtml5AttributeName* ATTR_PRESERVEALPHA; |
michael@0 | 585 | static nsHtml5AttributeName* ATTR_SCRIPTMINSIZE; |
michael@0 | 586 | static nsHtml5AttributeName* ATTR_SPECIFICATION; |
michael@0 | 587 | static nsHtml5AttributeName* ATTR_XLINK_ACTUATE; |
michael@0 | 588 | static nsHtml5AttributeName* ATTR_XLINK_ARCROLE; |
michael@0 | 589 | static nsHtml5AttributeName* ATTR_ACCEPT_CHARSET; |
michael@0 | 590 | static nsHtml5AttributeName* ATTR_ALIGNMENTSCOPE; |
michael@0 | 591 | static nsHtml5AttributeName* ATTR_ARIA_MULTILINE; |
michael@0 | 592 | static nsHtml5AttributeName* ATTR_BASELINE_SHIFT; |
michael@0 | 593 | static nsHtml5AttributeName* ATTR_HORIZ_ORIGIN_X; |
michael@0 | 594 | static nsHtml5AttributeName* ATTR_HORIZ_ORIGIN_Y; |
michael@0 | 595 | static nsHtml5AttributeName* ATTR_ONBEFOREUPDATE; |
michael@0 | 596 | static nsHtml5AttributeName* ATTR_ONFILTERCHANGE; |
michael@0 | 597 | static nsHtml5AttributeName* ATTR_ONROWSINSERTED; |
michael@0 | 598 | static nsHtml5AttributeName* ATTR_ONBEFOREUNLOAD; |
michael@0 | 599 | static nsHtml5AttributeName* ATTR_MATHBACKGROUND; |
michael@0 | 600 | static nsHtml5AttributeName* ATTR_LETTER_SPACING; |
michael@0 | 601 | static nsHtml5AttributeName* ATTR_LIGHTING_COLOR; |
michael@0 | 602 | static nsHtml5AttributeName* ATTR_THICKMATHSPACE; |
michael@0 | 603 | static nsHtml5AttributeName* ATTR_TEXT_RENDERING; |
michael@0 | 604 | static nsHtml5AttributeName* ATTR_V_MATHEMATICAL; |
michael@0 | 605 | static nsHtml5AttributeName* ATTR_POINTER_EVENTS; |
michael@0 | 606 | static nsHtml5AttributeName* ATTR_PRIMITIVEUNITS; |
michael@0 | 607 | static nsHtml5AttributeName* ATTR_SYSTEMLANGUAGE; |
michael@0 | 608 | static nsHtml5AttributeName* ATTR_STROKE_LINECAP; |
michael@0 | 609 | static nsHtml5AttributeName* ATTR_SUBSCRIPTSHIFT; |
michael@0 | 610 | static nsHtml5AttributeName* ATTR_STROKE_OPACITY; |
michael@0 | 611 | static nsHtml5AttributeName* ATTR_ARIA_DROPEFFECT; |
michael@0 | 612 | static nsHtml5AttributeName* ATTR_ARIA_LABELLEDBY; |
michael@0 | 613 | static nsHtml5AttributeName* ATTR_ARIA_TEMPLATEID; |
michael@0 | 614 | static nsHtml5AttributeName* ATTR_COLOR_RENDERING; |
michael@0 | 615 | static nsHtml5AttributeName* ATTR_CONTENTEDITABLE; |
michael@0 | 616 | static nsHtml5AttributeName* ATTR_DIFFUSECONSTANT; |
michael@0 | 617 | static nsHtml5AttributeName* ATTR_ONDATAAVAILABLE; |
michael@0 | 618 | static nsHtml5AttributeName* ATTR_ONCONTROLSELECT; |
michael@0 | 619 | static nsHtml5AttributeName* ATTR_IMAGE_RENDERING; |
michael@0 | 620 | static nsHtml5AttributeName* ATTR_MEDIUMMATHSPACE; |
michael@0 | 621 | static nsHtml5AttributeName* ATTR_TEXT_DECORATION; |
michael@0 | 622 | static nsHtml5AttributeName* ATTR_SHAPE_RENDERING; |
michael@0 | 623 | static nsHtml5AttributeName* ATTR_STROKE_LINEJOIN; |
michael@0 | 624 | static nsHtml5AttributeName* ATTR_REPEAT_TEMPLATE; |
michael@0 | 625 | static nsHtml5AttributeName* ATTR_ARIA_DESCRIBEDBY; |
michael@0 | 626 | static nsHtml5AttributeName* ATTR_CONTENTSTYLETYPE; |
michael@0 | 627 | static nsHtml5AttributeName* ATTR_FONT_SIZE_ADJUST; |
michael@0 | 628 | static nsHtml5AttributeName* ATTR_KERNELUNITLENGTH; |
michael@0 | 629 | static nsHtml5AttributeName* ATTR_ONBEFOREACTIVATE; |
michael@0 | 630 | static nsHtml5AttributeName* ATTR_ONPROPERTYCHANGE; |
michael@0 | 631 | static nsHtml5AttributeName* ATTR_ONDATASETCHANGED; |
michael@0 | 632 | static nsHtml5AttributeName* ATTR_MASKCONTENTUNITS; |
michael@0 | 633 | static nsHtml5AttributeName* ATTR_PATTERNTRANSFORM; |
michael@0 | 634 | static nsHtml5AttributeName* ATTR_REQUIREDFEATURES; |
michael@0 | 635 | static nsHtml5AttributeName* ATTR_RENDERING_INTENT; |
michael@0 | 636 | static nsHtml5AttributeName* ATTR_SPECULAREXPONENT; |
michael@0 | 637 | static nsHtml5AttributeName* ATTR_SPECULARCONSTANT; |
michael@0 | 638 | static nsHtml5AttributeName* ATTR_SUPERSCRIPTSHIFT; |
michael@0 | 639 | static nsHtml5AttributeName* ATTR_STROKE_DASHARRAY; |
michael@0 | 640 | static nsHtml5AttributeName* ATTR_XCHANNELSELECTOR; |
michael@0 | 641 | static nsHtml5AttributeName* ATTR_YCHANNELSELECTOR; |
michael@0 | 642 | static nsHtml5AttributeName* ATTR_ARIA_AUTOCOMPLETE; |
michael@0 | 643 | static nsHtml5AttributeName* ATTR_CONTENTSCRIPTTYPE; |
michael@0 | 644 | static nsHtml5AttributeName* ATTR_ENABLE_BACKGROUND; |
michael@0 | 645 | static nsHtml5AttributeName* ATTR_DOMINANT_BASELINE; |
michael@0 | 646 | static nsHtml5AttributeName* ATTR_GRADIENTTRANSFORM; |
michael@0 | 647 | static nsHtml5AttributeName* ATTR_ONBEFORDEACTIVATE; |
michael@0 | 648 | static nsHtml5AttributeName* ATTR_ONDATASETCOMPLETE; |
michael@0 | 649 | static nsHtml5AttributeName* ATTR_OVERLINE_POSITION; |
michael@0 | 650 | static nsHtml5AttributeName* ATTR_ONBEFOREEDITFOCUS; |
michael@0 | 651 | static nsHtml5AttributeName* ATTR_LIMITINGCONEANGLE; |
michael@0 | 652 | static nsHtml5AttributeName* ATTR_VERYTHINMATHSPACE; |
michael@0 | 653 | static nsHtml5AttributeName* ATTR_STROKE_DASHOFFSET; |
michael@0 | 654 | static nsHtml5AttributeName* ATTR_STROKE_MITERLIMIT; |
michael@0 | 655 | static nsHtml5AttributeName* ATTR_ALIGNMENT_BASELINE; |
michael@0 | 656 | static nsHtml5AttributeName* ATTR_ONREADYSTATECHANGE; |
michael@0 | 657 | static nsHtml5AttributeName* ATTR_OVERLINE_THICKNESS; |
michael@0 | 658 | static nsHtml5AttributeName* ATTR_UNDERLINE_POSITION; |
michael@0 | 659 | static nsHtml5AttributeName* ATTR_VERYTHICKMATHSPACE; |
michael@0 | 660 | static nsHtml5AttributeName* ATTR_REQUIREDEXTENSIONS; |
michael@0 | 661 | static nsHtml5AttributeName* ATTR_COLOR_INTERPOLATION; |
michael@0 | 662 | static nsHtml5AttributeName* ATTR_UNDERLINE_THICKNESS; |
michael@0 | 663 | static nsHtml5AttributeName* ATTR_PRESERVEASPECTRATIO; |
michael@0 | 664 | static nsHtml5AttributeName* ATTR_PATTERNCONTENTUNITS; |
michael@0 | 665 | static nsHtml5AttributeName* ATTR_ARIA_MULTISELECTABLE; |
michael@0 | 666 | static nsHtml5AttributeName* ATTR_SCRIPTSIZEMULTIPLIER; |
michael@0 | 667 | static nsHtml5AttributeName* ATTR_ARIA_ACTIVEDESCENDANT; |
michael@0 | 668 | static nsHtml5AttributeName* ATTR_VERYVERYTHINMATHSPACE; |
michael@0 | 669 | static nsHtml5AttributeName* ATTR_VERYVERYTHICKMATHSPACE; |
michael@0 | 670 | static nsHtml5AttributeName* ATTR_STRIKETHROUGH_POSITION; |
michael@0 | 671 | static nsHtml5AttributeName* ATTR_STRIKETHROUGH_THICKNESS; |
michael@0 | 672 | static nsHtml5AttributeName* ATTR_EXTERNALRESOURCESREQUIRED; |
michael@0 | 673 | static nsHtml5AttributeName* ATTR_GLYPH_ORIENTATION_VERTICAL; |
michael@0 | 674 | static nsHtml5AttributeName* ATTR_COLOR_INTERPOLATION_FILTERS; |
michael@0 | 675 | static nsHtml5AttributeName* ATTR_GLYPH_ORIENTATION_HORIZONTAL; |
michael@0 | 676 | private: |
michael@0 | 677 | static nsHtml5AttributeName** ATTRIBUTE_NAMES; |
michael@0 | 678 | static staticJArray<int32_t,int32_t> ATTRIBUTE_HASHES; |
michael@0 | 679 | public: |
michael@0 | 680 | static void initializeStatics(); |
michael@0 | 681 | static void releaseStatics(); |
michael@0 | 682 | }; |
michael@0 | 683 | |
michael@0 | 684 | #define NS_HTML5ATTRIBUTE_NAME_HTML 0 |
michael@0 | 685 | #define NS_HTML5ATTRIBUTE_NAME_MATHML 1 |
michael@0 | 686 | #define NS_HTML5ATTRIBUTE_NAME_SVG 2 |
michael@0 | 687 | |
michael@0 | 688 | |
michael@0 | 689 | #endif |
michael@0 | 690 |