829
|
1 " HTML context data
|
|
2 "function! htmlcomplete#LoadData() " {{{
|
827
|
3 let g:xmldata_xhtml10s = {
|
|
4 \ 'vimxmlentities' : ["AElig", "Aacute", "Acirc", "Agrave", "Alpha", "Aring", "Atilde", "Auml", "Beta", "Ccedil", "Chi", "Dagger", "Delta", "ETH", "Eacute", "Ecirc", "Egrave", "Epsilon", "Eta", "Euml", "Gamma", "Iacute", "Icirc", "Igrave", "Iota", "Iuml", "Kappa", "Lambda", "Mu", "Ntilde", "Nu", "OElig", "Oacute", "Ocirc", "Ograve", "Omega", "Omicron", "Oslash", "Otilde", "Ouml", "Phi", "Pi", "Prime", "Psi", "Rho", "Scaron", "Sigma", "THORN", "TITY", "Tau", "Theta", "Uacute", "Ucirc", "Ugrave", "Upsilon", "Uuml", "Xi", "Yacute", "Yuml", "Zeta", "amp", "aacute", "acirc", "acute", "aelig", "agrave", "alefsym", "alpha", "and", "ang", "apos", "aring", "asymp", "atilde", "auml", "bdquo", "beta", "brvbar", "bull", "cap", "ccedil", "cedil", "cent", "chi", "circ", "clubs", "copy", "cong", "crarr", "cup", "curren", "dArr", "dagger", "darr", "deg", "delta", "diams", "divide", "eacute", "ecirc", "egrave", "empty", "ensp", "emsp", "epsilon", "equiv", "eta", "eth", "euro", "euml", "exist", "fnof", "forall", "frac12", "frac14", "frac34", "frasl", "gt", "gamma", "ge", "hArr", "harr", "hearts", "hellip", "iacute", "icirc", "iexcl", "igrave", "image", "infin", "int", "iota", "iquest", "isin", "iuml", "kappa", "lt", "laquo", "lArr", "lambda", "lang", "larr", "lceil", "ldquo", "le", "lfloor", "lowast", "loz", "lrm", "lsaquo", "lsquo", "macr", "mdash", "micro", "middot", "minus", "mu", "nbsp", "nabla", "ndash", "ne", "ni", "not", "notin", "nsub", "ntilde", "nu", "oacute", "ocirc", "oelig", "ograve", "oline", "omega", "omicron", "oplus", "or", "ordf", "ordm", "oslash", "otilde", "otimes", "ouml", "para", "part", "permil", "perp", "phi", "pi", "piv", "plusmn", "pound", "prime", "prod", "prop", "psi", "quot", "rArr", "raquo", "radic", "rang", "rarr", "rceil", "rdquo", "real", "reg", "rfloor", "rho", "rlm", "rsaquo", "rsquo", "sbquo", "scaron", "sdot", "sect", "shy", "sigma", "sigmaf", "sim", "spades", "sub", "sube", "sum", "sup", "sup1", "sup2", "sup3", "supe", "szlig", "tau", "there4", "theta", "thetasym", "thinsp", "thorn", "tilde", "times", "trade", "uArr", "uacute", "uarr", "ucirc", "ugrave", "uml", "upsih", "upsilon", "uuml", "weierp", "xi", "yacute", "yen", "yuml", "zeta", "zwj", "zwnj"],
|
|
5 \ 'vimxmlattrinfo' : {
|
|
6 \ 'accept' : ['ContentType', ''],
|
|
7 \ 'accesskey' : ['Character', ''],
|
|
8 \ 'action' : ['*URI', ''],
|
|
9 \ 'align' : ['String', ''],
|
|
10 \ 'alt' : ['*Text', ''],
|
|
11 \ 'archive' : ['UriList', ''],
|
|
12 \ 'axis' : ['CDATA', ''],
|
|
13 \ 'border' : ['Pixels', ''],
|
|
14 \ 'cellpadding' : ['Length', ''],
|
|
15 \ 'cellspacing' : ['Length', ''],
|
|
16 \ 'char' : ['Character', ''],
|
|
17 \ 'charoff' : ['Length', ''],
|
|
18 \ 'charset' : ['LangCode', ''],
|
|
19 \ 'checked' : ['Bool', ''],
|
829
|
20 \ 'class' : ['CDATA', ''],
|
827
|
21 \ 'codetype' : ['ContentType', ''],
|
|
22 \ 'cols' : ['*Number', ''],
|
|
23 \ 'colspan' : ['Number', ''],
|
|
24 \ 'content' : ['*CDATA', ''],
|
|
25 \ 'coords' : ['Coords', ''],
|
|
26 \ 'data' : ['URI', ''],
|
|
27 \ 'datetime' : ['DateTime', ''],
|
|
28 \ 'declare' : ['Bool', ''],
|
|
29 \ 'defer' : ['Bool', ''],
|
|
30 \ 'dir' : ['String', ''],
|
|
31 \ 'disabled' : ['Bool', ''],
|
|
32 \ 'enctype' : ['ContentType', ''],
|
|
33 \ 'for' : ['ID', ''],
|
|
34 \ 'headers' : ['IDREFS', ''],
|
|
35 \ 'height' : ['Number', ''],
|
|
36 \ 'href' : ['*URI', ''],
|
|
37 \ 'hreflang' : ['LangCode', ''],
|
|
38 \ 'id' : ['ID', 'Unique string'],
|
|
39 \ 'ismap' : ['Bool', ''],
|
|
40 \ 'label' : ['*Text', ''],
|
|
41 \ 'lang' : ['LangCode', ''],
|
|
42 \ 'longdesc' : ['URI', ''],
|
|
43 \ 'maxlength' : ['Number', ''],
|
|
44 \ 'media' : ['MediaDesc', ''],
|
|
45 \ 'method' : ['String', ''],
|
|
46 \ 'multiple' : ['Bool', ''],
|
|
47 \ 'name' : ['CDATA', ''],
|
|
48 \ 'nohref' : ['Bool', ''],
|
|
49 \ 'onblur' : ['Script', ''],
|
|
50 \ 'onchange' : ['Script', ''],
|
|
51 \ 'onclick' : ['Script', ''],
|
|
52 \ 'ondblclick' : ['Script', ''],
|
|
53 \ 'onfocus' : ['Script', ''],
|
|
54 \ 'onkeydown' : ['Script', ''],
|
|
55 \ 'onkeypress' : ['Script', ''],
|
|
56 \ 'onkeyup' : ['Script', ''],
|
|
57 \ 'onload' : ['Script', ''],
|
|
58 \ 'onmousedown' : ['Script', ''],
|
|
59 \ 'onmousemove' : ['Script', ''],
|
|
60 \ 'onmouseout' : ['Script', ''],
|
|
61 \ 'onmouseover' : ['Script', ''],
|
|
62 \ 'onmouseup' : ['Script', ''],
|
|
63 \ 'onreset' : ['Script', ''],
|
|
64 \ 'onselect' : ['Script', ''],
|
|
65 \ 'onsubmit' : ['Script', ''],
|
|
66 \ 'onunload' : ['Script', ''],
|
|
67 \ 'profile' : ['URI', ''],
|
|
68 \ 'readonly' : ['Bool', ''],
|
|
69 \ 'rel' : ['LinkTypes', ''],
|
|
70 \ 'rev' : ['LinkTypes', ''],
|
|
71 \ 'rows' : ['*Number', ''],
|
|
72 \ 'rules' : ['String', ''],
|
|
73 \ 'scheme' : ['CDATA', ''],
|
|
74 \ 'selected' : ['Bool', ''],
|
|
75 \ 'shape' : ['Shape', ''],
|
|
76 \ 'size' : ['CDATA', ''],
|
|
77 \ 'span' : ['Number', ''],
|
|
78 \ 'src' : ['*URI', ''],
|
|
79 \ 'standby' : ['Text', ''],
|
|
80 \ 'style' : ['StyleSheet', ''],
|
|
81 \ 'summary' : ['*Text', ''],
|
|
82 \ 'tabindex' : ['Number', ''],
|
|
83 \ 'title' : ['Text', ''],
|
|
84 \ 'type' : ['*ContentType', ''],
|
|
85 \ 'usemap' : ['URI', ''],
|
|
86 \ 'valign' : ['String', ''],
|
|
87 \ 'valuetype' : ['String', ''],
|
|
88 \ 'width' : ['Number', ''],
|
|
89 \ 'xmlns' : ['URI', '']
|
|
90 \ },
|
|
91 \ 'vimxmltaginfo' : {
|
|
92 \ 'base' : ['/>', ''],
|
|
93 \ 'meta' : ['/>', ''],
|
|
94 \ 'link' : ['/>', ''],
|
|
95 \ 'img' : ['/>', ''],
|
|
96 \ 'hr' : ['/>', ''],
|
|
97 \ 'br' : ['/>', ''],
|
|
98 \ 'param' : ['/>', ''],
|
|
99 \ 'area' : ['/>', ''],
|
|
100 \ 'input' : ['/>', ''],
|
|
101 \ 'col' : ['/>', '']
|
|
102 \ },
|
|
103 \ 'tr' : [
|
|
104 \ [
|
|
105 \ 'th',
|
|
106 \ 'td'
|
|
107 \ ],
|
|
108 \ {
|
|
109 \ 'ondblclick' : [],
|
|
110 \ 'dir' : [
|
|
111 \ 'ltr',
|
|
112 \ 'rtl'
|
|
113 \ ],
|
|
114 \ 'onkeydown' : [],
|
|
115 \ 'onkeyup' : [],
|
|
116 \ 'onmouseup' : [],
|
|
117 \ 'id' : [],
|
|
118 \ 'charoff' : [],
|
|
119 \ 'onmouseover' : [],
|
|
120 \ 'lang' : [],
|
|
121 \ 'align' : [
|
|
122 \ 'left',
|
|
123 \ 'center',
|
|
124 \ 'right',
|
|
125 \ 'justify',
|
|
126 \ 'char'
|
|
127 \ ],
|
|
128 \ 'valign' : [
|
|
129 \ 'top',
|
|
130 \ 'middle',
|
|
131 \ 'bottom',
|
|
132 \ 'baseline'
|
|
133 \ ],
|
|
134 \ 'style' : [],
|
|
135 \ 'onmousemove' : [],
|
|
136 \ 'onmouseout' : [],
|
|
137 \ 'xml:lang' : [],
|
|
138 \ 'char' : [],
|
|
139 \ 'onmousedown' : [],
|
|
140 \ 'onkeypress' : [],
|
|
141 \ 'onclick' : [],
|
|
142 \ 'title' : [],
|
|
143 \ 'class' : []
|
|
144 \ }
|
|
145 \ ],
|
|
146 \ 'input' : [[],
|
|
147 \ {
|
|
148 \ 'ondblclick' : [],
|
|
149 \ 'onchange' : [],
|
|
150 \ 'readonly' : [
|
|
151 \ 'BOOL'
|
|
152 \ ],
|
|
153 \ 'onkeydown' : [],
|
|
154 \ 'onkeyup' : [],
|
|
155 \ 'onmouseup' : [],
|
|
156 \ 'id' : [],
|
|
157 \ 'onmouseover' : [],
|
|
158 \ 'lang' : [],
|
|
159 \ 'src' : [],
|
|
160 \ 'value' : [],
|
|
161 \ 'name' : [],
|
|
162 \ 'checked' : [
|
|
163 \ 'BOOL'
|
|
164 \ ],
|
|
165 \ 'onmousedown' : [],
|
|
166 \ 'onkeypress' : [],
|
|
167 \ 'onclick' : [],
|
|
168 \ 'title' : [],
|
|
169 \ 'class' : [],
|
|
170 \ 'type' : [
|
|
171 \ 'text',
|
|
172 \ 'password',
|
|
173 \ 'checkbox',
|
|
174 \ 'radio',
|
|
175 \ 'submit',
|
|
176 \ 'reset',
|
|
177 \ 'file',
|
|
178 \ 'hidden',
|
|
179 \ 'image',
|
|
180 \ 'button'
|
|
181 \ ],
|
|
182 \ 'accesskey' : [],
|
|
183 \ 'disabled' : [
|
|
184 \ 'BOOL'
|
|
185 \ ],
|
|
186 \ 'usemap' : [],
|
|
187 \ 'dir' : [
|
|
188 \ 'ltr',
|
|
189 \ 'rtl'
|
|
190 \ ],
|
|
191 \ 'size' : [],
|
|
192 \ 'onblur' : [],
|
|
193 \ 'onfocus' : [],
|
|
194 \ 'maxlength' : [],
|
|
195 \ 'onselect' : [],
|
|
196 \ 'accept' : [],
|
|
197 \ 'alt' : [],
|
|
198 \ 'tabindex' : [],
|
|
199 \ 'onmouseout' : [],
|
|
200 \ 'onmousemove' : [],
|
|
201 \ 'style' : [],
|
|
202 \ 'xml:lang' : []
|
|
203 \ }
|
|
204 \ ],
|
|
205 \ 'table' : [
|
|
206 \ [
|
|
207 \ 'caption',
|
|
208 \ 'col',
|
|
209 \ 'colgroup',
|
|
210 \ 'thead',
|
|
211 \ 'tfoot',
|
|
212 \ 'tbody',
|
|
213 \ 'tr'
|
|
214 \ ],
|
|
215 \ {
|
|
216 \ 'width' : [],
|
|
217 \ 'frame' : [
|
|
218 \ 'void',
|
|
219 \ 'above',
|
|
220 \ 'below',
|
|
221 \ 'hsides',
|
|
222 \ 'lhs',
|
|
223 \ 'rhs',
|
|
224 \ 'vsides',
|
|
225 \ 'box',
|
|
226 \ 'border'
|
|
227 \ ],
|
|
228 \ 'ondblclick' : [],
|
|
229 \ 'rules' : [
|
|
230 \ 'none',
|
|
231 \ 'groups',
|
|
232 \ 'rows',
|
|
233 \ 'cols',
|
|
234 \ 'all'
|
|
235 \ ],
|
|
236 \ 'dir' : [
|
|
237 \ 'ltr',
|
|
238 \ 'rtl'
|
|
239 \ ],
|
|
240 \ 'onkeydown' : [],
|
|
241 \ 'summary' : [],
|
|
242 \ 'onkeyup' : [],
|
|
243 \ 'cellspacing' : [],
|
|
244 \ 'onmouseup' : [],
|
|
245 \ 'id' : [],
|
|
246 \ 'onmouseover' : [],
|
|
247 \ 'lang' : [],
|
|
248 \ 'style' : [],
|
|
249 \ 'onmousemove' : [],
|
|
250 \ 'onmouseout' : [],
|
|
251 \ 'xml:lang' : [],
|
|
252 \ 'border' : [],
|
|
253 \ 'onmousedown' : [],
|
|
254 \ 'onkeypress' : [],
|
|
255 \ 'cellpadding' : [],
|
|
256 \ 'onclick' : [],
|
|
257 \ 'title' : [],
|
|
258 \ 'class' : []
|
|
259 \ }
|
|
260 \ ],
|
|
261 \ 'form' : [
|
|
262 \ [
|
|
263 \ 'p',
|
|
264 \ 'h1',
|
|
265 \ 'h2',
|
|
266 \ 'h3',
|
|
267 \ 'h4',
|
|
268 \ 'h5',
|
|
269 \ 'h6',
|
|
270 \ 'div',
|
|
271 \ 'ul',
|
|
272 \ 'ol',
|
|
273 \ 'dl',
|
|
274 \ 'pre',
|
|
275 \ 'hr',
|
|
276 \ 'blockquote',
|
|
277 \ 'address',
|
|
278 \ 'fieldset',
|
|
279 \ 'table',
|
|
280 \ 'ins',
|
|
281 \ 'del',
|
|
282 \ 'script',
|
|
283 \ 'noscript'
|
|
284 \ ],
|
|
285 \ {
|
|
286 \ 'onsubmit' : [],
|
|
287 \ 'enctype' : [
|
|
288 \ '',
|
|
289 \ 'application/x-www-form-urlencoded',
|
|
290 \ ],
|
|
291 \ 'ondblclick' : [],
|
|
292 \ 'dir' : [
|
|
293 \ 'ltr',
|
|
294 \ 'rtl'
|
|
295 \ ],
|
|
296 \ 'onkeydown' : [],
|
|
297 \ 'onkeyup' : [],
|
|
298 \ 'onreset' : [],
|
|
299 \ 'onmouseup' : [],
|
|
300 \ 'method' : [
|
|
301 \ 'get',
|
|
302 \ 'post'
|
|
303 \ ],
|
|
304 \ 'id' : [],
|
|
305 \ 'onmouseover' : [],
|
|
306 \ 'accept' : [],
|
|
307 \ 'lang' : [],
|
|
308 \ 'style' : [],
|
|
309 \ 'onmousemove' : [],
|
|
310 \ 'onmouseout' : [],
|
|
311 \ 'xml:lang' : [],
|
|
312 \ 'accept-charset' : [],
|
|
313 \ 'onmousedown' : [],
|
|
314 \ 'onkeypress' : [],
|
|
315 \ 'action' : [],
|
|
316 \ 'onclick' : [],
|
|
317 \ 'title' : [],
|
|
318 \ 'class' : []
|
|
319 \ }
|
|
320 \ ],
|
|
321 \ 'h5' : [
|
|
322 \ [
|
|
323 \ 'a',
|
|
324 \ 'br',
|
|
325 \ 'span',
|
|
326 \ 'bdo',
|
|
327 \ 'object',
|
|
328 \ 'img',
|
|
329 \ 'map',
|
|
330 \ 'tt',
|
|
331 \ 'i',
|
|
332 \ 'b',
|
|
333 \ 'big',
|
|
334 \ 'small',
|
|
335 \ 'em',
|
|
336 \ 'strong',
|
|
337 \ 'dfn',
|
|
338 \ 'code',
|
|
339 \ 'q',
|
|
340 \ 'sub',
|
|
341 \ 'sup',
|
|
342 \ 'samp',
|
|
343 \ 'kbd',
|
|
344 \ 'var',
|
|
345 \ 'cite',
|
|
346 \ 'abbr',
|
|
347 \ 'acronym',
|
|
348 \ 'input',
|
|
349 \ 'select',
|
|
350 \ 'textarea',
|
|
351 \ 'label',
|
|
352 \ 'button',
|
|
353 \ 'ins',
|
|
354 \ 'del',
|
|
355 \ 'script',
|
|
356 \ 'noscript'
|
|
357 \ ],
|
|
358 \ {
|
|
359 \ 'onmouseover' : [],
|
|
360 \ 'lang' : [],
|
|
361 \ 'onmouseout' : [],
|
|
362 \ 'onmousemove' : [],
|
|
363 \ 'style' : [],
|
|
364 \ 'ondblclick' : [],
|
|
365 \ 'xml:lang' : [],
|
|
366 \ 'dir' : [
|
|
367 \ 'ltr',
|
|
368 \ 'rtl'
|
|
369 \ ],
|
|
370 \ 'onkeydown' : [],
|
|
371 \ 'onkeyup' : [],
|
|
372 \ 'onkeypress' : [],
|
|
373 \ 'onmousedown' : [],
|
|
374 \ 'onmouseup' : [],
|
|
375 \ 'id' : [],
|
|
376 \ 'class' : [],
|
|
377 \ 'title' : [],
|
|
378 \ 'onclick' : []
|
|
379 \ }
|
|
380 \ ],
|
|
381 \ 'meta' : [[],
|
|
382 \ {
|
|
383 \ 'http-equiv' : [],
|
|
384 \ 'lang' : [],
|
|
385 \ 'name' : [],
|
|
386 \ 'scheme' : [],
|
|
387 \ 'xml:lang' : [],
|
|
388 \ 'dir' : [
|
|
389 \ 'ltr',
|
|
390 \ 'rtl'
|
|
391 \ ]
|
|
392 \ }
|
|
393 \ ],
|
|
394 \ 'map' : [
|
|
395 \ [
|
|
396 \ 'p',
|
|
397 \ 'h1',
|
|
398 \ 'h2',
|
|
399 \ 'h3',
|
|
400 \ 'h4',
|
|
401 \ 'h5',
|
|
402 \ 'h6',
|
|
403 \ 'div',
|
|
404 \ 'ul',
|
|
405 \ 'ol',
|
|
406 \ 'dl',
|
|
407 \ 'pre',
|
|
408 \ 'hr',
|
|
409 \ 'blockquote',
|
|
410 \ 'address',
|
|
411 \ 'fieldset',
|
|
412 \ 'table',
|
|
413 \ 'form',
|
|
414 \ 'ins',
|
|
415 \ 'del',
|
|
416 \ 'script',
|
|
417 \ 'noscript',
|
|
418 \ 'area'
|
|
419 \ ],
|
|
420 \ {
|
|
421 \ 'ondblclick' : [],
|
|
422 \ 'dir' : [
|
|
423 \ 'ltr',
|
|
424 \ 'rtl'
|
|
425 \ ],
|
|
426 \ 'onkeydown' : [],
|
|
427 \ 'onkeyup' : [],
|
|
428 \ 'onmouseup' : [],
|
|
429 \ 'id' : [],
|
|
430 \ 'onmouseover' : [],
|
|
431 \ 'lang' : [],
|
|
432 \ 'name' : [],
|
|
433 \ 'onmousemove' : [],
|
|
434 \ 'onmouseout' : [],
|
|
435 \ 'style' : [],
|
|
436 \ 'xml:lang' : [],
|
|
437 \ 'onmousedown' : [],
|
|
438 \ 'onkeypress' : [],
|
|
439 \ 'title' : [],
|
|
440 \ 'onclick' : [],
|
|
441 \ 'class' : []
|
|
442 \ }
|
|
443 \ ],
|
|
444 \ 'tfoot' : [
|
|
445 \ [
|
|
446 \ 'tr'
|
|
447 \ ],
|
|
448 \ {
|
|
449 \ 'ondblclick' : [],
|
|
450 \ 'dir' : [
|
|
451 \ 'ltr',
|
|
452 \ 'rtl'
|
|
453 \ ],
|
|
454 \ 'onkeydown' : [],
|
|
455 \ 'onkeyup' : [],
|
|
456 \ 'onmouseup' : [],
|
|
457 \ 'id' : [],
|
|
458 \ 'charoff' : [],
|
|
459 \ 'onmouseover' : [],
|
|
460 \ 'lang' : [],
|
|
461 \ 'align' : [
|
|
462 \ 'left',
|
|
463 \ 'center',
|
|
464 \ 'right',
|
|
465 \ 'justify',
|
|
466 \ 'char'
|
|
467 \ ],
|
|
468 \ 'valign' : [
|
|
469 \ 'top',
|
|
470 \ 'middle',
|
|
471 \ 'bottom',
|
|
472 \ 'baseline'
|
|
473 \ ],
|
|
474 \ 'style' : [],
|
|
475 \ 'onmousemove' : [],
|
|
476 \ 'onmouseout' : [],
|
|
477 \ 'xml:lang' : [],
|
|
478 \ 'char' : [],
|
|
479 \ 'onmousedown' : [],
|
|
480 \ 'onkeypress' : [],
|
|
481 \ 'onclick' : [],
|
|
482 \ 'title' : [],
|
|
483 \ 'class' : []
|
|
484 \ }
|
|
485 \ ],
|
|
486 \ 'caption' : [
|
|
487 \ [
|
|
488 \ 'a',
|
|
489 \ 'br',
|
|
490 \ 'span',
|
|
491 \ 'bdo',
|
|
492 \ 'object',
|
|
493 \ 'img',
|
|
494 \ 'map',
|
|
495 \ 'tt',
|
|
496 \ 'i',
|
|
497 \ 'b',
|
|
498 \ 'big',
|
|
499 \ 'small',
|
|
500 \ 'em',
|
|
501 \ 'strong',
|
|
502 \ 'dfn',
|
|
503 \ 'code',
|
|
504 \ 'q',
|
|
505 \ 'sub',
|
|
506 \ 'sup',
|
|
507 \ 'samp',
|
|
508 \ 'kbd',
|
|
509 \ 'var',
|
|
510 \ 'cite',
|
|
511 \ 'abbr',
|
|
512 \ 'acronym',
|
|
513 \ 'input',
|
|
514 \ 'select',
|
|
515 \ 'textarea',
|
|
516 \ 'label',
|
|
517 \ 'button',
|
|
518 \ 'ins',
|
|
519 \ 'del',
|
|
520 \ 'script',
|
|
521 \ 'noscript'
|
|
522 \ ],
|
|
523 \ {
|
|
524 \ 'onmouseover' : [],
|
|
525 \ 'lang' : [],
|
|
526 \ 'onmouseout' : [],
|
|
527 \ 'onmousemove' : [],
|
|
528 \ 'style' : [],
|
|
529 \ 'ondblclick' : [],
|
|
530 \ 'xml:lang' : [],
|
|
531 \ 'dir' : [
|
|
532 \ 'ltr',
|
|
533 \ 'rtl'
|
|
534 \ ],
|
|
535 \ 'onkeydown' : [],
|
|
536 \ 'onkeyup' : [],
|
|
537 \ 'onkeypress' : [],
|
|
538 \ 'onmousedown' : [],
|
|
539 \ 'onmouseup' : [],
|
|
540 \ 'id' : [],
|
|
541 \ 'class' : [],
|
|
542 \ 'title' : [],
|
|
543 \ 'onclick' : []
|
|
544 \ }
|
|
545 \ ],
|
|
546 \ 'code' : [
|
|
547 \ [
|
|
548 \ 'a',
|
|
549 \ 'br',
|
|
550 \ 'span',
|
|
551 \ 'bdo',
|
|
552 \ 'object',
|
|
553 \ 'img',
|
|
554 \ 'map',
|
|
555 \ 'tt',
|
|
556 \ 'i',
|
|
557 \ 'b',
|
|
558 \ 'big',
|
|
559 \ 'small',
|
|
560 \ 'em',
|
|
561 \ 'strong',
|
|
562 \ 'dfn',
|
|
563 \ 'code',
|
|
564 \ 'q',
|
|
565 \ 'sub',
|
|
566 \ 'sup',
|
|
567 \ 'samp',
|
|
568 \ 'kbd',
|
|
569 \ 'var',
|
|
570 \ 'cite',
|
|
571 \ 'abbr',
|
|
572 \ 'acronym',
|
|
573 \ 'input',
|
|
574 \ 'select',
|
|
575 \ 'textarea',
|
|
576 \ 'label',
|
|
577 \ 'button',
|
|
578 \ 'ins',
|
|
579 \ 'del',
|
|
580 \ 'script',
|
|
581 \ 'noscript'
|
|
582 \ ],
|
|
583 \ {
|
|
584 \ 'onmouseover' : [],
|
|
585 \ 'lang' : [],
|
|
586 \ 'onmouseout' : [],
|
|
587 \ 'onmousemove' : [],
|
|
588 \ 'style' : [],
|
|
589 \ 'ondblclick' : [],
|
|
590 \ 'xml:lang' : [],
|
|
591 \ 'dir' : [
|
|
592 \ 'ltr',
|
|
593 \ 'rtl'
|
|
594 \ ],
|
|
595 \ 'onkeydown' : [],
|
|
596 \ 'onkeyup' : [],
|
|
597 \ 'onkeypress' : [],
|
|
598 \ 'onmousedown' : [],
|
|
599 \ 'onmouseup' : [],
|
|
600 \ 'id' : [],
|
|
601 \ 'class' : [],
|
|
602 \ 'title' : [],
|
|
603 \ 'onclick' : []
|
|
604 \ }
|
|
605 \ ],
|
|
606 \ 'base' : [[],
|
|
607 \ {
|
|
608 \ 'href' : []
|
|
609 \ }
|
|
610 \ ],
|
|
611 \ 'br' : [[],
|
|
612 \ {
|
|
613 \ 'style' : [],
|
|
614 \ 'title' : [],
|
|
615 \ 'class' : [],
|
|
616 \ 'id' : []
|
|
617 \ }
|
|
618 \ ],
|
|
619 \ 'acronym' : [
|
|
620 \ [
|
|
621 \ 'a',
|
|
622 \ 'br',
|
|
623 \ 'span',
|
|
624 \ 'bdo',
|
|
625 \ 'object',
|
|
626 \ 'img',
|
|
627 \ 'map',
|
|
628 \ 'tt',
|
|
629 \ 'i',
|
|
630 \ 'b',
|
|
631 \ 'big',
|
|
632 \ 'small',
|
|
633 \ 'em',
|
|
634 \ 'strong',
|
|
635 \ 'dfn',
|
|
636 \ 'code',
|
|
637 \ 'q',
|
|
638 \ 'sub',
|
|
639 \ 'sup',
|
|
640 \ 'samp',
|
|
641 \ 'kbd',
|
|
642 \ 'var',
|
|
643 \ 'cite',
|
|
644 \ 'abbr',
|
|
645 \ 'acronym',
|
|
646 \ 'input',
|
|
647 \ 'select',
|
|
648 \ 'textarea',
|
|
649 \ 'label',
|
|
650 \ 'button',
|
|
651 \ 'ins',
|
|
652 \ 'del',
|
|
653 \ 'script',
|
|
654 \ 'noscript'
|
|
655 \ ],
|
|
656 \ {
|
|
657 \ 'onmouseover' : [],
|
|
658 \ 'lang' : [],
|
|
659 \ 'onmouseout' : [],
|
|
660 \ 'onmousemove' : [],
|
|
661 \ 'style' : [],
|
|
662 \ 'ondblclick' : [],
|
|
663 \ 'xml:lang' : [],
|
|
664 \ 'dir' : [
|
|
665 \ 'ltr',
|
|
666 \ 'rtl'
|
|
667 \ ],
|
|
668 \ 'onkeydown' : [],
|
|
669 \ 'onkeyup' : [],
|
|
670 \ 'onkeypress' : [],
|
|
671 \ 'onmousedown' : [],
|
|
672 \ 'onmouseup' : [],
|
|
673 \ 'id' : [],
|
|
674 \ 'class' : [],
|
|
675 \ 'title' : [],
|
|
676 \ 'onclick' : []
|
|
677 \ }
|
|
678 \ ],
|
|
679 \ 'strong' : [
|
|
680 \ [
|
|
681 \ 'a',
|
|
682 \ 'br',
|
|
683 \ 'span',
|
|
684 \ 'bdo',
|
|
685 \ 'object',
|
|
686 \ 'img',
|
|
687 \ 'map',
|
|
688 \ 'tt',
|
|
689 \ 'i',
|
|
690 \ 'b',
|
|
691 \ 'big',
|
|
692 \ 'small',
|
|
693 \ 'em',
|
|
694 \ 'strong',
|
|
695 \ 'dfn',
|
|
696 \ 'code',
|
|
697 \ 'q',
|
|
698 \ 'sub',
|
|
699 \ 'sup',
|
|
700 \ 'samp',
|
|
701 \ 'kbd',
|
|
702 \ 'var',
|
|
703 \ 'cite',
|
|
704 \ 'abbr',
|
|
705 \ 'acronym',
|
|
706 \ 'input',
|
|
707 \ 'select',
|
|
708 \ 'textarea',
|
|
709 \ 'label',
|
|
710 \ 'button',
|
|
711 \ 'ins',
|
|
712 \ 'del',
|
|
713 \ 'script',
|
|
714 \ 'noscript'
|
|
715 \ ],
|
|
716 \ {
|
|
717 \ 'onmouseover' : [],
|
|
718 \ 'lang' : [],
|
|
719 \ 'onmouseout' : [],
|
|
720 \ 'onmousemove' : [],
|
|
721 \ 'style' : [],
|
|
722 \ 'ondblclick' : [],
|
|
723 \ 'xml:lang' : [],
|
|
724 \ 'dir' : [
|
|
725 \ 'ltr',
|
|
726 \ 'rtl'
|
|
727 \ ],
|
|
728 \ 'onkeydown' : [],
|
|
729 \ 'onkeyup' : [],
|
|
730 \ 'onkeypress' : [],
|
|
731 \ 'onmousedown' : [],
|
|
732 \ 'onmouseup' : [],
|
|
733 \ 'id' : [],
|
|
734 \ 'class' : [],
|
|
735 \ 'title' : [],
|
|
736 \ 'onclick' : []
|
|
737 \ }
|
|
738 \ ],
|
|
739 \ 'h4' : [
|
|
740 \ [
|
|
741 \ 'a',
|
|
742 \ 'br',
|
|
743 \ 'span',
|
|
744 \ 'bdo',
|
|
745 \ 'object',
|
|
746 \ 'img',
|
|
747 \ 'map',
|
|
748 \ 'tt',
|
|
749 \ 'i',
|
|
750 \ 'b',
|
|
751 \ 'big',
|
|
752 \ 'small',
|
|
753 \ 'em',
|
|
754 \ 'strong',
|
|
755 \ 'dfn',
|
|
756 \ 'code',
|
|
757 \ 'q',
|
|
758 \ 'sub',
|
|
759 \ 'sup',
|
|
760 \ 'samp',
|
|
761 \ 'kbd',
|
|
762 \ 'var',
|
|
763 \ 'cite',
|
|
764 \ 'abbr',
|
|
765 \ 'acronym',
|
|
766 \ 'input',
|
|
767 \ 'select',
|
|
768 \ 'textarea',
|
|
769 \ 'label',
|
|
770 \ 'button',
|
|
771 \ 'ins',
|
|
772 \ 'del',
|
|
773 \ 'script',
|
|
774 \ 'noscript'
|
|
775 \ ],
|
|
776 \ {
|
|
777 \ 'onmouseover' : [],
|
|
778 \ 'lang' : [],
|
|
779 \ 'onmouseout' : [],
|
|
780 \ 'onmousemove' : [],
|
|
781 \ 'style' : [],
|
|
782 \ 'ondblclick' : [],
|
|
783 \ 'xml:lang' : [],
|
|
784 \ 'dir' : [
|
|
785 \ 'ltr',
|
|
786 \ 'rtl'
|
|
787 \ ],
|
|
788 \ 'onkeydown' : [],
|
|
789 \ 'onkeyup' : [],
|
|
790 \ 'onkeypress' : [],
|
|
791 \ 'onmousedown' : [],
|
|
792 \ 'onmouseup' : [],
|
|
793 \ 'id' : [],
|
|
794 \ 'class' : [],
|
|
795 \ 'title' : [],
|
|
796 \ 'onclick' : []
|
|
797 \ }
|
|
798 \ ],
|
|
799 \ 'em' : [
|
|
800 \ [
|
|
801 \ 'a',
|
|
802 \ 'br',
|
|
803 \ 'span',
|
|
804 \ 'bdo',
|
|
805 \ 'object',
|
|
806 \ 'img',
|
|
807 \ 'map',
|
|
808 \ 'tt',
|
|
809 \ 'i',
|
|
810 \ 'b',
|
|
811 \ 'big',
|
|
812 \ 'small',
|
|
813 \ 'em',
|
|
814 \ 'strong',
|
|
815 \ 'dfn',
|
|
816 \ 'code',
|
|
817 \ 'q',
|
|
818 \ 'sub',
|
|
819 \ 'sup',
|
|
820 \ 'samp',
|
|
821 \ 'kbd',
|
|
822 \ 'var',
|
|
823 \ 'cite',
|
|
824 \ 'abbr',
|
|
825 \ 'acronym',
|
|
826 \ 'input',
|
|
827 \ 'select',
|
|
828 \ 'textarea',
|
|
829 \ 'label',
|
|
830 \ 'button',
|
|
831 \ 'ins',
|
|
832 \ 'del',
|
|
833 \ 'script',
|
|
834 \ 'noscript'
|
|
835 \ ],
|
|
836 \ {
|
|
837 \ 'onmouseover' : [],
|
|
838 \ 'lang' : [],
|
|
839 \ 'onmouseout' : [],
|
|
840 \ 'onmousemove' : [],
|
|
841 \ 'style' : [],
|
|
842 \ 'ondblclick' : [],
|
|
843 \ 'xml:lang' : [],
|
|
844 \ 'dir' : [
|
|
845 \ 'ltr',
|
|
846 \ 'rtl'
|
|
847 \ ],
|
|
848 \ 'onkeydown' : [],
|
|
849 \ 'onkeyup' : [],
|
|
850 \ 'onkeypress' : [],
|
|
851 \ 'onmousedown' : [],
|
|
852 \ 'onmouseup' : [],
|
|
853 \ 'id' : [],
|
|
854 \ 'class' : [],
|
|
855 \ 'title' : [],
|
|
856 \ 'onclick' : []
|
|
857 \ }
|
|
858 \ ],
|
|
859 \ 'b' : [
|
|
860 \ [
|
|
861 \ 'a',
|
|
862 \ 'br',
|
|
863 \ 'span',
|
|
864 \ 'bdo',
|
|
865 \ 'object',
|
|
866 \ 'img',
|
|
867 \ 'map',
|
|
868 \ 'tt',
|
|
869 \ 'i',
|
|
870 \ 'b',
|
|
871 \ 'big',
|
|
872 \ 'small',
|
|
873 \ 'em',
|
|
874 \ 'strong',
|
|
875 \ 'dfn',
|
|
876 \ 'code',
|
|
877 \ 'q',
|
|
878 \ 'sub',
|
|
879 \ 'sup',
|
|
880 \ 'samp',
|
|
881 \ 'kbd',
|
|
882 \ 'var',
|
|
883 \ 'cite',
|
|
884 \ 'abbr',
|
|
885 \ 'acronym',
|
|
886 \ 'input',
|
|
887 \ 'select',
|
|
888 \ 'textarea',
|
|
889 \ 'label',
|
|
890 \ 'button',
|
|
891 \ 'ins',
|
|
892 \ 'del',
|
|
893 \ 'script',
|
|
894 \ 'noscript'
|
|
895 \ ],
|
|
896 \ {
|
|
897 \ 'onmouseover' : [],
|
|
898 \ 'lang' : [],
|
|
899 \ 'onmouseout' : [],
|
|
900 \ 'onmousemove' : [],
|
|
901 \ 'style' : [],
|
|
902 \ 'ondblclick' : [],
|
|
903 \ 'xml:lang' : [],
|
|
904 \ 'dir' : [
|
|
905 \ 'ltr',
|
|
906 \ 'rtl'
|
|
907 \ ],
|
|
908 \ 'onkeydown' : [],
|
|
909 \ 'onkeyup' : [],
|
|
910 \ 'onkeypress' : [],
|
|
911 \ 'onmousedown' : [],
|
|
912 \ 'onmouseup' : [],
|
|
913 \ 'id' : [],
|
|
914 \ 'class' : [],
|
|
915 \ 'title' : [],
|
|
916 \ 'onclick' : []
|
|
917 \ }
|
|
918 \ ],
|
|
919 \ 'q' : [
|
|
920 \ [
|
|
921 \ 'a',
|
|
922 \ 'br',
|
|
923 \ 'span',
|
|
924 \ 'bdo',
|
|
925 \ 'object',
|
|
926 \ 'img',
|
|
927 \ 'map',
|
|
928 \ 'tt',
|
|
929 \ 'i',
|
|
930 \ 'b',
|
|
931 \ 'big',
|
|
932 \ 'small',
|
|
933 \ 'em',
|
|
934 \ 'strong',
|
|
935 \ 'dfn',
|
|
936 \ 'code',
|
|
937 \ 'q',
|
|
938 \ 'sub',
|
|
939 \ 'sup',
|
|
940 \ 'samp',
|
|
941 \ 'kbd',
|
|
942 \ 'var',
|
|
943 \ 'cite',
|
|
944 \ 'abbr',
|
|
945 \ 'acronym',
|
|
946 \ 'input',
|
|
947 \ 'select',
|
|
948 \ 'textarea',
|
|
949 \ 'label',
|
|
950 \ 'button',
|
|
951 \ 'ins',
|
|
952 \ 'del',
|
|
953 \ 'script',
|
|
954 \ 'noscript'
|
|
955 \ ],
|
|
956 \ {
|
|
957 \ 'onmouseover' : [],
|
|
958 \ 'lang' : [],
|
|
959 \ 'onmouseout' : [],
|
|
960 \ 'onmousemove' : [],
|
|
961 \ 'style' : [],
|
|
962 \ 'ondblclick' : [],
|
|
963 \ 'xml:lang' : [],
|
|
964 \ 'dir' : [
|
|
965 \ 'ltr',
|
|
966 \ 'rtl'
|
|
967 \ ],
|
|
968 \ 'onkeydown' : [],
|
|
969 \ 'onkeyup' : [],
|
|
970 \ 'onkeypress' : [],
|
|
971 \ 'onmousedown' : [],
|
|
972 \ 'onmouseup' : [],
|
|
973 \ 'id' : [],
|
|
974 \ 'class' : [],
|
|
975 \ 'title' : [],
|
|
976 \ 'onclick' : [],
|
|
977 \ 'cite' : []
|
|
978 \ }
|
|
979 \ ],
|
|
980 \ 'span' : [
|
|
981 \ [
|
|
982 \ 'a',
|
|
983 \ 'br',
|
|
984 \ 'span',
|
|
985 \ 'bdo',
|
|
986 \ 'object',
|
|
987 \ 'img',
|
|
988 \ 'map',
|
|
989 \ 'tt',
|
|
990 \ 'i',
|
|
991 \ 'b',
|
|
992 \ 'big',
|
|
993 \ 'small',
|
|
994 \ 'em',
|
|
995 \ 'strong',
|
|
996 \ 'dfn',
|
|
997 \ 'code',
|
|
998 \ 'q',
|
|
999 \ 'sub',
|
|
1000 \ 'sup',
|
|
1001 \ 'samp',
|
|
1002 \ 'kbd',
|
|
1003 \ 'var',
|
|
1004 \ 'cite',
|
|
1005 \ 'abbr',
|
|
1006 \ 'acronym',
|
|
1007 \ 'input',
|
|
1008 \ 'select',
|
|
1009 \ 'textarea',
|
|
1010 \ 'label',
|
|
1011 \ 'button',
|
|
1012 \ 'ins',
|
|
1013 \ 'del',
|
|
1014 \ 'script',
|
|
1015 \ 'noscript'
|
|
1016 \ ],
|
|
1017 \ {
|
|
1018 \ 'onmouseover' : [],
|
|
1019 \ 'lang' : [],
|
|
1020 \ 'onmouseout' : [],
|
|
1021 \ 'onmousemove' : [],
|
|
1022 \ 'style' : [],
|
|
1023 \ 'ondblclick' : [],
|
|
1024 \ 'xml:lang' : [],
|
|
1025 \ 'dir' : [
|
|
1026 \ 'ltr',
|
|
1027 \ 'rtl'
|
|
1028 \ ],
|
|
1029 \ 'onkeydown' : [],
|
|
1030 \ 'onkeyup' : [],
|
|
1031 \ 'onkeypress' : [],
|
|
1032 \ 'onmousedown' : [],
|
|
1033 \ 'onmouseup' : [],
|
|
1034 \ 'id' : [],
|
|
1035 \ 'class' : [],
|
|
1036 \ 'title' : [],
|
|
1037 \ 'onclick' : []
|
|
1038 \ }
|
|
1039 \ ],
|
|
1040 \ 'title' : [
|
|
1041 \ {
|
|
1042 \ 'lang' : [],
|
|
1043 \ 'xml:lang' : [],
|
|
1044 \ 'dir' : [
|
|
1045 \ 'ltr',
|
|
1046 \ 'rtl'
|
|
1047 \ ]
|
|
1048 \ }
|
|
1049 \ ],
|
|
1050 \ 'small' : [
|
|
1051 \ [
|
|
1052 \ 'a',
|
|
1053 \ 'br',
|
|
1054 \ 'span',
|
|
1055 \ 'bdo',
|
|
1056 \ 'object',
|
|
1057 \ 'img',
|
|
1058 \ 'map',
|
|
1059 \ 'tt',
|
|
1060 \ 'i',
|
|
1061 \ 'b',
|
|
1062 \ 'big',
|
|
1063 \ 'small',
|
|
1064 \ 'em',
|
|
1065 \ 'strong',
|
|
1066 \ 'dfn',
|
|
1067 \ 'code',
|
|
1068 \ 'q',
|
|
1069 \ 'sub',
|
|
1070 \ 'sup',
|
|
1071 \ 'samp',
|
|
1072 \ 'kbd',
|
|
1073 \ 'var',
|
|
1074 \ 'cite',
|
|
1075 \ 'abbr',
|
|
1076 \ 'acronym',
|
|
1077 \ 'input',
|
|
1078 \ 'select',
|
|
1079 \ 'textarea',
|
|
1080 \ 'label',
|
|
1081 \ 'button',
|
|
1082 \ 'ins',
|
|
1083 \ 'del',
|
|
1084 \ 'script',
|
|
1085 \ 'noscript'
|
|
1086 \ ],
|
|
1087 \ {
|
|
1088 \ 'onmouseover' : [],
|
|
1089 \ 'lang' : [],
|
|
1090 \ 'onmouseout' : [],
|
|
1091 \ 'onmousemove' : [],
|
|
1092 \ 'style' : [],
|
|
1093 \ 'ondblclick' : [],
|
|
1094 \ 'xml:lang' : [],
|
|
1095 \ 'dir' : [
|
|
1096 \ 'ltr',
|
|
1097 \ 'rtl'
|
|
1098 \ ],
|
|
1099 \ 'onkeydown' : [],
|
|
1100 \ 'onkeyup' : [],
|
|
1101 \ 'onkeypress' : [],
|
|
1102 \ 'onmousedown' : [],
|
|
1103 \ 'onmouseup' : [],
|
|
1104 \ 'id' : [],
|
|
1105 \ 'class' : [],
|
|
1106 \ 'title' : [],
|
|
1107 \ 'onclick' : []
|
|
1108 \ }
|
|
1109 \ ],
|
|
1110 \ 'area' : [[],
|
|
1111 \ {
|
|
1112 \ 'accesskey' : [],
|
|
1113 \ 'coords' : [],
|
|
1114 \ 'ondblclick' : [],
|
|
1115 \ 'onblur' : [],
|
|
1116 \ 'dir' : [
|
|
1117 \ 'ltr',
|
|
1118 \ 'rtl'
|
|
1119 \ ],
|
|
1120 \ 'onfocus' : [],
|
|
1121 \ 'nohref' : [
|
|
1122 \ 'BOOL'
|
|
1123 \ ],
|
|
1124 \ 'onkeydown' : [],
|
|
1125 \ 'onkeyup' : [],
|
|
1126 \ 'href' : [],
|
|
1127 \ 'onmouseup' : [],
|
|
1128 \ 'id' : [],
|
|
1129 \ 'onmouseover' : [],
|
|
1130 \ 'tabindex' : [],
|
|
1131 \ 'alt' : [],
|
|
1132 \ 'lang' : [],
|
|
1133 \ 'style' : [],
|
|
1134 \ 'onmousemove' : [],
|
|
1135 \ 'onmouseout' : [],
|
|
1136 \ 'xml:lang' : [],
|
|
1137 \ 'onmousedown' : [],
|
|
1138 \ 'onkeypress' : [],
|
|
1139 \ 'onclick' : [],
|
|
1140 \ 'title' : [],
|
|
1141 \ 'class' : [],
|
|
1142 \ 'shape' : [
|
|
1143 \ 'rect',
|
|
1144 \ 'circle',
|
|
1145 \ 'poly',
|
|
1146 \ 'default'
|
|
1147 \ ]
|
|
1148 \ }
|
|
1149 \ ],
|
|
1150 \ 'body' : [
|
|
1151 \ [
|
|
1152 \ 'p',
|
|
1153 \ 'h1',
|
|
1154 \ 'h2',
|
|
1155 \ 'h3',
|
|
1156 \ 'h4',
|
|
1157 \ 'h5',
|
|
1158 \ 'h6',
|
|
1159 \ 'div',
|
|
1160 \ 'ul',
|
|
1161 \ 'ol',
|
|
1162 \ 'dl',
|
|
1163 \ 'pre',
|
|
1164 \ 'hr',
|
|
1165 \ 'blockquote',
|
|
1166 \ 'address',
|
|
1167 \ 'fieldset',
|
|
1168 \ 'table',
|
|
1169 \ 'form',
|
|
1170 \ 'ins',
|
|
1171 \ 'del',
|
|
1172 \ 'script',
|
|
1173 \ 'noscript'
|
|
1174 \ ],
|
|
1175 \ {
|
|
1176 \ 'ondblclick' : [],
|
|
1177 \ 'dir' : [
|
|
1178 \ 'ltr',
|
|
1179 \ 'rtl'
|
|
1180 \ ],
|
|
1181 \ 'onkeydown' : [],
|
|
1182 \ 'onkeyup' : [],
|
|
1183 \ 'onmouseup' : [],
|
|
1184 \ 'id' : [],
|
|
1185 \ 'onmouseover' : [],
|
|
1186 \ 'lang' : [],
|
|
1187 \ 'style' : [],
|
|
1188 \ 'onmousemove' : [],
|
|
1189 \ 'onmouseout' : [],
|
|
1190 \ 'xml:lang' : [],
|
|
1191 \ 'onunload' : [],
|
|
1192 \ 'onmousedown' : [],
|
|
1193 \ 'onkeypress' : [],
|
|
1194 \ 'onload' : [],
|
|
1195 \ 'onclick' : [],
|
|
1196 \ 'title' : [],
|
|
1197 \ 'class' : []
|
|
1198 \ }
|
|
1199 \ ],
|
|
1200 \ 'ol' : [
|
|
1201 \ [
|
|
1202 \ 'li'
|
|
1203 \ ],
|
|
1204 \ {
|
|
1205 \ 'onmouseover' : [],
|
|
1206 \ 'lang' : [],
|
|
1207 \ 'onmouseout' : [],
|
|
1208 \ 'onmousemove' : [],
|
|
1209 \ 'style' : [],
|
|
1210 \ 'ondblclick' : [],
|
|
1211 \ 'xml:lang' : [],
|
|
1212 \ 'dir' : [
|
|
1213 \ 'ltr',
|
|
1214 \ 'rtl'
|
|
1215 \ ],
|
|
1216 \ 'onkeydown' : [],
|
|
1217 \ 'onkeyup' : [],
|
|
1218 \ 'onkeypress' : [],
|
|
1219 \ 'onmousedown' : [],
|
|
1220 \ 'onmouseup' : [],
|
|
1221 \ 'id' : [],
|
|
1222 \ 'class' : [],
|
|
1223 \ 'title' : [],
|
|
1224 \ 'onclick' : []
|
|
1225 \ }
|
|
1226 \ ],
|
|
1227 \ 'html' : [
|
|
1228 \ [
|
|
1229 \ 'head',
|
|
1230 \ 'body'
|
|
1231 \ ],
|
|
1232 \ {
|
|
1233 \ 'xmlns' : [
|
|
1234 \ 'http://www.w3.org/1999/xhtml',
|
|
1235 \ ],
|
|
1236 \ 'lang' : [],
|
|
1237 \ 'xml:lang' : [],
|
|
1238 \ 'dir' : [
|
|
1239 \ 'ltr',
|
|
1240 \ 'rtl'
|
|
1241 \ ]
|
|
1242 \ }
|
|
1243 \ ],
|
|
1244 \ 'var' : [
|
|
1245 \ [
|
|
1246 \ 'a',
|
|
1247 \ 'br',
|
|
1248 \ 'span',
|
|
1249 \ 'bdo',
|
|
1250 \ 'object',
|
|
1251 \ 'img',
|
|
1252 \ 'map',
|
|
1253 \ 'tt',
|
|
1254 \ 'i',
|
|
1255 \ 'b',
|
|
1256 \ 'big',
|
|
1257 \ 'small',
|
|
1258 \ 'em',
|
|
1259 \ 'strong',
|
|
1260 \ 'dfn',
|
|
1261 \ 'code',
|
|
1262 \ 'q',
|
|
1263 \ 'sub',
|
|
1264 \ 'sup',
|
|
1265 \ 'samp',
|
|
1266 \ 'kbd',
|
|
1267 \ 'var',
|
|
1268 \ 'cite',
|
|
1269 \ 'abbr',
|
|
1270 \ 'acronym',
|
|
1271 \ 'input',
|
|
1272 \ 'select',
|
|
1273 \ 'textarea',
|
|
1274 \ 'label',
|
|
1275 \ 'button',
|
|
1276 \ 'ins',
|
|
1277 \ 'del',
|
|
1278 \ 'script',
|
|
1279 \ 'noscript'
|
|
1280 \ ],
|
|
1281 \ {
|
|
1282 \ 'onmouseover' : [],
|
|
1283 \ 'lang' : [],
|
|
1284 \ 'onmouseout' : [],
|
|
1285 \ 'onmousemove' : [],
|
|
1286 \ 'style' : [],
|
|
1287 \ 'ondblclick' : [],
|
|
1288 \ 'xml:lang' : [],
|
|
1289 \ 'dir' : [
|
|
1290 \ 'ltr',
|
|
1291 \ 'rtl'
|
|
1292 \ ],
|
|
1293 \ 'onkeydown' : [],
|
|
1294 \ 'onkeyup' : [],
|
|
1295 \ 'onkeypress' : [],
|
|
1296 \ 'onmousedown' : [],
|
|
1297 \ 'onmouseup' : [],
|
|
1298 \ 'id' : [],
|
|
1299 \ 'class' : [],
|
|
1300 \ 'title' : [],
|
|
1301 \ 'onclick' : []
|
|
1302 \ }
|
|
1303 \ ],
|
|
1304 \ 'ul' : [
|
|
1305 \ [
|
|
1306 \ 'li'
|
|
1307 \ ],
|
|
1308 \ {
|
|
1309 \ 'onmouseover' : [],
|
|
1310 \ 'lang' : [],
|
|
1311 \ 'onmouseout' : [],
|
|
1312 \ 'onmousemove' : [],
|
|
1313 \ 'style' : [],
|
|
1314 \ 'ondblclick' : [],
|
|
1315 \ 'xml:lang' : [],
|
|
1316 \ 'dir' : [
|
|
1317 \ 'ltr',
|
|
1318 \ 'rtl'
|
|
1319 \ ],
|
|
1320 \ 'onkeydown' : [],
|
|
1321 \ 'onkeyup' : [],
|
|
1322 \ 'onkeypress' : [],
|
|
1323 \ 'onmousedown' : [],
|
|
1324 \ 'onmouseup' : [],
|
|
1325 \ 'id' : [],
|
|
1326 \ 'class' : [],
|
|
1327 \ 'title' : [],
|
|
1328 \ 'onclick' : []
|
|
1329 \ }
|
|
1330 \ ],
|
|
1331 \ 'del' : [
|
|
1332 \ [
|
|
1333 \ 'p',
|
|
1334 \ 'h1',
|
|
1335 \ 'h2',
|
|
1336 \ 'h3',
|
|
1337 \ 'h4',
|
|
1338 \ 'h5',
|
|
1339 \ 'h6',
|
|
1340 \ 'div',
|
|
1341 \ 'ul',
|
|
1342 \ 'ol',
|
|
1343 \ 'dl',
|
|
1344 \ 'pre',
|
|
1345 \ 'hr',
|
|
1346 \ 'blockquote',
|
|
1347 \ 'address',
|
|
1348 \ 'fieldset',
|
|
1349 \ 'table',
|
|
1350 \ 'form',
|
|
1351 \ 'a',
|
|
1352 \ 'br',
|
|
1353 \ 'span',
|
|
1354 \ 'bdo',
|
|
1355 \ 'object',
|
|
1356 \ 'img',
|
|
1357 \ 'map',
|
|
1358 \ 'tt',
|
|
1359 \ 'i',
|
|
1360 \ 'b',
|
|
1361 \ 'big',
|
|
1362 \ 'small',
|
|
1363 \ 'em',
|
|
1364 \ 'strong',
|
|
1365 \ 'dfn',
|
|
1366 \ 'code',
|
|
1367 \ 'q',
|
|
1368 \ 'sub',
|
|
1369 \ 'sup',
|
|
1370 \ 'samp',
|
|
1371 \ 'kbd',
|
|
1372 \ 'var',
|
|
1373 \ 'cite',
|
|
1374 \ 'abbr',
|
|
1375 \ 'acronym',
|
|
1376 \ 'input',
|
|
1377 \ 'select',
|
|
1378 \ 'textarea',
|
|
1379 \ 'label',
|
|
1380 \ 'button',
|
|
1381 \ 'ins',
|
|
1382 \ 'del',
|
|
1383 \ 'script',
|
|
1384 \ 'noscript'
|
|
1385 \ ],
|
|
1386 \ {
|
|
1387 \ 'ondblclick' : [],
|
|
1388 \ 'datetime' : [],
|
|
1389 \ 'dir' : [
|
|
1390 \ 'ltr',
|
|
1391 \ 'rtl'
|
|
1392 \ ],
|
|
1393 \ 'onkeydown' : [],
|
|
1394 \ 'onkeyup' : [],
|
|
1395 \ 'onmouseup' : [],
|
|
1396 \ 'id' : [],
|
|
1397 \ 'cite' : [],
|
|
1398 \ 'onmouseover' : [],
|
|
1399 \ 'lang' : [],
|
|
1400 \ 'style' : [],
|
|
1401 \ 'onmousemove' : [],
|
|
1402 \ 'onmouseout' : [],
|
|
1403 \ 'xml:lang' : [],
|
|
1404 \ 'onmousedown' : [],
|
|
1405 \ 'onkeypress' : [],
|
|
1406 \ 'onclick' : [],
|
|
1407 \ 'title' : [],
|
|
1408 \ 'class' : []
|
|
1409 \ }
|
|
1410 \ ],
|
|
1411 \ 'blockquote' : [
|
|
1412 \ [
|
|
1413 \ 'p',
|
|
1414 \ 'h1',
|
|
1415 \ 'h2',
|
|
1416 \ 'h3',
|
|
1417 \ 'h4',
|
|
1418 \ 'h5',
|
|
1419 \ 'h6',
|
|
1420 \ 'div',
|
|
1421 \ 'ul',
|
|
1422 \ 'ol',
|
|
1423 \ 'dl',
|
|
1424 \ 'pre',
|
|
1425 \ 'hr',
|
|
1426 \ 'blockquote',
|
|
1427 \ 'address',
|
|
1428 \ 'fieldset',
|
|
1429 \ 'table',
|
|
1430 \ 'form',
|
|
1431 \ 'ins',
|
|
1432 \ 'del',
|
|
1433 \ 'script',
|
|
1434 \ 'noscript'
|
|
1435 \ ],
|
|
1436 \ {
|
|
1437 \ 'onmouseover' : [],
|
|
1438 \ 'lang' : [],
|
|
1439 \ 'onmouseout' : [],
|
|
1440 \ 'onmousemove' : [],
|
|
1441 \ 'style' : [],
|
|
1442 \ 'ondblclick' : [],
|
|
1443 \ 'xml:lang' : [],
|
|
1444 \ 'dir' : [
|
|
1445 \ 'ltr',
|
|
1446 \ 'rtl'
|
|
1447 \ ],
|
|
1448 \ 'onkeydown' : [],
|
|
1449 \ 'onkeyup' : [],
|
|
1450 \ 'onkeypress' : [],
|
|
1451 \ 'onmousedown' : [],
|
|
1452 \ 'onmouseup' : [],
|
|
1453 \ 'id' : [],
|
|
1454 \ 'class' : [],
|
|
1455 \ 'title' : [],
|
|
1456 \ 'onclick' : [],
|
|
1457 \ 'cite' : []
|
|
1458 \ }
|
|
1459 \ ],
|
|
1460 \ 'style' : [[],
|
|
1461 \ {
|
|
1462 \ 'lang' : [],
|
|
1463 \ 'media' : [],
|
|
1464 \ 'title' : [],
|
|
1465 \ 'type' : [],
|
|
1466 \ 'xml:space' : [
|
|
1467 \ 'preserve'
|
|
1468 \ ],
|
|
1469 \ 'xml:lang' : [],
|
|
1470 \ 'dir' : [
|
|
1471 \ 'ltr',
|
|
1472 \ 'rtl'
|
|
1473 \ ]
|
|
1474 \ }
|
|
1475 \ ],
|
|
1476 \ 'dfn' : [
|
|
1477 \ [
|
|
1478 \ 'a',
|
|
1479 \ 'br',
|
|
1480 \ 'span',
|
|
1481 \ 'bdo',
|
|
1482 \ 'object',
|
|
1483 \ 'img',
|
|
1484 \ 'map',
|
|
1485 \ 'tt',
|
|
1486 \ 'i',
|
|
1487 \ 'b',
|
|
1488 \ 'big',
|
|
1489 \ 'small',
|
|
1490 \ 'em',
|
|
1491 \ 'strong',
|
|
1492 \ 'dfn',
|
|
1493 \ 'code',
|
|
1494 \ 'q',
|
|
1495 \ 'sub',
|
|
1496 \ 'sup',
|
|
1497 \ 'samp',
|
|
1498 \ 'kbd',
|
|
1499 \ 'var',
|
|
1500 \ 'cite',
|
|
1501 \ 'abbr',
|
|
1502 \ 'acronym',
|
|
1503 \ 'input',
|
|
1504 \ 'select',
|
|
1505 \ 'textarea',
|
|
1506 \ 'label',
|
|
1507 \ 'button',
|
|
1508 \ 'ins',
|
|
1509 \ 'del',
|
|
1510 \ 'script',
|
|
1511 \ 'noscript'
|
|
1512 \ ],
|
|
1513 \ {
|
|
1514 \ 'onmouseover' : [],
|
|
1515 \ 'lang' : [],
|
|
1516 \ 'onmouseout' : [],
|
|
1517 \ 'onmousemove' : [],
|
|
1518 \ 'style' : [],
|
|
1519 \ 'ondblclick' : [],
|
|
1520 \ 'xml:lang' : [],
|
|
1521 \ 'dir' : [
|
|
1522 \ 'ltr',
|
|
1523 \ 'rtl'
|
|
1524 \ ],
|
|
1525 \ 'onkeydown' : [],
|
|
1526 \ 'onkeyup' : [],
|
|
1527 \ 'onkeypress' : [],
|
|
1528 \ 'onmousedown' : [],
|
|
1529 \ 'onmouseup' : [],
|
|
1530 \ 'id' : [],
|
|
1531 \ 'class' : [],
|
|
1532 \ 'title' : [],
|
|
1533 \ 'onclick' : []
|
|
1534 \ }
|
|
1535 \ ],
|
|
1536 \ 'h3' : [
|
|
1537 \ [
|
|
1538 \ 'a',
|
|
1539 \ 'br',
|
|
1540 \ 'span',
|
|
1541 \ 'bdo',
|
|
1542 \ 'object',
|
|
1543 \ 'img',
|
|
1544 \ 'map',
|
|
1545 \ 'tt',
|
|
1546 \ 'i',
|
|
1547 \ 'b',
|
|
1548 \ 'big',
|
|
1549 \ 'small',
|
|
1550 \ 'em',
|
|
1551 \ 'strong',
|
|
1552 \ 'dfn',
|
|
1553 \ 'code',
|
|
1554 \ 'q',
|
|
1555 \ 'sub',
|
|
1556 \ 'sup',
|
|
1557 \ 'samp',
|
|
1558 \ 'kbd',
|
|
1559 \ 'var',
|
|
1560 \ 'cite',
|
|
1561 \ 'abbr',
|
|
1562 \ 'acronym',
|
|
1563 \ 'input',
|
|
1564 \ 'select',
|
|
1565 \ 'textarea',
|
|
1566 \ 'label',
|
|
1567 \ 'button',
|
|
1568 \ 'ins',
|
|
1569 \ 'del',
|
|
1570 \ 'script',
|
|
1571 \ 'noscript'
|
|
1572 \ ],
|
|
1573 \ {
|
|
1574 \ 'onmouseover' : [],
|
|
1575 \ 'lang' : [],
|
|
1576 \ 'onmouseout' : [],
|
|
1577 \ 'onmousemove' : [],
|
|
1578 \ 'style' : [],
|
|
1579 \ 'ondblclick' : [],
|
|
1580 \ 'xml:lang' : [],
|
|
1581 \ 'dir' : [
|
|
1582 \ 'ltr',
|
|
1583 \ 'rtl'
|
|
1584 \ ],
|
|
1585 \ 'onkeydown' : [],
|
|
1586 \ 'onkeyup' : [],
|
|
1587 \ 'onkeypress' : [],
|
|
1588 \ 'onmousedown' : [],
|
|
1589 \ 'onmouseup' : [],
|
|
1590 \ 'id' : [],
|
|
1591 \ 'class' : [],
|
|
1592 \ 'title' : [],
|
|
1593 \ 'onclick' : []
|
|
1594 \ }
|
|
1595 \ ],
|
|
1596 \ 'textarea' : [[],
|
|
1597 \ {
|
|
1598 \ 'accesskey' : [],
|
|
1599 \ 'disabled' : [
|
|
1600 \ 'disabled'
|
|
1601 \ ],
|
|
1602 \ 'ondblclick' : [],
|
|
1603 \ 'rows' : [],
|
|
1604 \ 'onblur' : [],
|
|
1605 \ 'cols' : [],
|
|
1606 \ 'dir' : [
|
|
1607 \ 'ltr',
|
|
1608 \ 'rtl'
|
|
1609 \ ],
|
|
1610 \ 'onchange' : [],
|
|
1611 \ 'onfocus' : [],
|
|
1612 \ 'readonly' : [
|
|
1613 \ 'BOOL'
|
|
1614 \ ],
|
|
1615 \ 'onkeydown' : [],
|
|
1616 \ 'onkeyup' : [],
|
|
1617 \ 'onmouseup' : [],
|
|
1618 \ 'id' : [],
|
|
1619 \ 'onselect' : [],
|
|
1620 \ 'onmouseover' : [],
|
|
1621 \ 'tabindex' : [],
|
|
1622 \ 'lang' : [],
|
|
1623 \ 'style' : [],
|
|
1624 \ 'onmousemove' : [],
|
|
1625 \ 'onmouseout' : [],
|
|
1626 \ 'name' : [],
|
|
1627 \ 'xml:lang' : [],
|
|
1628 \ 'onmousedown' : [],
|
|
1629 \ 'onkeypress' : [],
|
|
1630 \ 'onclick' : [],
|
|
1631 \ 'title' : [],
|
|
1632 \ 'class' : []
|
|
1633 \ }
|
|
1634 \ ],
|
|
1635 \ 'a' : [
|
|
1636 \ [
|
|
1637 \ 'br',
|
|
1638 \ 'span',
|
|
1639 \ 'bdo',
|
|
1640 \ 'object',
|
|
1641 \ 'img',
|
|
1642 \ 'map',
|
|
1643 \ 'tt',
|
|
1644 \ 'i',
|
|
1645 \ 'b',
|
|
1646 \ 'big',
|
|
1647 \ 'small',
|
|
1648 \ 'em',
|
|
1649 \ 'strong',
|
|
1650 \ 'dfn',
|
|
1651 \ 'code',
|
|
1652 \ 'q',
|
|
1653 \ 'sub',
|
|
1654 \ 'sup',
|
|
1655 \ 'samp',
|
|
1656 \ 'kbd',
|
|
1657 \ 'var',
|
|
1658 \ 'cite',
|
|
1659 \ 'abbr',
|
|
1660 \ 'acronym',
|
|
1661 \ 'input',
|
|
1662 \ 'select',
|
|
1663 \ 'textarea',
|
|
1664 \ 'label',
|
|
1665 \ 'button',
|
|
1666 \ 'ins',
|
|
1667 \ 'del',
|
|
1668 \ 'script',
|
|
1669 \ 'noscript'
|
|
1670 \ ],
|
|
1671 \ {
|
|
1672 \ 'accesskey' : [],
|
|
1673 \ 'rel' : [],
|
|
1674 \ 'coords' : [],
|
|
1675 \ 'ondblclick' : [],
|
|
1676 \ 'onblur' : [],
|
|
1677 \ 'dir' : [
|
|
1678 \ 'ltr',
|
|
1679 \ 'rtl'
|
|
1680 \ ],
|
|
1681 \ 'onfocus' : [],
|
|
1682 \ 'onkeydown' : [],
|
|
1683 \ 'onkeyup' : [],
|
|
1684 \ 'href' : [],
|
|
1685 \ 'onmouseup' : [],
|
|
1686 \ 'id' : [],
|
|
1687 \ 'onmouseover' : [],
|
|
1688 \ 'tabindex' : [],
|
|
1689 \ 'lang' : [],
|
|
1690 \ 'name' : [],
|
|
1691 \ 'style' : [],
|
|
1692 \ 'onmousemove' : [],
|
|
1693 \ 'onmouseout' : [],
|
|
1694 \ 'charset' : [],
|
|
1695 \ 'hreflang' : [],
|
|
1696 \ 'xml:lang' : [],
|
|
1697 \ 'onmousedown' : [],
|
|
1698 \ 'onkeypress' : [],
|
|
1699 \ 'rev' : [],
|
|
1700 \ 'shape' : [
|
|
1701 \ 'rect',
|
|
1702 \ 'circle',
|
|
1703 \ 'poly',
|
|
1704 \ 'default'
|
|
1705 \ ],
|
|
1706 \ 'type' : [],
|
|
1707 \ 'onclick' : [],
|
|
1708 \ 'title' : [],
|
|
1709 \ 'class' : []
|
|
1710 \ }
|
|
1711 \ ],
|
|
1712 \ 'img' : [[],
|
|
1713 \ {
|
|
1714 \ 'width' : [],
|
|
1715 \ 'ismap' : [
|
|
1716 \ 'BOOL'
|
|
1717 \ ],
|
|
1718 \ 'usemap' : [],
|
|
1719 \ 'ondblclick' : [],
|
|
1720 \ 'dir' : [
|
|
1721 \ 'ltr',
|
|
1722 \ 'rtl'
|
|
1723 \ ],
|
|
1724 \ 'onkeydown' : [],
|
|
1725 \ 'onkeyup' : [],
|
|
1726 \ 'onmouseup' : [],
|
|
1727 \ 'id' : [],
|
|
1728 \ 'onmouseover' : [],
|
|
1729 \ 'lang' : [],
|
|
1730 \ 'alt' : [],
|
|
1731 \ 'longdesc' : [],
|
|
1732 \ 'src' : [],
|
|
1733 \ 'style' : [],
|
|
1734 \ 'onmousemove' : [],
|
|
1735 \ 'onmouseout' : [],
|
|
1736 \ 'height' : [],
|
|
1737 \ 'xml:lang' : [],
|
|
1738 \ 'onmousedown' : [],
|
|
1739 \ 'onkeypress' : [],
|
|
1740 \ 'onclick' : [],
|
|
1741 \ 'title' : [],
|
|
1742 \ 'class' : []
|
|
1743 \ }
|
|
1744 \ ],
|
|
1745 \ 'tt' : [
|
|
1746 \ [
|
|
1747 \ 'a',
|
|
1748 \ 'br',
|
|
1749 \ 'span',
|
|
1750 \ 'bdo',
|
|
1751 \ 'object',
|
|
1752 \ 'img',
|
|
1753 \ 'map',
|
|
1754 \ 'tt',
|
|
1755 \ 'i',
|
|
1756 \ 'b',
|
|
1757 \ 'big',
|
|
1758 \ 'small',
|
|
1759 \ 'em',
|
|
1760 \ 'strong',
|
|
1761 \ 'dfn',
|
|
1762 \ 'code',
|
|
1763 \ 'q',
|
|
1764 \ 'sub',
|
|
1765 \ 'sup',
|
|
1766 \ 'samp',
|
|
1767 \ 'kbd',
|
|
1768 \ 'var',
|
|
1769 \ 'cite',
|
|
1770 \ 'abbr',
|
|
1771 \ 'acronym',
|
|
1772 \ 'input',
|
|
1773 \ 'select',
|
|
1774 \ 'textarea',
|
|
1775 \ 'label',
|
|
1776 \ 'button',
|
|
1777 \ 'ins',
|
|
1778 \ 'del',
|
|
1779 \ 'script',
|
|
1780 \ 'noscript'
|
|
1781 \ ],
|
|
1782 \ {
|
|
1783 \ 'onmouseover' : [],
|
|
1784 \ 'lang' : [],
|
|
1785 \ 'onmouseout' : [],
|
|
1786 \ 'onmousemove' : [],
|
|
1787 \ 'style' : [],
|
|
1788 \ 'ondblclick' : [],
|
|
1789 \ 'xml:lang' : [],
|
|
1790 \ 'dir' : [
|
|
1791 \ 'ltr',
|
|
1792 \ 'rtl'
|
|
1793 \ ],
|
|
1794 \ 'onkeydown' : [],
|
|
1795 \ 'onkeyup' : [],
|
|
1796 \ 'onkeypress' : [],
|
|
1797 \ 'onmousedown' : [],
|
|
1798 \ 'onmouseup' : [],
|
|
1799 \ 'id' : [],
|
|
1800 \ 'class' : [],
|
|
1801 \ 'title' : [],
|
|
1802 \ 'onclick' : []
|
|
1803 \ }
|
|
1804 \ ],
|
|
1805 \ 'thead' : [
|
|
1806 \ [
|
|
1807 \ 'tr'
|
|
1808 \ ],
|
|
1809 \ {
|
|
1810 \ 'ondblclick' : [],
|
|
1811 \ 'dir' : [
|
|
1812 \ 'ltr',
|
|
1813 \ 'rtl'
|
|
1814 \ ],
|
|
1815 \ 'onkeydown' : [],
|
|
1816 \ 'onkeyup' : [],
|
|
1817 \ 'onmouseup' : [],
|
|
1818 \ 'id' : [],
|
|
1819 \ 'charoff' : [],
|
|
1820 \ 'onmouseover' : [],
|
|
1821 \ 'lang' : [],
|
|
1822 \ 'align' : [
|
|
1823 \ 'left',
|
|
1824 \ 'center',
|
|
1825 \ 'right',
|
|
1826 \ 'justify',
|
|
1827 \ 'char'
|
|
1828 \ ],
|
|
1829 \ 'valign' : [
|
|
1830 \ 'top',
|
|
1831 \ 'middle',
|
|
1832 \ 'bottom',
|
|
1833 \ 'baseline'
|
|
1834 \ ],
|
|
1835 \ 'style' : [],
|
|
1836 \ 'onmousemove' : [],
|
|
1837 \ 'onmouseout' : [],
|
|
1838 \ 'xml:lang' : [],
|
|
1839 \ 'char' : [],
|
|
1840 \ 'onmousedown' : [],
|
|
1841 \ 'onkeypress' : [],
|
|
1842 \ 'onclick' : [],
|
|
1843 \ 'title' : [],
|
|
1844 \ 'class' : []
|
|
1845 \ }
|
|
1846 \ ],
|
|
1847 \ 'abbr' : [
|
|
1848 \ [
|
|
1849 \ 'a',
|
|
1850 \ 'br',
|
|
1851 \ 'span',
|
|
1852 \ 'bdo',
|
|
1853 \ 'object',
|
|
1854 \ 'img',
|
|
1855 \ 'map',
|
|
1856 \ 'tt',
|
|
1857 \ 'i',
|
|
1858 \ 'b',
|
|
1859 \ 'big',
|
|
1860 \ 'small',
|
|
1861 \ 'em',
|
|
1862 \ 'strong',
|
|
1863 \ 'dfn',
|
|
1864 \ 'code',
|
|
1865 \ 'q',
|
|
1866 \ 'sub',
|
|
1867 \ 'sup',
|
|
1868 \ 'samp',
|
|
1869 \ 'kbd',
|
|
1870 \ 'var',
|
|
1871 \ 'cite',
|
|
1872 \ 'abbr',
|
|
1873 \ 'acronym',
|
|
1874 \ 'input',
|
|
1875 \ 'select',
|
|
1876 \ 'textarea',
|
|
1877 \ 'label',
|
|
1878 \ 'button',
|
|
1879 \ 'ins',
|
|
1880 \ 'del',
|
|
1881 \ 'script',
|
|
1882 \ 'noscript'
|
|
1883 \ ],
|
|
1884 \ {
|
|
1885 \ 'onmouseover' : [],
|
|
1886 \ 'lang' : [],
|
|
1887 \ 'onmouseout' : [],
|
|
1888 \ 'onmousemove' : [],
|
|
1889 \ 'style' : [],
|
|
1890 \ 'ondblclick' : [],
|
|
1891 \ 'xml:lang' : [],
|
|
1892 \ 'dir' : [
|
|
1893 \ 'ltr',
|
|
1894 \ 'rtl'
|
|
1895 \ ],
|
|
1896 \ 'onkeydown' : [],
|
|
1897 \ 'onkeyup' : [],
|
|
1898 \ 'onkeypress' : [],
|
|
1899 \ 'onmousedown' : [],
|
|
1900 \ 'onmouseup' : [],
|
|
1901 \ 'id' : [],
|
|
1902 \ 'class' : [],
|
|
1903 \ 'title' : [],
|
|
1904 \ 'onclick' : []
|
|
1905 \ }
|
|
1906 \ ],
|
|
1907 \ 'h6' : [
|
|
1908 \ [
|
|
1909 \ 'a',
|
|
1910 \ 'br',
|
|
1911 \ 'span',
|
|
1912 \ 'bdo',
|
|
1913 \ 'object',
|
|
1914 \ 'img',
|
|
1915 \ 'map',
|
|
1916 \ 'tt',
|
|
1917 \ 'i',
|
|
1918 \ 'b',
|
|
1919 \ 'big',
|
|
1920 \ 'small',
|
|
1921 \ 'em',
|
|
1922 \ 'strong',
|
|
1923 \ 'dfn',
|
|
1924 \ 'code',
|
|
1925 \ 'q',
|
|
1926 \ 'sub',
|
|
1927 \ 'sup',
|
|
1928 \ 'samp',
|
|
1929 \ 'kbd',
|
|
1930 \ 'var',
|
|
1931 \ 'cite',
|
|
1932 \ 'abbr',
|
|
1933 \ 'acronym',
|
|
1934 \ 'input',
|
|
1935 \ 'select',
|
|
1936 \ 'textarea',
|
|
1937 \ 'label',
|
|
1938 \ 'button',
|
|
1939 \ 'ins',
|
|
1940 \ 'del',
|
|
1941 \ 'script',
|
|
1942 \ 'noscript'
|
|
1943 \ ],
|
|
1944 \ {
|
|
1945 \ 'onmouseover' : [],
|
|
1946 \ 'lang' : [],
|
|
1947 \ 'onmouseout' : [],
|
|
1948 \ 'onmousemove' : [],
|
|
1949 \ 'style' : [],
|
|
1950 \ 'ondblclick' : [],
|
|
1951 \ 'xml:lang' : [],
|
|
1952 \ 'dir' : [
|
|
1953 \ 'ltr',
|
|
1954 \ 'rtl'
|
|
1955 \ ],
|
|
1956 \ 'onkeydown' : [],
|
|
1957 \ 'onkeyup' : [],
|
|
1958 \ 'onkeypress' : [],
|
|
1959 \ 'onmousedown' : [],
|
|
1960 \ 'onmouseup' : [],
|
|
1961 \ 'id' : [],
|
|
1962 \ 'class' : [],
|
|
1963 \ 'title' : [],
|
|
1964 \ 'onclick' : []
|
|
1965 \ }
|
|
1966 \ ],
|
|
1967 \ 'sup' : [
|
|
1968 \ [
|
|
1969 \ 'a',
|
|
1970 \ 'br',
|
|
1971 \ 'span',
|
|
1972 \ 'bdo',
|
|
1973 \ 'object',
|
|
1974 \ 'img',
|
|
1975 \ 'map',
|
|
1976 \ 'tt',
|
|
1977 \ 'i',
|
|
1978 \ 'b',
|
|
1979 \ 'big',
|
|
1980 \ 'small',
|
|
1981 \ 'em',
|
|
1982 \ 'strong',
|
|
1983 \ 'dfn',
|
|
1984 \ 'code',
|
|
1985 \ 'q',
|
|
1986 \ 'sub',
|
|
1987 \ 'sup',
|
|
1988 \ 'samp',
|
|
1989 \ 'kbd',
|
|
1990 \ 'var',
|
|
1991 \ 'cite',
|
|
1992 \ 'abbr',
|
|
1993 \ 'acronym',
|
|
1994 \ 'input',
|
|
1995 \ 'select',
|
|
1996 \ 'textarea',
|
|
1997 \ 'label',
|
|
1998 \ 'button',
|
|
1999 \ 'ins',
|
|
2000 \ 'del',
|
|
2001 \ 'script',
|
|
2002 \ 'noscript'
|
|
2003 \ ],
|
|
2004 \ {
|
|
2005 \ 'onmouseover' : [],
|
|
2006 \ 'lang' : [],
|
|
2007 \ 'onmouseout' : [],
|
|
2008 \ 'onmousemove' : [],
|
|
2009 \ 'style' : [],
|
|
2010 \ 'ondblclick' : [],
|
|
2011 \ 'xml:lang' : [],
|
|
2012 \ 'dir' : [
|
|
2013 \ 'ltr',
|
|
2014 \ 'rtl'
|
|
2015 \ ],
|
|
2016 \ 'onkeydown' : [],
|
|
2017 \ 'onkeyup' : [],
|
|
2018 \ 'onkeypress' : [],
|
|
2019 \ 'onmousedown' : [],
|
|
2020 \ 'onmouseup' : [],
|
|
2021 \ 'id' : [],
|
|
2022 \ 'class' : [],
|
|
2023 \ 'title' : [],
|
|
2024 \ 'onclick' : []
|
|
2025 \ }
|
|
2026 \ ],
|
|
2027 \ 'address' : [
|
|
2028 \ [
|
|
2029 \ 'a',
|
|
2030 \ 'br',
|
|
2031 \ 'span',
|
|
2032 \ 'bdo',
|
|
2033 \ 'object',
|
|
2034 \ 'img',
|
|
2035 \ 'map',
|
|
2036 \ 'tt',
|
|
2037 \ 'i',
|
|
2038 \ 'b',
|
|
2039 \ 'big',
|
|
2040 \ 'small',
|
|
2041 \ 'em',
|
|
2042 \ 'strong',
|
|
2043 \ 'dfn',
|
|
2044 \ 'code',
|
|
2045 \ 'q',
|
|
2046 \ 'sub',
|
|
2047 \ 'sup',
|
|
2048 \ 'samp',
|
|
2049 \ 'kbd',
|
|
2050 \ 'var',
|
|
2051 \ 'cite',
|
|
2052 \ 'abbr',
|
|
2053 \ 'acronym',
|
|
2054 \ 'input',
|
|
2055 \ 'select',
|
|
2056 \ 'textarea',
|
|
2057 \ 'label',
|
|
2058 \ 'button',
|
|
2059 \ 'ins',
|
|
2060 \ 'del',
|
|
2061 \ 'script',
|
|
2062 \ 'noscript'
|
|
2063 \ ],
|
|
2064 \ {
|
|
2065 \ 'onmouseover' : [],
|
|
2066 \ 'lang' : [],
|
|
2067 \ 'onmouseout' : [],
|
|
2068 \ 'onmousemove' : [],
|
|
2069 \ 'style' : [],
|
|
2070 \ 'ondblclick' : [],
|
|
2071 \ 'xml:lang' : [],
|
|
2072 \ 'dir' : [
|
|
2073 \ 'ltr',
|
|
2074 \ 'rtl'
|
|
2075 \ ],
|
|
2076 \ 'onkeydown' : [],
|
|
2077 \ 'onkeyup' : [],
|
|
2078 \ 'onkeypress' : [],
|
|
2079 \ 'onmousedown' : [],
|
|
2080 \ 'onmouseup' : [],
|
|
2081 \ 'id' : [],
|
|
2082 \ 'class' : [],
|
|
2083 \ 'title' : [],
|
|
2084 \ 'onclick' : []
|
|
2085 \ }
|
|
2086 \ ],
|
|
2087 \ 'param' : [[],
|
|
2088 \ {
|
|
2089 \ 'value' : [],
|
|
2090 \ 'name' : [],
|
|
2091 \ 'type' : [],
|
|
2092 \ 'valuetype' : [
|
|
2093 \ 'data',
|
|
2094 \ 'ref',
|
|
2095 \ 'object'
|
|
2096 \ ],
|
|
2097 \ 'id' : []
|
|
2098 \ }
|
|
2099 \ ],
|
|
2100 \ 'th' : [
|
|
2101 \ [
|
|
2102 \ 'p',
|
|
2103 \ 'h1',
|
|
2104 \ 'h2',
|
|
2105 \ 'h3',
|
|
2106 \ 'h4',
|
|
2107 \ 'h5',
|
|
2108 \ 'h6',
|
|
2109 \ 'div',
|
|
2110 \ 'ul',
|
|
2111 \ 'ol',
|
|
2112 \ 'dl',
|
|
2113 \ 'pre',
|
|
2114 \ 'hr',
|
|
2115 \ 'blockquote',
|
|
2116 \ 'address',
|
|
2117 \ 'fieldset',
|
|
2118 \ 'table',
|
|
2119 \ 'form',
|
|
2120 \ 'a',
|
|
2121 \ 'br',
|
|
2122 \ 'span',
|
|
2123 \ 'bdo',
|
|
2124 \ 'object',
|
|
2125 \ 'img',
|
|
2126 \ 'map',
|
|
2127 \ 'tt',
|
|
2128 \ 'i',
|
|
2129 \ 'b',
|
|
2130 \ 'big',
|
|
2131 \ 'small',
|
|
2132 \ 'em',
|
|
2133 \ 'strong',
|
|
2134 \ 'dfn',
|
|
2135 \ 'code',
|
|
2136 \ 'q',
|
|
2137 \ 'sub',
|
|
2138 \ 'sup',
|
|
2139 \ 'samp',
|
|
2140 \ 'kbd',
|
|
2141 \ 'var',
|
|
2142 \ 'cite',
|
|
2143 \ 'abbr',
|
|
2144 \ 'acronym',
|
|
2145 \ 'input',
|
|
2146 \ 'select',
|
|
2147 \ 'textarea',
|
|
2148 \ 'label',
|
|
2149 \ 'button',
|
|
2150 \ 'ins',
|
|
2151 \ 'del',
|
|
2152 \ 'script',
|
|
2153 \ 'noscript'
|
|
2154 \ ],
|
|
2155 \ {
|
|
2156 \ 'headers' : [],
|
|
2157 \ 'ondblclick' : [],
|
|
2158 \ 'axis' : [],
|
|
2159 \ 'dir' : [
|
|
2160 \ 'ltr',
|
|
2161 \ 'rtl'
|
|
2162 \ ],
|
|
2163 \ 'abbr' : [],
|
|
2164 \ 'onkeydown' : [],
|
|
2165 \ 'onkeyup' : [],
|
|
2166 \ 'onmouseup' : [],
|
|
2167 \ 'id' : [],
|
|
2168 \ 'onmouseover' : [],
|
|
2169 \ 'lang' : [],
|
|
2170 \ 'style' : [],
|
|
2171 \ 'onmousemove' : [],
|
|
2172 \ 'onmouseout' : [],
|
|
2173 \ 'xml:lang' : [],
|
|
2174 \ 'onmousedown' : [],
|
|
2175 \ 'onkeypress' : [],
|
|
2176 \ 'onclick' : [],
|
|
2177 \ 'title' : [],
|
|
2178 \ 'class' : []
|
|
2179 \ }
|
|
2180 \ ],
|
|
2181 \ 'h1' : [
|
|
2182 \ [
|
|
2183 \ 'a',
|
|
2184 \ 'br',
|
|
2185 \ 'span',
|
|
2186 \ 'bdo',
|
|
2187 \ 'object',
|
|
2188 \ 'img',
|
|
2189 \ 'map',
|
|
2190 \ 'tt',
|
|
2191 \ 'i',
|
|
2192 \ 'b',
|
|
2193 \ 'big',
|
|
2194 \ 'small',
|
|
2195 \ 'em',
|
|
2196 \ 'strong',
|
|
2197 \ 'dfn',
|
|
2198 \ 'code',
|
|
2199 \ 'q',
|
|
2200 \ 'sub',
|
|
2201 \ 'sup',
|
|
2202 \ 'samp',
|
|
2203 \ 'kbd',
|
|
2204 \ 'var',
|
|
2205 \ 'cite',
|
|
2206 \ 'abbr',
|
|
2207 \ 'acronym',
|
|
2208 \ 'input',
|
|
2209 \ 'select',
|
|
2210 \ 'textarea',
|
|
2211 \ 'label',
|
|
2212 \ 'button',
|
|
2213 \ 'ins',
|
|
2214 \ 'del',
|
|
2215 \ 'script',
|
|
2216 \ 'noscript'
|
|
2217 \ ],
|
|
2218 \ {
|
|
2219 \ 'onmouseover' : [],
|
|
2220 \ 'lang' : [],
|
|
2221 \ 'onmouseout' : [],
|
|
2222 \ 'onmousemove' : [],
|
|
2223 \ 'style' : [],
|
|
2224 \ 'ondblclick' : [],
|
|
2225 \ 'xml:lang' : [],
|
|
2226 \ 'dir' : [
|
|
2227 \ 'ltr',
|
|
2228 \ 'rtl'
|
|
2229 \ ],
|
|
2230 \ 'onkeydown' : [],
|
|
2231 \ 'onkeyup' : [],
|
|
2232 \ 'onkeypress' : [],
|
|
2233 \ 'onmousedown' : [],
|
|
2234 \ 'onmouseup' : [],
|
|
2235 \ 'id' : [],
|
|
2236 \ 'class' : [],
|
|
2237 \ 'title' : [],
|
|
2238 \ 'onclick' : []
|
|
2239 \ }
|
|
2240 \ ],
|
|
2241 \ 'head' : [
|
|
2242 \ [
|
|
2243 \ 'script',
|
|
2244 \ 'style',
|
|
2245 \ 'meta',
|
|
2246 \ 'link',
|
|
2247 \ 'object',
|
|
2248 \ 'title',
|
|
2249 \ 'script',
|
|
2250 \ 'style',
|
|
2251 \ 'meta',
|
|
2252 \ 'link',
|
|
2253 \ 'object',
|
|
2254 \ 'base',
|
|
2255 \ 'script',
|
|
2256 \ 'style',
|
|
2257 \ 'meta',
|
|
2258 \ 'link',
|
|
2259 \ 'object',
|
|
2260 \ 'base',
|
|
2261 \ 'script',
|
|
2262 \ 'style',
|
|
2263 \ 'meta',
|
|
2264 \ 'link',
|
|
2265 \ 'object',
|
|
2266 \ 'title',
|
|
2267 \ 'script',
|
|
2268 \ 'style',
|
|
2269 \ 'meta',
|
|
2270 \ 'link',
|
|
2271 \ 'object'
|
|
2272 \ ],
|
|
2273 \ {
|
|
2274 \ 'profile' : [],
|
|
2275 \ 'lang' : [],
|
|
2276 \ 'xml:lang' : [],
|
|
2277 \ 'dir' : [
|
|
2278 \ 'ltr',
|
|
2279 \ 'rtl'
|
|
2280 \ ]
|
|
2281 \ }
|
|
2282 \ ],
|
|
2283 \ 'tbody' : [
|
|
2284 \ [
|
|
2285 \ 'tr'
|
|
2286 \ ],
|
|
2287 \ {
|
|
2288 \ 'ondblclick' : [],
|
|
2289 \ 'dir' : [
|
|
2290 \ 'ltr',
|
|
2291 \ 'rtl'
|
|
2292 \ ],
|
|
2293 \ 'onkeydown' : [],
|
|
2294 \ 'onkeyup' : [],
|
|
2295 \ 'onmouseup' : [],
|
|
2296 \ 'id' : [],
|
|
2297 \ 'charoff' : [],
|
|
2298 \ 'onmouseover' : [],
|
|
2299 \ 'lang' : [],
|
|
2300 \ 'align' : [
|
|
2301 \ 'left',
|
|
2302 \ 'center',
|
|
2303 \ 'right',
|
|
2304 \ 'justify',
|
|
2305 \ 'char'
|
|
2306 \ ],
|
|
2307 \ 'valign' : [
|
|
2308 \ 'top',
|
|
2309 \ 'middle',
|
|
2310 \ 'bottom',
|
|
2311 \ 'baseline'
|
|
2312 \ ],
|
|
2313 \ 'style' : [],
|
|
2314 \ 'onmousemove' : [],
|
|
2315 \ 'onmouseout' : [],
|
|
2316 \ 'xml:lang' : [],
|
|
2317 \ 'char' : [],
|
|
2318 \ 'onmousedown' : [],
|
|
2319 \ 'onkeypress' : [],
|
|
2320 \ 'onclick' : [],
|
|
2321 \ 'title' : [],
|
|
2322 \ 'class' : []
|
|
2323 \ }
|
|
2324 \ ],
|
|
2325 \ 'legend' : [
|
|
2326 \ [
|
|
2327 \ 'a',
|
|
2328 \ 'br',
|
|
2329 \ 'span',
|
|
2330 \ 'bdo',
|
|
2331 \ 'object',
|
|
2332 \ 'img',
|
|
2333 \ 'map',
|
|
2334 \ 'tt',
|
|
2335 \ 'i',
|
|
2336 \ 'b',
|
|
2337 \ 'big',
|
|
2338 \ 'small',
|
|
2339 \ 'em',
|
|
2340 \ 'strong',
|
|
2341 \ 'dfn',
|
|
2342 \ 'code',
|
|
2343 \ 'q',
|
|
2344 \ 'sub',
|
|
2345 \ 'sup',
|
|
2346 \ 'samp',
|
|
2347 \ 'kbd',
|
|
2348 \ 'var',
|
|
2349 \ 'cite',
|
|
2350 \ 'abbr',
|
|
2351 \ 'acronym',
|
|
2352 \ 'input',
|
|
2353 \ 'select',
|
|
2354 \ 'textarea',
|
|
2355 \ 'label',
|
|
2356 \ 'button',
|
|
2357 \ 'ins',
|
|
2358 \ 'del',
|
|
2359 \ 'script',
|
|
2360 \ 'noscript'
|
|
2361 \ ],
|
|
2362 \ {
|
|
2363 \ 'accesskey' : [],
|
|
2364 \ 'onmouseover' : [],
|
|
2365 \ 'lang' : [],
|
|
2366 \ 'onmouseout' : [],
|
|
2367 \ 'onmousemove' : [],
|
|
2368 \ 'style' : [],
|
|
2369 \ 'ondblclick' : [],
|
|
2370 \ 'xml:lang' : [],
|
|
2371 \ 'dir' : [
|
|
2372 \ 'ltr',
|
|
2373 \ 'rtl'
|
|
2374 \ ],
|
|
2375 \ 'onkeydown' : [],
|
|
2376 \ 'onkeyup' : [],
|
|
2377 \ 'onkeypress' : [],
|
|
2378 \ 'onmousedown' : [],
|
|
2379 \ 'onmouseup' : [],
|
|
2380 \ 'id' : [],
|
|
2381 \ 'class' : [],
|
|
2382 \ 'title' : [],
|
|
2383 \ 'onclick' : []
|
|
2384 \ }
|
|
2385 \ ],
|
|
2386 \ 'dd' : [
|
|
2387 \ [
|
|
2388 \ 'p',
|
|
2389 \ 'h1',
|
|
2390 \ 'h2',
|
|
2391 \ 'h3',
|
|
2392 \ 'h4',
|
|
2393 \ 'h5',
|
|
2394 \ 'h6',
|
|
2395 \ 'div',
|
|
2396 \ 'ul',
|
|
2397 \ 'ol',
|
|
2398 \ 'dl',
|
|
2399 \ 'pre',
|
|
2400 \ 'hr',
|
|
2401 \ 'blockquote',
|
|
2402 \ 'address',
|
|
2403 \ 'fieldset',
|
|
2404 \ 'table',
|
|
2405 \ 'form',
|
|
2406 \ 'a',
|
|
2407 \ 'br',
|
|
2408 \ 'span',
|
|
2409 \ 'bdo',
|
|
2410 \ 'object',
|
|
2411 \ 'img',
|
|
2412 \ 'map',
|
|
2413 \ 'tt',
|
|
2414 \ 'i',
|
|
2415 \ 'b',
|
|
2416 \ 'big',
|
|
2417 \ 'small',
|
|
2418 \ 'em',
|
|
2419 \ 'strong',
|
|
2420 \ 'dfn',
|
|
2421 \ 'code',
|
|
2422 \ 'q',
|
|
2423 \ 'sub',
|
|
2424 \ 'sup',
|
|
2425 \ 'samp',
|
|
2426 \ 'kbd',
|
|
2427 \ 'var',
|
|
2428 \ 'cite',
|
|
2429 \ 'abbr',
|
|
2430 \ 'acronym',
|
|
2431 \ 'input',
|
|
2432 \ 'select',
|
|
2433 \ 'textarea',
|
|
2434 \ 'label',
|
|
2435 \ 'button',
|
|
2436 \ 'ins',
|
|
2437 \ 'del',
|
|
2438 \ 'script',
|
|
2439 \ 'noscript'
|
|
2440 \ ],
|
|
2441 \ {
|
|
2442 \ 'onmouseover' : [],
|
|
2443 \ 'lang' : [],
|
|
2444 \ 'onmouseout' : [],
|
|
2445 \ 'onmousemove' : [],
|
|
2446 \ 'style' : [],
|
|
2447 \ 'ondblclick' : [],
|
|
2448 \ 'xml:lang' : [],
|
|
2449 \ 'dir' : [
|
|
2450 \ 'ltr',
|
|
2451 \ 'rtl'
|
|
2452 \ ],
|
|
2453 \ 'onkeydown' : [],
|
|
2454 \ 'onkeyup' : [],
|
|
2455 \ 'onkeypress' : [],
|
|
2456 \ 'onmousedown' : [],
|
|
2457 \ 'onmouseup' : [],
|
|
2458 \ 'id' : [],
|
|
2459 \ 'class' : [],
|
|
2460 \ 'title' : [],
|
|
2461 \ 'onclick' : []
|
|
2462 \ }
|
|
2463 \ ],
|
|
2464 \ 'hr' : [[],
|
|
2465 \ {
|
|
2466 \ 'onmouseover' : [],
|
|
2467 \ 'lang' : [],
|
|
2468 \ 'onmouseout' : [],
|
|
2469 \ 'onmousemove' : [],
|
|
2470 \ 'style' : [],
|
|
2471 \ 'ondblclick' : [],
|
|
2472 \ 'xml:lang' : [],
|
|
2473 \ 'dir' : [
|
|
2474 \ 'ltr',
|
|
2475 \ 'rtl'
|
|
2476 \ ],
|
|
2477 \ 'onkeydown' : [],
|
|
2478 \ 'onkeyup' : [],
|
|
2479 \ 'onkeypress' : [],
|
|
2480 \ 'onmousedown' : [],
|
|
2481 \ 'onmouseup' : [],
|
|
2482 \ 'id' : [],
|
|
2483 \ 'class' : [],
|
|
2484 \ 'title' : [],
|
|
2485 \ 'onclick' : []
|
|
2486 \ }
|
|
2487 \ ],
|
|
2488 \ 'li' : [
|
|
2489 \ [
|
|
2490 \ 'p',
|
|
2491 \ 'h1',
|
|
2492 \ 'h2',
|
|
2493 \ 'h3',
|
|
2494 \ 'h4',
|
|
2495 \ 'h5',
|
|
2496 \ 'h6',
|
|
2497 \ 'div',
|
|
2498 \ 'ul',
|
|
2499 \ 'ol',
|
|
2500 \ 'dl',
|
|
2501 \ 'pre',
|
|
2502 \ 'hr',
|
|
2503 \ 'blockquote',
|
|
2504 \ 'address',
|
|
2505 \ 'fieldset',
|
|
2506 \ 'table',
|
|
2507 \ 'form',
|
|
2508 \ 'a',
|
|
2509 \ 'br',
|
|
2510 \ 'span',
|
|
2511 \ 'bdo',
|
|
2512 \ 'object',
|
|
2513 \ 'img',
|
|
2514 \ 'map',
|
|
2515 \ 'tt',
|
|
2516 \ 'i',
|
|
2517 \ 'b',
|
|
2518 \ 'big',
|
|
2519 \ 'small',
|
|
2520 \ 'em',
|
|
2521 \ 'strong',
|
|
2522 \ 'dfn',
|
|
2523 \ 'code',
|
|
2524 \ 'q',
|
|
2525 \ 'sub',
|
|
2526 \ 'sup',
|
|
2527 \ 'samp',
|
|
2528 \ 'kbd',
|
|
2529 \ 'var',
|
|
2530 \ 'cite',
|
|
2531 \ 'abbr',
|
|
2532 \ 'acronym',
|
|
2533 \ 'input',
|
|
2534 \ 'select',
|
|
2535 \ 'textarea',
|
|
2536 \ 'label',
|
|
2537 \ 'button',
|
|
2538 \ 'ins',
|
|
2539 \ 'del',
|
|
2540 \ 'script',
|
|
2541 \ 'noscript'
|
|
2542 \ ],
|
|
2543 \ {
|
|
2544 \ 'onmouseover' : [],
|
|
2545 \ 'lang' : [],
|
|
2546 \ 'onmouseout' : [],
|
|
2547 \ 'onmousemove' : [],
|
|
2548 \ 'style' : [],
|
|
2549 \ 'ondblclick' : [],
|
|
2550 \ 'xml:lang' : [],
|
|
2551 \ 'dir' : [
|
|
2552 \ 'ltr',
|
|
2553 \ 'rtl'
|
|
2554 \ ],
|
|
2555 \ 'onkeydown' : [],
|
|
2556 \ 'onkeyup' : [],
|
|
2557 \ 'onkeypress' : [],
|
|
2558 \ 'onmousedown' : [],
|
|
2559 \ 'onmouseup' : [],
|
|
2560 \ 'id' : [],
|
|
2561 \ 'class' : [],
|
|
2562 \ 'title' : [],
|
|
2563 \ 'onclick' : []
|
|
2564 \ }
|
|
2565 \ ],
|
|
2566 \ 'td' : [
|
|
2567 \ [
|
|
2568 \ 'p',
|
|
2569 \ 'h1',
|
|
2570 \ 'h2',
|
|
2571 \ 'h3',
|
|
2572 \ 'h4',
|
|
2573 \ 'h5',
|
|
2574 \ 'h6',
|
|
2575 \ 'div',
|
|
2576 \ 'ul',
|
|
2577 \ 'ol',
|
|
2578 \ 'dl',
|
|
2579 \ 'pre',
|
|
2580 \ 'hr',
|
|
2581 \ 'blockquote',
|
|
2582 \ 'address',
|
|
2583 \ 'fieldset',
|
|
2584 \ 'table',
|
|
2585 \ 'form',
|
|
2586 \ 'a',
|
|
2587 \ 'br',
|
|
2588 \ 'span',
|
|
2589 \ 'bdo',
|
|
2590 \ 'object',
|
|
2591 \ 'img',
|
|
2592 \ 'map',
|
|
2593 \ 'tt',
|
|
2594 \ 'i',
|
|
2595 \ 'b',
|
|
2596 \ 'big',
|
|
2597 \ 'small',
|
|
2598 \ 'em',
|
|
2599 \ 'strong',
|
|
2600 \ 'dfn',
|
|
2601 \ 'code',
|
|
2602 \ 'q',
|
|
2603 \ 'sub',
|
|
2604 \ 'sup',
|
|
2605 \ 'samp',
|
|
2606 \ 'kbd',
|
|
2607 \ 'var',
|
|
2608 \ 'cite',
|
|
2609 \ 'abbr',
|
|
2610 \ 'acronym',
|
|
2611 \ 'input',
|
|
2612 \ 'select',
|
|
2613 \ 'textarea',
|
|
2614 \ 'label',
|
|
2615 \ 'button',
|
|
2616 \ 'ins',
|
|
2617 \ 'del',
|
|
2618 \ 'script',
|
|
2619 \ 'noscript'
|
|
2620 \ ],
|
|
2621 \ {
|
|
2622 \ 'headers' : [],
|
|
2623 \ 'ondblclick' : [],
|
|
2624 \ 'axis' : [],
|
|
2625 \ 'dir' : [
|
|
2626 \ 'ltr',
|
|
2627 \ 'rtl'
|
|
2628 \ ],
|
|
2629 \ 'abbr' : [],
|
|
2630 \ 'onkeydown' : [],
|
|
2631 \ 'onkeyup' : [],
|
|
2632 \ 'onmouseup' : [],
|
|
2633 \ 'id' : [],
|
|
2634 \ 'onmouseover' : [],
|
|
2635 \ 'lang' : [],
|
|
2636 \ 'style' : [],
|
|
2637 \ 'onmousemove' : [],
|
|
2638 \ 'onmouseout' : [],
|
|
2639 \ 'xml:lang' : [],
|
|
2640 \ 'onmousedown' : [],
|
|
2641 \ 'onkeypress' : [],
|
|
2642 \ 'onclick' : [],
|
|
2643 \ 'title' : [],
|
|
2644 \ 'class' : []
|
|
2645 \ }
|
|
2646 \ ],
|
|
2647 \ 'label' : [
|
|
2648 \ [
|
|
2649 \ 'a',
|
|
2650 \ 'br',
|
|
2651 \ 'span',
|
|
2652 \ 'bdo',
|
|
2653 \ 'object',
|
|
2654 \ 'img',
|
|
2655 \ 'map',
|
|
2656 \ 'tt',
|
|
2657 \ 'i',
|
|
2658 \ 'b',
|
|
2659 \ 'big',
|
|
2660 \ 'small',
|
|
2661 \ 'em',
|
|
2662 \ 'strong',
|
|
2663 \ 'dfn',
|
|
2664 \ 'code',
|
|
2665 \ 'q',
|
|
2666 \ 'sub',
|
|
2667 \ 'sup',
|
|
2668 \ 'samp',
|
|
2669 \ 'kbd',
|
|
2670 \ 'var',
|
|
2671 \ 'cite',
|
|
2672 \ 'abbr',
|
|
2673 \ 'acronym',
|
|
2674 \ 'input',
|
|
2675 \ 'select',
|
|
2676 \ 'textarea',
|
|
2677 \ 'label',
|
|
2678 \ 'button',
|
|
2679 \ 'ins',
|
|
2680 \ 'del',
|
|
2681 \ 'script',
|
|
2682 \ 'noscript'
|
|
2683 \ ],
|
|
2684 \ {
|
|
2685 \ 'onmouseover' : [],
|
|
2686 \ 'lang' : [],
|
|
2687 \ 'for' : [],
|
|
2688 \ 'onmouseout' : [],
|
|
2689 \ 'onmousemove' : [],
|
|
2690 \ 'style' : [],
|
|
2691 \ 'ondblclick' : [],
|
|
2692 \ 'xml:lang' : [],
|
|
2693 \ 'dir' : [
|
|
2694 \ 'ltr',
|
|
2695 \ 'rtl'
|
|
2696 \ ],
|
|
2697 \ 'onkeydown' : [],
|
|
2698 \ 'onkeyup' : [],
|
|
2699 \ 'onkeypress' : [],
|
|
2700 \ 'onmousedown' : [],
|
|
2701 \ 'onmouseup' : [],
|
|
2702 \ 'id' : [],
|
|
2703 \ 'class' : [],
|
|
2704 \ 'title' : [],
|
|
2705 \ 'onclick' : []
|
|
2706 \ }
|
|
2707 \ ],
|
|
2708 \ 'dl' : [
|
|
2709 \ [
|
|
2710 \ 'dt',
|
|
2711 \ 'dd'
|
|
2712 \ ],
|
|
2713 \ {
|
|
2714 \ 'onmouseover' : [],
|
|
2715 \ 'lang' : [],
|
|
2716 \ 'onmouseout' : [],
|
|
2717 \ 'onmousemove' : [],
|
|
2718 \ 'style' : [],
|
|
2719 \ 'ondblclick' : [],
|
|
2720 \ 'xml:lang' : [],
|
|
2721 \ 'dir' : [
|
|
2722 \ 'ltr',
|
|
2723 \ 'rtl'
|
|
2724 \ ],
|
|
2725 \ 'onkeydown' : [],
|
|
2726 \ 'onkeyup' : [],
|
|
2727 \ 'onkeypress' : [],
|
|
2728 \ 'onmousedown' : [],
|
|
2729 \ 'onmouseup' : [],
|
|
2730 \ 'id' : [],
|
|
2731 \ 'class' : [],
|
|
2732 \ 'title' : [],
|
|
2733 \ 'onclick' : []
|
|
2734 \ }
|
|
2735 \ ],
|
|
2736 \ 'kbd' : [
|
|
2737 \ [
|
|
2738 \ 'a',
|
|
2739 \ 'br',
|
|
2740 \ 'span',
|
|
2741 \ 'bdo',
|
|
2742 \ 'object',
|
|
2743 \ 'img',
|
|
2744 \ 'map',
|
|
2745 \ 'tt',
|
|
2746 \ 'i',
|
|
2747 \ 'b',
|
|
2748 \ 'big',
|
|
2749 \ 'small',
|
|
2750 \ 'em',
|
|
2751 \ 'strong',
|
|
2752 \ 'dfn',
|
|
2753 \ 'code',
|
|
2754 \ 'q',
|
|
2755 \ 'sub',
|
|
2756 \ 'sup',
|
|
2757 \ 'samp',
|
|
2758 \ 'kbd',
|
|
2759 \ 'var',
|
|
2760 \ 'cite',
|
|
2761 \ 'abbr',
|
|
2762 \ 'acronym',
|
|
2763 \ 'input',
|
|
2764 \ 'select',
|
|
2765 \ 'textarea',
|
|
2766 \ 'label',
|
|
2767 \ 'button',
|
|
2768 \ 'ins',
|
|
2769 \ 'del',
|
|
2770 \ 'script',
|
|
2771 \ 'noscript'
|
|
2772 \ ],
|
|
2773 \ {
|
|
2774 \ 'onmouseover' : [],
|
|
2775 \ 'lang' : [],
|
|
2776 \ 'onmouseout' : [],
|
|
2777 \ 'onmousemove' : [],
|
|
2778 \ 'style' : [],
|
|
2779 \ 'ondblclick' : [],
|
|
2780 \ 'xml:lang' : [],
|
|
2781 \ 'dir' : [
|
|
2782 \ 'ltr',
|
|
2783 \ 'rtl'
|
|
2784 \ ],
|
|
2785 \ 'onkeydown' : [],
|
|
2786 \ 'onkeyup' : [],
|
|
2787 \ 'onkeypress' : [],
|
|
2788 \ 'onmousedown' : [],
|
|
2789 \ 'onmouseup' : [],
|
|
2790 \ 'id' : [],
|
|
2791 \ 'class' : [],
|
|
2792 \ 'title' : [],
|
|
2793 \ 'onclick' : []
|
|
2794 \ }
|
|
2795 \ ],
|
|
2796 \ 'div' : [
|
|
2797 \ [
|
|
2798 \ 'p',
|
|
2799 \ 'h1',
|
|
2800 \ 'h2',
|
|
2801 \ 'h3',
|
|
2802 \ 'h4',
|
|
2803 \ 'h5',
|
|
2804 \ 'h6',
|
|
2805 \ 'div',
|
|
2806 \ 'ul',
|
|
2807 \ 'ol',
|
|
2808 \ 'dl',
|
|
2809 \ 'pre',
|
|
2810 \ 'hr',
|
|
2811 \ 'blockquote',
|
|
2812 \ 'address',
|
|
2813 \ 'fieldset',
|
|
2814 \ 'table',
|
|
2815 \ 'form',
|
|
2816 \ 'a',
|
|
2817 \ 'br',
|
|
2818 \ 'span',
|
|
2819 \ 'bdo',
|
|
2820 \ 'object',
|
|
2821 \ 'img',
|
|
2822 \ 'map',
|
|
2823 \ 'tt',
|
|
2824 \ 'i',
|
|
2825 \ 'b',
|
|
2826 \ 'big',
|
|
2827 \ 'small',
|
|
2828 \ 'em',
|
|
2829 \ 'strong',
|
|
2830 \ 'dfn',
|
|
2831 \ 'code',
|
|
2832 \ 'q',
|
|
2833 \ 'sub',
|
|
2834 \ 'sup',
|
|
2835 \ 'samp',
|
|
2836 \ 'kbd',
|
|
2837 \ 'var',
|
|
2838 \ 'cite',
|
|
2839 \ 'abbr',
|
|
2840 \ 'acronym',
|
|
2841 \ 'input',
|
|
2842 \ 'select',
|
|
2843 \ 'textarea',
|
|
2844 \ 'label',
|
|
2845 \ 'button',
|
|
2846 \ 'ins',
|
|
2847 \ 'del',
|
|
2848 \ 'script',
|
|
2849 \ 'noscript'
|
|
2850 \ ],
|
|
2851 \ {
|
|
2852 \ 'onmouseover' : [],
|
|
2853 \ 'lang' : [],
|
|
2854 \ 'onmouseout' : [],
|
|
2855 \ 'onmousemove' : [],
|
|
2856 \ 'style' : [],
|
|
2857 \ 'ondblclick' : [],
|
|
2858 \ 'xml:lang' : [],
|
|
2859 \ 'dir' : [
|
|
2860 \ 'ltr',
|
|
2861 \ 'rtl'
|
|
2862 \ ],
|
|
2863 \ 'onkeydown' : [],
|
|
2864 \ 'onkeyup' : [],
|
|
2865 \ 'onkeypress' : [],
|
|
2866 \ 'onmousedown' : [],
|
|
2867 \ 'onmouseup' : [],
|
|
2868 \ 'id' : [],
|
|
2869 \ 'class' : [],
|
|
2870 \ 'title' : [],
|
|
2871 \ 'onclick' : []
|
|
2872 \ }
|
|
2873 \ ],
|
|
2874 \ 'object' : [
|
|
2875 \ [
|
|
2876 \ 'param',
|
|
2877 \ 'p',
|
|
2878 \ 'h1',
|
|
2879 \ 'h2',
|
|
2880 \ 'h3',
|
|
2881 \ 'h4',
|
|
2882 \ 'h5',
|
|
2883 \ 'h6',
|
|
2884 \ 'div',
|
|
2885 \ 'ul',
|
|
2886 \ 'ol',
|
|
2887 \ 'dl',
|
|
2888 \ 'pre',
|
|
2889 \ 'hr',
|
|
2890 \ 'blockquote',
|
|
2891 \ 'address',
|
|
2892 \ 'fieldset',
|
|
2893 \ 'table',
|
|
2894 \ 'form',
|
|
2895 \ 'a',
|
|
2896 \ 'br',
|
|
2897 \ 'span',
|
|
2898 \ 'bdo',
|
|
2899 \ 'object',
|
|
2900 \ 'img',
|
|
2901 \ 'map',
|
|
2902 \ 'tt',
|
|
2903 \ 'i',
|
|
2904 \ 'b',
|
|
2905 \ 'big',
|
|
2906 \ 'small',
|
|
2907 \ 'em',
|
|
2908 \ 'strong',
|
|
2909 \ 'dfn',
|
|
2910 \ 'code',
|
|
2911 \ 'q',
|
|
2912 \ 'sub',
|
|
2913 \ 'sup',
|
|
2914 \ 'samp',
|
|
2915 \ 'kbd',
|
|
2916 \ 'var',
|
|
2917 \ 'cite',
|
|
2918 \ 'abbr',
|
|
2919 \ 'acronym',
|
|
2920 \ 'input',
|
|
2921 \ 'select',
|
|
2922 \ 'textarea',
|
|
2923 \ 'label',
|
|
2924 \ 'button',
|
|
2925 \ 'ins',
|
|
2926 \ 'del',
|
|
2927 \ 'script',
|
|
2928 \ 'noscript'
|
|
2929 \ ],
|
|
2930 \ {
|
|
2931 \ 'width' : [],
|
|
2932 \ 'usemap' : [],
|
|
2933 \ 'ondblclick' : [],
|
|
2934 \ 'dir' : [
|
|
2935 \ 'ltr',
|
|
2936 \ 'rtl'
|
|
2937 \ ],
|
|
2938 \ 'onkeydown' : [],
|
|
2939 \ 'onkeyup' : [],
|
|
2940 \ 'onmouseup' : [],
|
|
2941 \ 'id' : [],
|
|
2942 \ 'onmouseover' : [],
|
|
2943 \ 'tabindex' : [],
|
|
2944 \ 'standby' : [],
|
|
2945 \ 'archive' : [],
|
|
2946 \ 'lang' : [],
|
|
2947 \ 'classid' : [],
|
|
2948 \ 'name' : [],
|
|
2949 \ 'style' : [],
|
|
2950 \ 'onmousemove' : [],
|
|
2951 \ 'onmouseout' : [],
|
|
2952 \ 'data' : [],
|
|
2953 \ 'height' : [],
|
|
2954 \ 'xml:lang' : [],
|
|
2955 \ 'codetype' : [],
|
|
2956 \ 'declare' : [
|
|
2957 \ 'BOOL'
|
|
2958 \ ],
|
|
2959 \ 'onmousedown' : [],
|
|
2960 \ 'onkeypress' : [],
|
|
2961 \ 'type' : [],
|
|
2962 \ 'onclick' : [],
|
|
2963 \ 'title' : [],
|
|
2964 \ 'class' : [],
|
|
2965 \ 'codebase' : []
|
|
2966 \ }
|
|
2967 \ ],
|
|
2968 \ 'dt' : [
|
|
2969 \ [
|
|
2970 \ 'a',
|
|
2971 \ 'br',
|
|
2972 \ 'span',
|
|
2973 \ 'bdo',
|
|
2974 \ 'object',
|
|
2975 \ 'img',
|
|
2976 \ 'map',
|
|
2977 \ 'tt',
|
|
2978 \ 'i',
|
|
2979 \ 'b',
|
|
2980 \ 'big',
|
|
2981 \ 'small',
|
|
2982 \ 'em',
|
|
2983 \ 'strong',
|
|
2984 \ 'dfn',
|
|
2985 \ 'code',
|
|
2986 \ 'q',
|
|
2987 \ 'sub',
|
|
2988 \ 'sup',
|
|
2989 \ 'samp',
|
|
2990 \ 'kbd',
|
|
2991 \ 'var',
|
|
2992 \ 'cite',
|
|
2993 \ 'abbr',
|
|
2994 \ 'acronym',
|
|
2995 \ 'input',
|
|
2996 \ 'select',
|
|
2997 \ 'textarea',
|
|
2998 \ 'label',
|
|
2999 \ 'button',
|
|
3000 \ 'ins',
|
|
3001 \ 'del',
|
|
3002 \ 'script',
|
|
3003 \ 'noscript'
|
|
3004 \ ],
|
|
3005 \ {
|
|
3006 \ 'onmouseover' : [],
|
|
3007 \ 'lang' : [],
|
|
3008 \ 'onmouseout' : [],
|
|
3009 \ 'onmousemove' : [],
|
|
3010 \ 'style' : [],
|
|
3011 \ 'ondblclick' : [],
|
|
3012 \ 'xml:lang' : [],
|
|
3013 \ 'dir' : [
|
|
3014 \ 'ltr',
|
|
3015 \ 'rtl'
|
|
3016 \ ],
|
|
3017 \ 'onkeydown' : [],
|
|
3018 \ 'onkeyup' : [],
|
|
3019 \ 'onkeypress' : [],
|
|
3020 \ 'onmousedown' : [],
|
|
3021 \ 'onmouseup' : [],
|
|
3022 \ 'id' : [],
|
|
3023 \ 'class' : [],
|
|
3024 \ 'title' : [],
|
|
3025 \ 'onclick' : []
|
|
3026 \ }
|
|
3027 \ ],
|
|
3028 \ 'pre' : [
|
|
3029 \ [
|
|
3030 \ 'a',
|
|
3031 \ 'br',
|
|
3032 \ 'span',
|
|
3033 \ 'bdo',
|
|
3034 \ 'map',
|
|
3035 \ 'tt',
|
|
3036 \ 'i',
|
|
3037 \ 'b',
|
|
3038 \ 'em',
|
|
3039 \ 'strong',
|
|
3040 \ 'dfn',
|
|
3041 \ 'code',
|
|
3042 \ 'q',
|
|
3043 \ 'sub',
|
|
3044 \ 'sup',
|
|
3045 \ 'samp',
|
|
3046 \ 'kbd',
|
|
3047 \ 'var',
|
|
3048 \ 'cite',
|
|
3049 \ 'abbr',
|
|
3050 \ 'acronym',
|
|
3051 \ 'input',
|
|
3052 \ 'select',
|
|
3053 \ 'textarea',
|
|
3054 \ 'label',
|
|
3055 \ 'button'
|
|
3056 \ ],
|
|
3057 \ {
|
|
3058 \ 'ondblclick' : [],
|
|
3059 \ 'dir' : [
|
|
3060 \ 'ltr',
|
|
3061 \ 'rtl'
|
|
3062 \ ],
|
|
3063 \ 'onkeydown' : [],
|
|
3064 \ 'onkeyup' : [],
|
|
3065 \ 'onmouseup' : [],
|
|
3066 \ 'id' : [],
|
|
3067 \ 'onmouseover' : [],
|
|
3068 \ 'lang' : [],
|
|
3069 \ 'style' : [],
|
|
3070 \ 'onmousemove' : [],
|
|
3071 \ 'onmouseout' : [],
|
|
3072 \ 'xml:lang' : [],
|
|
3073 \ 'xml:space' : [
|
|
3074 \ 'preserve'
|
|
3075 \ ],
|
|
3076 \ 'onmousedown' : [],
|
|
3077 \ 'onkeypress' : [],
|
|
3078 \ 'onclick' : [],
|
|
3079 \ 'title' : [],
|
|
3080 \ 'class' : []
|
|
3081 \ }
|
|
3082 \ ],
|
|
3083 \ 'samp' : [
|
|
3084 \ [
|
|
3085 \ 'a',
|
|
3086 \ 'br',
|
|
3087 \ 'span',
|
|
3088 \ 'bdo',
|
|
3089 \ 'object',
|
|
3090 \ 'img',
|
|
3091 \ 'map',
|
|
3092 \ 'tt',
|
|
3093 \ 'i',
|
|
3094 \ 'b',
|
|
3095 \ 'big',
|
|
3096 \ 'small',
|
|
3097 \ 'em',
|
|
3098 \ 'strong',
|
|
3099 \ 'dfn',
|
|
3100 \ 'code',
|
|
3101 \ 'q',
|
|
3102 \ 'sub',
|
|
3103 \ 'sup',
|
|
3104 \ 'samp',
|
|
3105 \ 'kbd',
|
|
3106 \ 'var',
|
|
3107 \ 'cite',
|
|
3108 \ 'abbr',
|
|
3109 \ 'acronym',
|
|
3110 \ 'input',
|
|
3111 \ 'select',
|
|
3112 \ 'textarea',
|
|
3113 \ 'label',
|
|
3114 \ 'button',
|
|
3115 \ 'ins',
|
|
3116 \ 'del',
|
|
3117 \ 'script',
|
|
3118 \ 'noscript'
|
|
3119 \ ],
|
|
3120 \ {
|
|
3121 \ 'onmouseover' : [],
|
|
3122 \ 'lang' : [],
|
|
3123 \ 'onmouseout' : [],
|
|
3124 \ 'onmousemove' : [],
|
|
3125 \ 'style' : [],
|
|
3126 \ 'ondblclick' : [],
|
|
3127 \ 'xml:lang' : [],
|
|
3128 \ 'dir' : [
|
|
3129 \ 'ltr',
|
|
3130 \ 'rtl'
|
|
3131 \ ],
|
|
3132 \ 'onkeydown' : [],
|
|
3133 \ 'onkeyup' : [],
|
|
3134 \ 'onkeypress' : [],
|
|
3135 \ 'onmousedown' : [],
|
|
3136 \ 'onmouseup' : [],
|
|
3137 \ 'id' : [],
|
|
3138 \ 'class' : [],
|
|
3139 \ 'title' : [],
|
|
3140 \ 'onclick' : []
|
|
3141 \ }
|
|
3142 \ ],
|
|
3143 \ 'col' : [[],
|
|
3144 \ {
|
|
3145 \ 'disabled' : [
|
|
3146 \ 'disabled'
|
|
3147 \ ],
|
|
3148 \ 'ondblclick' : [],
|
|
3149 \ 'dir' : [
|
|
3150 \ 'ltr',
|
|
3151 \ 'rtl'
|
|
3152 \ ],
|
|
3153 \ 'onkeydown' : [],
|
|
3154 \ 'onkeyup' : [],
|
|
3155 \ 'onmouseup' : [],
|
|
3156 \ 'id' : [],
|
|
3157 \ 'onmouseover' : [],
|
|
3158 \ 'lang' : [],
|
|
3159 \ 'value' : [],
|
|
3160 \ 'style' : [],
|
|
3161 \ 'onmousemove' : [],
|
|
3162 \ 'onmouseout' : [],
|
|
3163 \ 'xml:lang' : [],
|
|
3164 \ 'onmousedown' : [],
|
|
3165 \ 'onkeypress' : [],
|
|
3166 \ 'label' : [],
|
|
3167 \ 'onclick' : [],
|
|
3168 \ 'title' : [],
|
|
3169 \ 'class' : [],
|
|
3170 \ 'selected' : [
|
|
3171 \ 'BOOL'
|
|
3172 \ ]
|
|
3173 \ }
|
|
3174 \ ],
|
|
3175 \ 'cite' : [
|
|
3176 \ [
|
|
3177 \ 'a',
|
|
3178 \ 'br',
|
|
3179 \ 'span',
|
|
3180 \ 'bdo',
|
|
3181 \ 'object',
|
|
3182 \ 'img',
|
|
3183 \ 'map',
|
|
3184 \ 'tt',
|
|
3185 \ 'i',
|
|
3186 \ 'b',
|
|
3187 \ 'big',
|
|
3188 \ 'small',
|
|
3189 \ 'em',
|
|
3190 \ 'strong',
|
|
3191 \ 'dfn',
|
|
3192 \ 'code',
|
|
3193 \ 'q',
|
|
3194 \ 'sub',
|
|
3195 \ 'sup',
|
|
3196 \ 'samp',
|
|
3197 \ 'kbd',
|
|
3198 \ 'var',
|
|
3199 \ 'cite',
|
|
3200 \ 'abbr',
|
|
3201 \ 'acronym',
|
|
3202 \ 'input',
|
|
3203 \ 'select',
|
|
3204 \ 'textarea',
|
|
3205 \ 'label',
|
|
3206 \ 'button',
|
|
3207 \ 'ins',
|
|
3208 \ 'del',
|
|
3209 \ 'script',
|
|
3210 \ 'noscript'
|
|
3211 \ ],
|
|
3212 \ {
|
|
3213 \ 'onmouseover' : [],
|
|
3214 \ 'lang' : [],
|
|
3215 \ 'onmouseout' : [],
|
|
3216 \ 'onmousemove' : [],
|
|
3217 \ 'style' : [],
|
|
3218 \ 'ondblclick' : [],
|
|
3219 \ 'xml:lang' : [],
|
|
3220 \ 'dir' : [
|
|
3221 \ 'ltr',
|
|
3222 \ 'rtl'
|
|
3223 \ ],
|
|
3224 \ 'onkeydown' : [],
|
|
3225 \ 'onkeyup' : [],
|
|
3226 \ 'onkeypress' : [],
|
|
3227 \ 'onmousedown' : [],
|
|
3228 \ 'onmouseup' : [],
|
|
3229 \ 'id' : [],
|
|
3230 \ 'class' : [],
|
|
3231 \ 'title' : [],
|
|
3232 \ 'onclick' : []
|
|
3233 \ }
|
|
3234 \ ],
|
|
3235 \ 'i' : [
|
|
3236 \ [
|
|
3237 \ 'a',
|
|
3238 \ 'br',
|
|
3239 \ 'span',
|
|
3240 \ 'bdo',
|
|
3241 \ 'object',
|
|
3242 \ 'img',
|
|
3243 \ 'map',
|
|
3244 \ 'tt',
|
|
3245 \ 'i',
|
|
3246 \ 'b',
|
|
3247 \ 'big',
|
|
3248 \ 'small',
|
|
3249 \ 'em',
|
|
3250 \ 'strong',
|
|
3251 \ 'dfn',
|
|
3252 \ 'code',
|
|
3253 \ 'q',
|
|
3254 \ 'sub',
|
|
3255 \ 'sup',
|
|
3256 \ 'samp',
|
|
3257 \ 'kbd',
|
|
3258 \ 'var',
|
|
3259 \ 'cite',
|
|
3260 \ 'abbr',
|
|
3261 \ 'acronym',
|
|
3262 \ 'input',
|
|
3263 \ 'select',
|
|
3264 \ 'textarea',
|
|
3265 \ 'label',
|
|
3266 \ 'button',
|
|
3267 \ 'ins',
|
|
3268 \ 'del',
|
|
3269 \ 'script',
|
|
3270 \ 'noscript'
|
|
3271 \ ],
|
|
3272 \ {
|
|
3273 \ 'onmouseover' : [],
|
|
3274 \ 'lang' : [],
|
|
3275 \ 'onmouseout' : [],
|
|
3276 \ 'onmousemove' : [],
|
|
3277 \ 'style' : [],
|
|
3278 \ 'ondblclick' : [],
|
|
3279 \ 'xml:lang' : [],
|
|
3280 \ 'dir' : [
|
|
3281 \ 'ltr',
|
|
3282 \ 'rtl'
|
|
3283 \ ],
|
|
3284 \ 'onkeydown' : [],
|
|
3285 \ 'onkeyup' : [],
|
|
3286 \ 'onkeypress' : [],
|
|
3287 \ 'onmousedown' : [],
|
|
3288 \ 'onmouseup' : [],
|
|
3289 \ 'id' : [],
|
|
3290 \ 'class' : [],
|
|
3291 \ 'title' : [],
|
|
3292 \ 'onclick' : []
|
|
3293 \ }
|
|
3294 \ ],
|
|
3295 \ 'select' : [
|
|
3296 \ [
|
|
3297 \ 'optgroup',
|
|
3298 \ 'option'
|
|
3299 \ ],
|
|
3300 \ {
|
|
3301 \ 'disabled' : [
|
|
3302 \ 'BOOL'
|
|
3303 \ ],
|
|
3304 \ 'ondblclick' : [],
|
|
3305 \ 'onblur' : [],
|
|
3306 \ 'size' : [],
|
|
3307 \ 'dir' : [
|
|
3308 \ 'ltr',
|
|
3309 \ 'rtl'
|
|
3310 \ ],
|
|
3311 \ 'onchange' : [],
|
|
3312 \ 'onfocus' : [],
|
|
3313 \ 'onkeydown' : [],
|
|
3314 \ 'onkeyup' : [],
|
|
3315 \ 'onmouseup' : [],
|
|
3316 \ 'id' : [],
|
|
3317 \ 'onmouseover' : [],
|
|
3318 \ 'tabindex' : [],
|
|
3319 \ 'lang' : [],
|
|
3320 \ 'style' : [],
|
|
3321 \ 'onmousemove' : [],
|
|
3322 \ 'onmouseout' : [],
|
|
3323 \ 'name' : [],
|
|
3324 \ 'xml:lang' : [],
|
|
3325 \ 'onmousedown' : [],
|
|
3326 \ 'onkeypress' : [],
|
|
3327 \ 'multiple' : [
|
|
3328 \ 'multiple'
|
|
3329 \ ],
|
|
3330 \ 'onclick' : [],
|
|
3331 \ 'title' : [],
|
|
3332 \ 'class' : []
|
|
3333 \ }
|
|
3334 \ ],
|
|
3335 \ 'link' : [[],
|
|
3336 \ {
|
|
3337 \ 'rel' : [],
|
|
3338 \ 'ondblclick' : [],
|
|
3339 \ 'dir' : [
|
|
3340 \ 'ltr',
|
|
3341 \ 'rtl'
|
|
3342 \ ],
|
|
3343 \ 'onkeydown' : [],
|
|
3344 \ 'onkeyup' : [],
|
|
3345 \ 'media' : [],
|
|
3346 \ 'href' : [],
|
|
3347 \ 'onmouseup' : [],
|
|
3348 \ 'id' : [],
|
|
3349 \ 'onmouseover' : [],
|
|
3350 \ 'lang' : [],
|
|
3351 \ 'style' : [],
|
|
3352 \ 'onmousemove' : [],
|
|
3353 \ 'onmouseout' : [],
|
|
3354 \ 'charset' : [],
|
|
3355 \ 'hreflang' : [],
|
|
3356 \ 'xml:lang' : [],
|
|
3357 \ 'onmousedown' : [],
|
|
3358 \ 'onkeypress' : [],
|
|
3359 \ 'rev' : [],
|
|
3360 \ 'type' : [],
|
|
3361 \ 'onclick' : [],
|
|
3362 \ 'title' : [],
|
|
3363 \ 'class' : []
|
|
3364 \ }
|
|
3365 \ ],
|
|
3366 \ 'script' : [[],
|
|
3367 \ {
|
|
3368 \ 'defer' : [
|
|
3369 \ 'BOOL'
|
|
3370 \ ],
|
|
3371 \ 'src' : [],
|
|
3372 \ 'type' : [],
|
|
3373 \ 'charset' : [],
|
|
3374 \ 'xml:space' : [
|
|
3375 \ 'preserve'
|
|
3376 \ ]
|
|
3377 \ }
|
|
3378 \ ],
|
|
3379 \ 'bdo' : [
|
|
3380 \ [
|
|
3381 \ 'a',
|
|
3382 \ 'br',
|
|
3383 \ 'span',
|
|
3384 \ 'bdo',
|
|
3385 \ 'object',
|
|
3386 \ 'img',
|
|
3387 \ 'map',
|
|
3388 \ 'tt',
|
|
3389 \ 'i',
|
|
3390 \ 'b',
|
|
3391 \ 'big',
|
|
3392 \ 'small',
|
|
3393 \ 'em',
|
|
3394 \ 'strong',
|
|
3395 \ 'dfn',
|
|
3396 \ 'code',
|
|
3397 \ 'q',
|
|
3398 \ 'sub',
|
|
3399 \ 'sup',
|
|
3400 \ 'samp',
|
|
3401 \ 'kbd',
|
|
3402 \ 'var',
|
|
3403 \ 'cite',
|
|
3404 \ 'abbr',
|
|
3405 \ 'acronym',
|
|
3406 \ 'input',
|
|
3407 \ 'select',
|
|
3408 \ 'textarea',
|
|
3409 \ 'label',
|
|
3410 \ 'button',
|
|
3411 \ 'ins',
|
|
3412 \ 'del',
|
|
3413 \ 'script',
|
|
3414 \ 'noscript'
|
|
3415 \ ],
|
|
3416 \ {
|
|
3417 \ 'onmouseover' : [],
|
|
3418 \ 'lang' : [],
|
|
3419 \ 'onmouseout' : [],
|
|
3420 \ 'onmousemove' : [],
|
|
3421 \ 'style' : [],
|
|
3422 \ 'ondblclick' : [],
|
|
3423 \ 'xml:lang' : [],
|
|
3424 \ 'dir' : [
|
|
3425 \ 'ltr',
|
|
3426 \ 'rtl'
|
|
3427 \ ],
|
|
3428 \ 'onkeydown' : [],
|
|
3429 \ 'onkeyup' : [],
|
|
3430 \ 'onkeypress' : [],
|
|
3431 \ 'onmousedown' : [],
|
|
3432 \ 'onmouseup' : [],
|
|
3433 \ 'id' : [],
|
|
3434 \ 'class' : [],
|
|
3435 \ 'title' : [],
|
|
3436 \ 'onclick' : []
|
|
3437 \ }
|
|
3438 \ ],
|
|
3439 \ 'colgroup' : [
|
|
3440 \ [
|
|
3441 \ 'col'
|
|
3442 \ ],
|
|
3443 \ {
|
|
3444 \ 'width' : [],
|
|
3445 \ 'ondblclick' : [],
|
|
3446 \ 'dir' : [
|
|
3447 \ 'ltr',
|
|
3448 \ 'rtl'
|
|
3449 \ ],
|
|
3450 \ 'onkeydown' : [],
|
|
3451 \ 'onkeyup' : [],
|
|
3452 \ 'onmouseup' : [],
|
|
3453 \ 'id' : [],
|
|
3454 \ 'charoff' : [],
|
|
3455 \ 'onmouseover' : [],
|
|
3456 \ 'align' : [
|
|
3457 \ 'left',
|
|
3458 \ 'center',
|
|
3459 \ 'right',
|
|
3460 \ 'justify',
|
|
3461 \ 'char'
|
|
3462 \ ],
|
|
3463 \ 'lang' : [],
|
|
3464 \ 'valign' : [
|
|
3465 \ 'top',
|
|
3466 \ 'middle',
|
|
3467 \ 'bottom',
|
|
3468 \ 'baseline'
|
|
3469 \ ],
|
|
3470 \ 'style' : [],
|
|
3471 \ 'onmousemove' : [],
|
|
3472 \ 'onmouseout' : [],
|
|
3473 \ 'xml:lang' : [],
|
|
3474 \ 'char' : [],
|
|
3475 \ 'onmousedown' : [],
|
|
3476 \ 'onkeypress' : [],
|
|
3477 \ 'onclick' : [],
|
|
3478 \ 'title' : [],
|
|
3479 \ 'class' : [],
|
|
3480 \ 'span' : [
|
|
3481 \ '',
|
|
3482 \ '1',
|
|
3483 \ ]
|
|
3484 \ }
|
|
3485 \ ],
|
|
3486 \ 'h2' : [
|
|
3487 \ [
|
|
3488 \ 'a',
|
|
3489 \ 'br',
|
|
3490 \ 'span',
|
|
3491 \ 'bdo',
|
|
3492 \ 'object',
|
|
3493 \ 'img',
|
|
3494 \ 'map',
|
|
3495 \ 'tt',
|
|
3496 \ 'i',
|
|
3497 \ 'b',
|
|
3498 \ 'big',
|
|
3499 \ 'small',
|
|
3500 \ 'em',
|
|
3501 \ 'strong',
|
|
3502 \ 'dfn',
|
|
3503 \ 'code',
|
|
3504 \ 'q',
|
|
3505 \ 'sub',
|
|
3506 \ 'sup',
|
|
3507 \ 'samp',
|
|
3508 \ 'kbd',
|
|
3509 \ 'var',
|
|
3510 \ 'cite',
|
|
3511 \ 'abbr',
|
|
3512 \ 'acronym',
|
|
3513 \ 'input',
|
|
3514 \ 'select',
|
|
3515 \ 'textarea',
|
|
3516 \ 'label',
|
|
3517 \ 'button',
|
|
3518 \ 'ins',
|
|
3519 \ 'del',
|
|
3520 \ 'script',
|
|
3521 \ 'noscript'
|
|
3522 \ ],
|
|
3523 \ {
|
|
3524 \ 'onmouseover' : [],
|
|
3525 \ 'lang' : [],
|
|
3526 \ 'onmouseout' : [],
|
|
3527 \ 'onmousemove' : [],
|
|
3528 \ 'style' : [],
|
|
3529 \ 'ondblclick' : [],
|
|
3530 \ 'xml:lang' : [],
|
|
3531 \ 'dir' : [
|
|
3532 \ 'ltr',
|
|
3533 \ 'rtl'
|
|
3534 \ ],
|
|
3535 \ 'onkeydown' : [],
|
|
3536 \ 'onkeyup' : [],
|
|
3537 \ 'onkeypress' : [],
|
|
3538 \ 'onmousedown' : [],
|
|
3539 \ 'onmouseup' : [],
|
|
3540 \ 'id' : [],
|
|
3541 \ 'class' : [],
|
|
3542 \ 'title' : [],
|
|
3543 \ 'onclick' : []
|
|
3544 \ }
|
|
3545 \ ],
|
|
3546 \ 'ins' : [
|
|
3547 \ [
|
|
3548 \ 'p',
|
|
3549 \ 'h1',
|
|
3550 \ 'h2',
|
|
3551 \ 'h3',
|
|
3552 \ 'h4',
|
|
3553 \ 'h5',
|
|
3554 \ 'h6',
|
|
3555 \ 'div',
|
|
3556 \ 'ul',
|
|
3557 \ 'ol',
|
|
3558 \ 'dl',
|
|
3559 \ 'pre',
|
|
3560 \ 'hr',
|
|
3561 \ 'blockquote',
|
|
3562 \ 'address',
|
|
3563 \ 'fieldset',
|
|
3564 \ 'table',
|
|
3565 \ 'form',
|
|
3566 \ 'a',
|
|
3567 \ 'br',
|
|
3568 \ 'span',
|
|
3569 \ 'bdo',
|
|
3570 \ 'object',
|
|
3571 \ 'img',
|
|
3572 \ 'map',
|
|
3573 \ 'tt',
|
|
3574 \ 'i',
|
|
3575 \ 'b',
|
|
3576 \ 'big',
|
|
3577 \ 'small',
|
|
3578 \ 'em',
|
|
3579 \ 'strong',
|
|
3580 \ 'dfn',
|
|
3581 \ 'code',
|
|
3582 \ 'q',
|
|
3583 \ 'sub',
|
|
3584 \ 'sup',
|
|
3585 \ 'samp',
|
|
3586 \ 'kbd',
|
|
3587 \ 'var',
|
|
3588 \ 'cite',
|
|
3589 \ 'abbr',
|
|
3590 \ 'acronym',
|
|
3591 \ 'input',
|
|
3592 \ 'select',
|
|
3593 \ 'textarea',
|
|
3594 \ 'label',
|
|
3595 \ 'button',
|
|
3596 \ 'ins',
|
|
3597 \ 'del',
|
|
3598 \ 'script',
|
|
3599 \ 'noscript'
|
|
3600 \ ],
|
|
3601 \ {
|
|
3602 \ 'ondblclick' : [],
|
|
3603 \ 'datetime' : [],
|
|
3604 \ 'dir' : [
|
|
3605 \ 'ltr',
|
|
3606 \ 'rtl'
|
|
3607 \ ],
|
|
3608 \ 'onkeydown' : [],
|
|
3609 \ 'onkeyup' : [],
|
|
3610 \ 'onmouseup' : [],
|
|
3611 \ 'id' : [],
|
|
3612 \ 'cite' : [],
|
|
3613 \ 'onmouseover' : [],
|
|
3614 \ 'lang' : [],
|
|
3615 \ 'style' : [],
|
|
3616 \ 'onmousemove' : [],
|
|
3617 \ 'onmouseout' : [],
|
|
3618 \ 'xml:lang' : [],
|
|
3619 \ 'onmousedown' : [],
|
|
3620 \ 'onkeypress' : [],
|
|
3621 \ 'onclick' : [],
|
|
3622 \ 'title' : [],
|
|
3623 \ 'class' : []
|
|
3624 \ }
|
|
3625 \ ],
|
|
3626 \ 'p' : [
|
|
3627 \ [
|
|
3628 \ 'a',
|
|
3629 \ 'br',
|
|
3630 \ 'span',
|
|
3631 \ 'bdo',
|
|
3632 \ 'object',
|
|
3633 \ 'img',
|
|
3634 \ 'map',
|
|
3635 \ 'tt',
|
|
3636 \ 'i',
|
|
3637 \ 'b',
|
|
3638 \ 'big',
|
|
3639 \ 'small',
|
|
3640 \ 'em',
|
|
3641 \ 'strong',
|
|
3642 \ 'dfn',
|
|
3643 \ 'code',
|
|
3644 \ 'q',
|
|
3645 \ 'sub',
|
|
3646 \ 'sup',
|
|
3647 \ 'samp',
|
|
3648 \ 'kbd',
|
|
3649 \ 'var',
|
|
3650 \ 'cite',
|
|
3651 \ 'abbr',
|
|
3652 \ 'acronym',
|
|
3653 \ 'input',
|
|
3654 \ 'select',
|
|
3655 \ 'textarea',
|
|
3656 \ 'label',
|
|
3657 \ 'button',
|
|
3658 \ 'ins',
|
|
3659 \ 'del',
|
|
3660 \ 'script',
|
|
3661 \ 'noscript'
|
|
3662 \ ],
|
|
3663 \ {
|
|
3664 \ 'onmouseover' : [],
|
|
3665 \ 'lang' : [],
|
|
3666 \ 'onmouseout' : [],
|
|
3667 \ 'onmousemove' : [],
|
|
3668 \ 'style' : [],
|
|
3669 \ 'ondblclick' : [],
|
|
3670 \ 'xml:lang' : [],
|
|
3671 \ 'dir' : [
|
|
3672 \ 'ltr',
|
|
3673 \ 'rtl'
|
|
3674 \ ],
|
|
3675 \ 'onkeydown' : [],
|
|
3676 \ 'onkeyup' : [],
|
|
3677 \ 'onkeypress' : [],
|
|
3678 \ 'onmousedown' : [],
|
|
3679 \ 'onmouseup' : [],
|
|
3680 \ 'id' : [],
|
|
3681 \ 'class' : [],
|
|
3682 \ 'title' : [],
|
|
3683 \ 'onclick' : []
|
|
3684 \ }
|
|
3685 \ ],
|
|
3686 \ 'sub' : [
|
|
3687 \ [
|
|
3688 \ 'a',
|
|
3689 \ 'br',
|
|
3690 \ 'span',
|
|
3691 \ 'bdo',
|
|
3692 \ 'object',
|
|
3693 \ 'img',
|
|
3694 \ 'map',
|
|
3695 \ 'tt',
|
|
3696 \ 'i',
|
|
3697 \ 'b',
|
|
3698 \ 'big',
|
|
3699 \ 'small',
|
|
3700 \ 'em',
|
|
3701 \ 'strong',
|
|
3702 \ 'dfn',
|
|
3703 \ 'code',
|
|
3704 \ 'q',
|
|
3705 \ 'sub',
|
|
3706 \ 'sup',
|
|
3707 \ 'samp',
|
|
3708 \ 'kbd',
|
|
3709 \ 'var',
|
|
3710 \ 'cite',
|
|
3711 \ 'abbr',
|
|
3712 \ 'acronym',
|
|
3713 \ 'input',
|
|
3714 \ 'select',
|
|
3715 \ 'textarea',
|
|
3716 \ 'label',
|
|
3717 \ 'button',
|
|
3718 \ 'ins',
|
|
3719 \ 'del',
|
|
3720 \ 'script',
|
|
3721 \ 'noscript'
|
|
3722 \ ],
|
|
3723 \ {
|
|
3724 \ 'onmouseover' : [],
|
|
3725 \ 'lang' : [],
|
|
3726 \ 'onmouseout' : [],
|
|
3727 \ 'onmousemove' : [],
|
|
3728 \ 'style' : [],
|
|
3729 \ 'ondblclick' : [],
|
|
3730 \ 'xml:lang' : [],
|
|
3731 \ 'dir' : [
|
|
3732 \ 'ltr',
|
|
3733 \ 'rtl'
|
|
3734 \ ],
|
|
3735 \ 'onkeydown' : [],
|
|
3736 \ 'onkeyup' : [],
|
|
3737 \ 'onkeypress' : [],
|
|
3738 \ 'onmousedown' : [],
|
|
3739 \ 'onmouseup' : [],
|
|
3740 \ 'id' : [],
|
|
3741 \ 'class' : [],
|
|
3742 \ 'title' : [],
|
|
3743 \ 'onclick' : []
|
|
3744 \ }
|
|
3745 \ ],
|
|
3746 \ 'big' : [
|
|
3747 \ [
|
|
3748 \ 'a',
|
|
3749 \ 'br',
|
|
3750 \ 'span',
|
|
3751 \ 'bdo',
|
|
3752 \ 'object',
|
|
3753 \ 'img',
|
|
3754 \ 'map',
|
|
3755 \ 'tt',
|
|
3756 \ 'i',
|
|
3757 \ 'b',
|
|
3758 \ 'big',
|
|
3759 \ 'small',
|
|
3760 \ 'em',
|
|
3761 \ 'strong',
|
|
3762 \ 'dfn',
|
|
3763 \ 'code',
|
|
3764 \ 'q',
|
|
3765 \ 'sub',
|
|
3766 \ 'sup',
|
|
3767 \ 'samp',
|
|
3768 \ 'kbd',
|
|
3769 \ 'var',
|
|
3770 \ 'cite',
|
|
3771 \ 'abbr',
|
|
3772 \ 'acronym',
|
|
3773 \ 'input',
|
|
3774 \ 'select',
|
|
3775 \ 'textarea',
|
|
3776 \ 'label',
|
|
3777 \ 'button',
|
|
3778 \ 'ins',
|
|
3779 \ 'del',
|
|
3780 \ 'script',
|
|
3781 \ 'noscript'
|
|
3782 \ ],
|
|
3783 \ {
|
|
3784 \ 'onmouseover' : [],
|
|
3785 \ 'lang' : [],
|
|
3786 \ 'onmouseout' : [],
|
|
3787 \ 'onmousemove' : [],
|
|
3788 \ 'style' : [],
|
|
3789 \ 'ondblclick' : [],
|
|
3790 \ 'xml:lang' : [],
|
|
3791 \ 'dir' : [
|
|
3792 \ 'ltr',
|
|
3793 \ 'rtl'
|
|
3794 \ ],
|
|
3795 \ 'onkeydown' : [],
|
|
3796 \ 'onkeyup' : [],
|
|
3797 \ 'onkeypress' : [],
|
|
3798 \ 'onmousedown' : [],
|
|
3799 \ 'onmouseup' : [],
|
|
3800 \ 'id' : [],
|
|
3801 \ 'class' : [],
|
|
3802 \ 'title' : [],
|
|
3803 \ 'onclick' : []
|
|
3804 \ }
|
|
3805 \ ],
|
|
3806 \ 'fieldset' : [
|
|
3807 \ [
|
|
3808 \ 'legend',
|
|
3809 \ 'p',
|
|
3810 \ 'h1',
|
|
3811 \ 'h2',
|
|
3812 \ 'h3',
|
|
3813 \ 'h4',
|
|
3814 \ 'h5',
|
|
3815 \ 'h6',
|
|
3816 \ 'div',
|
|
3817 \ 'ul',
|
|
3818 \ 'ol',
|
|
3819 \ 'dl',
|
|
3820 \ 'pre',
|
|
3821 \ 'hr',
|
|
3822 \ 'blockquote',
|
|
3823 \ 'address',
|
|
3824 \ 'fieldset',
|
|
3825 \ 'table',
|
|
3826 \ 'form',
|
|
3827 \ 'a',
|
|
3828 \ 'br',
|
|
3829 \ 'span',
|
|
3830 \ 'bdo',
|
|
3831 \ 'object',
|
|
3832 \ 'img',
|
|
3833 \ 'map',
|
|
3834 \ 'tt',
|
|
3835 \ 'i',
|
|
3836 \ 'b',
|
|
3837 \ 'big',
|
|
3838 \ 'small',
|
|
3839 \ 'em',
|
|
3840 \ 'strong',
|
|
3841 \ 'dfn',
|
|
3842 \ 'code',
|
|
3843 \ 'q',
|
|
3844 \ 'sub',
|
|
3845 \ 'sup',
|
|
3846 \ 'samp',
|
|
3847 \ 'kbd',
|
|
3848 \ 'var',
|
|
3849 \ 'cite',
|
|
3850 \ 'abbr',
|
|
3851 \ 'acronym',
|
|
3852 \ 'input',
|
|
3853 \ 'select',
|
|
3854 \ 'textarea',
|
|
3855 \ 'label',
|
|
3856 \ 'button',
|
|
3857 \ 'ins',
|
|
3858 \ 'del',
|
|
3859 \ 'script',
|
|
3860 \ 'noscript'
|
|
3861 \ ],
|
|
3862 \ {
|
|
3863 \ 'onmouseover' : [],
|
|
3864 \ 'lang' : [],
|
|
3865 \ 'onmouseout' : [],
|
|
3866 \ 'onmousemove' : [],
|
|
3867 \ 'style' : [],
|
|
3868 \ 'ondblclick' : [],
|
|
3869 \ 'xml:lang' : [],
|
|
3870 \ 'dir' : [
|
|
3871 \ 'ltr',
|
|
3872 \ 'rtl'
|
|
3873 \ ],
|
|
3874 \ 'onkeydown' : [],
|
|
3875 \ 'onkeyup' : [],
|
|
3876 \ 'onkeypress' : [],
|
|
3877 \ 'onmousedown' : [],
|
|
3878 \ 'onmouseup' : [],
|
|
3879 \ 'id' : [],
|
|
3880 \ 'class' : [],
|
|
3881 \ 'title' : [],
|
|
3882 \ 'onclick' : []
|
|
3883 \ }
|
|
3884 \ ],
|
|
3885 \ 'noscript' : [
|
|
3886 \ [
|
|
3887 \ 'p',
|
|
3888 \ 'h1',
|
|
3889 \ 'h2',
|
|
3890 \ 'h3',
|
|
3891 \ 'h4',
|
|
3892 \ 'h5',
|
|
3893 \ 'h6',
|
|
3894 \ 'div',
|
|
3895 \ 'ul',
|
|
3896 \ 'ol',
|
|
3897 \ 'dl',
|
|
3898 \ 'pre',
|
|
3899 \ 'hr',
|
|
3900 \ 'blockquote',
|
|
3901 \ 'address',
|
|
3902 \ 'fieldset',
|
|
3903 \ 'table',
|
|
3904 \ 'form',
|
|
3905 \ 'ins',
|
|
3906 \ 'del',
|
|
3907 \ 'script',
|
|
3908 \ 'noscript'
|
|
3909 \ ],
|
|
3910 \ {
|
|
3911 \ 'onmouseover' : [],
|
|
3912 \ 'lang' : [],
|
|
3913 \ 'onmouseout' : [],
|
|
3914 \ 'onmousemove' : [],
|
|
3915 \ 'style' : [],
|
|
3916 \ 'ondblclick' : [],
|
|
3917 \ 'xml:lang' : [],
|
|
3918 \ 'dir' : [
|
|
3919 \ 'ltr',
|
|
3920 \ 'rtl'
|
|
3921 \ ],
|
|
3922 \ 'onkeydown' : [],
|
|
3923 \ 'onkeyup' : [],
|
|
3924 \ 'onkeypress' : [],
|
|
3925 \ 'onmousedown' : [],
|
|
3926 \ 'onmouseup' : [],
|
|
3927 \ 'id' : [],
|
|
3928 \ 'class' : [],
|
|
3929 \ 'title' : [],
|
|
3930 \ 'onclick' : []
|
|
3931 \ }
|
|
3932 \ ],
|
|
3933 \ 'button' : [
|
|
3934 \ [
|
|
3935 \ 'p',
|
|
3936 \ 'h1',
|
|
3937 \ 'h2',
|
|
3938 \ 'h3',
|
|
3939 \ 'h4',
|
|
3940 \ 'h5',
|
|
3941 \ 'h6',
|
|
3942 \ 'div',
|
|
3943 \ 'ul',
|
|
3944 \ 'ol',
|
|
3945 \ 'dl',
|
|
3946 \ 'pre',
|
|
3947 \ 'hr',
|
|
3948 \ 'blockquote',
|
|
3949 \ 'address',
|
|
3950 \ 'table',
|
|
3951 \ 'br',
|
|
3952 \ 'span',
|
|
3953 \ 'bdo',
|
|
3954 \ 'object',
|
|
3955 \ 'img',
|
|
3956 \ 'map',
|
|
3957 \ 'tt',
|
|
3958 \ 'i',
|
|
3959 \ 'b',
|
|
3960 \ 'big',
|
|
3961 \ 'small',
|
|
3962 \ 'em',
|
|
3963 \ 'strong',
|
|
3964 \ 'dfn',
|
|
3965 \ 'code',
|
|
3966 \ 'q',
|
|
3967 \ 'sub',
|
|
3968 \ 'sup',
|
|
3969 \ 'samp',
|
|
3970 \ 'kbd',
|
|
3971 \ 'var',
|
|
3972 \ 'cite',
|
|
3973 \ 'abbr',
|
|
3974 \ 'acronym',
|
|
3975 \ 'ins',
|
|
3976 \ 'del',
|
|
3977 \ 'script',
|
|
3978 \ 'noscript'
|
|
3979 \ ],
|
|
3980 \ {
|
|
3981 \ 'accesskey' : [],
|
|
3982 \ 'disabled' : [
|
|
3983 \ 'disabled'
|
|
3984 \ ],
|
|
3985 \ 'ondblclick' : [],
|
|
3986 \ 'onblur' : [],
|
|
3987 \ 'dir' : [
|
|
3988 \ 'ltr',
|
|
3989 \ 'rtl'
|
|
3990 \ ],
|
|
3991 \ 'onfocus' : [],
|
|
3992 \ 'onkeydown' : [],
|
|
3993 \ 'onkeyup' : [],
|
|
3994 \ 'onmouseup' : [],
|
|
3995 \ 'id' : [],
|
|
3996 \ 'onmouseover' : [],
|
|
3997 \ 'tabindex' : [],
|
|
3998 \ 'lang' : [],
|
|
3999 \ 'value' : [],
|
|
4000 \ 'style' : [],
|
|
4001 \ 'onmousemove' : [],
|
|
4002 \ 'onmouseout' : [],
|
|
4003 \ 'name' : [],
|
|
4004 \ 'xml:lang' : [],
|
|
4005 \ 'onmousedown' : [],
|
|
4006 \ 'onkeypress' : [],
|
|
4007 \ 'type' : [
|
|
4008 \ 'button',
|
|
4009 \ 'submit',
|
|
4010 \ 'reset'
|
|
4011 \ ],
|
|
4012 \ 'onclick' : [],
|
|
4013 \ 'title' : [],
|
|
4014 \ 'class' : []
|
|
4015 \ }
|
|
4016 \ ],
|
|
4017 \ 'optgroup' : [
|
|
4018 \ [
|
|
4019 \ 'option'
|
|
4020 \ ],
|
|
4021 \ {
|
|
4022 \ 'disabled' : [
|
|
4023 \ 'disabled'
|
|
4024 \ ],
|
|
4025 \ 'ondblclick' : [],
|
|
4026 \ 'dir' : [
|
|
4027 \ 'ltr',
|
|
4028 \ 'rtl'
|
|
4029 \ ],
|
|
4030 \ 'onkeydown' : [],
|
|
4031 \ 'onkeyup' : [],
|
|
4032 \ 'onmouseup' : [],
|
|
4033 \ 'id' : [],
|
|
4034 \ 'onmouseover' : [],
|
|
4035 \ 'lang' : [],
|
|
4036 \ 'style' : [],
|
|
4037 \ 'onmousemove' : [],
|
|
4038 \ 'onmouseout' : [],
|
|
4039 \ 'xml:lang' : [],
|
|
4040 \ 'onmousedown' : [],
|
|
4041 \ 'onkeypress' : [],
|
|
4042 \ 'label' : [],
|
|
4043 \ 'onclick' : [],
|
|
4044 \ 'title' : [],
|
|
4045 \ 'class' : []
|
|
4046 \ }
|
|
4047 \ ]
|
|
4048 \ }
|
829
|
4049 "endfunction
|
|
4050 " }}}
|
|
4051 " vim:set foldmethod=marker:
|