/[suikacvs]/markup/html/whatpm/t/content-model-2.dat
Suika

Contents of /markup/html/whatpm/t/content-model-2.dat

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.92 - (show annotations) (download)
Mon Sep 22 06:48:04 2008 UTC (17 years, 11 months ago) by wakaba
Branch: MAIN
Changes since 1.91: +112 -0 lines
++ whatpm/t/ChangeLog	22 Sep 2008 06:43:31 -0000
	* content-model-2.dat: Test data on |for=""| attribute are added.

2008-09-22  Wakaba  <wakaba@suika.fam.cx>

++ whatpm/Whatpm/ContentChecker/ChangeLog	22 Sep 2008 06:43:48 -0000
	* HTML.pm: Support for |for=""| validation.

2008-09-22  Wakaba  <wakaba@suika.fam.cx>

1 #data
2 <unknown u1=""></unknown>
3 #errors
4 /unknown;unknown element;u
5 /unknown/@u1;unknown attribute;u
6
7 #data
8 <unknown u1="" u2=""></unknown>
9 #errors
10 /unknown;unknown element;u
11 /unknown/@u1;unknown attribute;u
12 /unknown/@u2;unknown attribute;u
13
14 #data
15 <unknown u1="" xmlns=""></unknown>
16 #errors
17 /unknown;unknown element;u
18 /unknown/@u1;unknown attribute;u
19
20 #data
21 <unknown xml:lang="!" xmlns=""></unknown>
22 #errors
23 /unknown;unknown element;u
24 /unknown/@lang;langtag:language:nosemantics;m
25 /unknown/@lang;langtag:illegal;m
26
27 #data
28 <unknown u1="" xml:lang="!" xmlns=""></unknown>
29 #errors
30 /unknown;unknown element;u
31 /unknown/@lang;langtag:language:nosemantics;m
32 /unknown/@lang;langtag:illegal;m
33 /unknown/@u1;unknown attribute;u
34
35 #data
36 <unknown u1="" xmlns="http://www.w3.org/1999/xhtml"></unknown>
37 #errors
38 /unknown;element not defined;m
39 /unknown/@u1;attribute not defined;m
40
41 #data
42 <unknown u1="" xml:lang="!" xmlns="http://www.w3.org/1999/xhtml"></unknown>
43 #errors
44 /unknown;element not defined;m
45 /unknown/@lang;langtag:language:nosemantics;m
46 /unknown/@lang;langtag:illegal;m
47 /unknown/@u1;attribute not defined;m
48
49 #data
50 <unknown class="" u1="" xml:lang="!" xmlns="http://www.w3.org/1999/xhtml"></unknown>
51 #errors
52 /unknown;element not defined;m
53 /unknown/@lang;langtag:language:nosemantics;m
54 /unknown/@lang;langtag:illegal;m
55 /unknown/@u1;attribute not defined;m
56
57 #data
58 <p xmlns="http://www.w3.org/1999/xhtml" unknown="">x</p>
59 #errors
60 /p/@unknown;attribute not defined;m
61
62 #data
63 <a xmlns="http://www.w3.org/1999/xhtml" unknown="">x</a>
64 #errors
65 /a/@unknown;attribute not defined;m
66
67 #data
68 <area xmlns="http://www.w3.org/1999/xhtml" unknown="" alt="x" href="" shape="default"></area>
69 #errors
70 /area/@unknown;attribute not defined;m
71
72 #data
73 <meta xmlns="http://www.w3.org/1999/xhtml" name="keywords" content="a" unknown=""/>
74 #errors
75 /meta/@unknown;attribute not defined;m
76
77 #data
78 <p xmlns="http://www.w3.org/1999/xhtml"
79 a:b="" xmlns:a="http://www.example.test/">a</p>
80 #errors
81 /p/@b;unknown attribute;u
82
83 #data
84 <a html:repeat="" html:b=""
85 c="" xmlns:d="http://" d:e="" xmlns:html="http://www.w3.org/1999/xhtml"/>
86 #errors
87 /a;unknown element;u
88 /a/@c;unknown attribute;u
89 /a/@e;unknown attribute;u
90 /a/@b;attribute not defined;m
91 /a/@repeat;repeat:syntax error;m
92
93 #data
94 <p xmlns="http://www.w3.org/1999/xhtml"
95 xmlns:html="http://www.w3.org/1999/xhtml"
96 html:a="">x</p>
97 #errors
98 /p/@a;attribute not defined;m
99
100 #data
101 <meta xmlns="http://www.w3.org/1999/xhtml"
102 xmlns:html="http://www.w3.org/1999/xhtml"
103 html:a=""
104 name="keywords" content="x"/>
105 #errors
106 /meta/@a;attribute not defined;m
107
108 #data
109 <a xmlns="http://www.w3.org/1999/xhtml"
110 xmlns:html="http://www.w3.org/1999/xhtml"
111 html:a=""
112 href="">y</a>
113 #errors
114 /a/@a;attribute not defined;m
115
116 #data
117 <embed xmlns="http://www.w3.org/1999/xhtml"
118 xmlns:html="http://www.w3.org/1999/xhtml"
119 html:a=""
120 src=""/>
121 #errors
122 /embed/@a;attribute not defined;m
123
124 #data
125 <area xmlns="http://www.w3.org/1999/xhtml"
126 xmlns:html="http://www.w3.org/1999/xhtml"
127 html:a=""
128 href="" shape="default" alt="x"/>
129 #errors
130 /area/@a;attribute not defined;m
131
132 #data
133 <p xmlns="http://www.w3.org/1999/xhtml"
134 id="">a</p>
135 #errors
136 /p/@id;empty attribute value;m
137
138 #data
139 <p xmlns="http://www.w3.org/1999/xhtml"
140 id="a">a</p>
141 #errors
142
143 #data
144 <p xmlns="http://www.w3.org/1999/xhtml"
145 id=" ">a</p>
146 #errors
147 /p/@id;space in ID;m
148
149 #data
150 <p xmlns="http://www.w3.org/1999/xhtml"
151 id="&#x9;">a</p>
152 #errors
153 /p/@id;space in ID;m
154
155 #data
156 <p xmlns="http://www.w3.org/1999/xhtml"
157 id="&#xA;">a</p>
158 #errors
159 /p/@id;space in ID;m
160
161 #data
162 <?xml version="1.1"?>
163 <p xmlns="http://www.w3.org/1999/xhtml"
164 id="&#xB;">a</p>
165 #errors
166 /p/@id;space in ID;m
167
168 #data
169 <?xml version="1.1"?>
170 <p xmlns="http://www.w3.org/1999/xhtml"
171 id="&#xC;">a</p>
172 #errors
173 /p/@id;space in ID;m
174
175 #data
176 <p xmlns="http://www.w3.org/1999/xhtml"
177 id="&#xD;">a</p>
178 #errors
179 /p/@id;space in ID;m
180
181 #data
182 <p xmlns="http://www.w3.org/1999/xhtml"
183 id="a ">a</p>
184 #errors
185 /p/@id;space in ID;m
186
187 #data
188 <p xmlns="http://www.w3.org/1999/xhtml"
189 id="a b">a</p>
190 #errors
191 /p/@id;space in ID;m
192
193 #data
194 <p xmlns="http://www.w3.org/1999/xhtml"
195 id="aaaaaaa">a</p>
196 #errors
197
198 #data
199 <p xmlns="http://www.w3.org/1999/xhtml"
200 id="a"><span id="a">a</span></p>
201 #errors
202 /p/span/@id;duplicate ID;m
203
204 #data
205 <p xmlns="http://www.w3.org/1999/xhtml"
206 id="a b"><span id="a b">x</span></p>
207 #errors
208 /p/@id;space in ID;m
209 /p/span/@id;duplicate ID;m
210 /p/span/@id;space in ID;m
211
212 #data
213 <p xmlns="http://www.w3.org/1999/xhtml"
214 id=""><span id="">x</span></p>
215 #errors
216 /p/@id;empty attribute value;m
217 /p/span/@id;empty attribute value;m
218
219 #data
220 <p xmlns="http://www.w3.org/1999/xhtml">
221 <span id="a">x</span>
222 <span id="b">x</span>
223 <span id="c">x</span>
224 </p>
225 #errors
226
227 #data
228 <p xmlns="http://www.w3.org/1999/xhtml">
229 <span id="a ">x</span>
230 <span id=" a">x</span>
231 <span id=" a ">x</span>
232 </p>
233 #errors
234 /p/span/@id;space in ID;m
235 /p/span/@id;space in ID;m
236 /p/span/@id;space in ID;m
237
238 #data
239 <p xmlns="http://www.w3.org/1999/xhtml">
240 <span id="i">x</span>
241 <span id="I">x</span>
242 <span id="&#x0131;">x</span>
243 </p>
244 #errors
245
246 #data
247 <?xml version="1.1"?>
248 <p id="a&#xb;" xmlns="http://www.w3.org/1999/xhtml">x</p>
249 #errors
250
251 #data
252 <?xml version="1.1"?>
253 <p id="&#xb;b" xmlns="http://www.w3.org/1999/xhtml">x</p>
254 #errors
255
256 #data
257 <?xml version="1.1"?>
258 <p id="a&#xb;b" xmlns="http://www.w3.org/1999/xhtml">x</p>
259 #errors
260
261 #data
262 <?xml version="1.1"?>
263 <map name="a&#xb;b" id="a&#xb;b" xmlns="http://www.w3.org/1999/xhtml">x</map>
264 #errors
265
266 #data
267 <?xml version="1.1"?>
268 <menu id="a&#xb;" xmlns="http://www.w3.org/1999/xhtml">x</menu>
269 #errors
270
271 #data
272 <p title="" xmlns="http://www.w3.org/1999/xhtml">x</p>
273 #errors
274
275 #data
276 <p title="a" xmlns="http://www.w3.org/1999/xhtml">x</p>
277 #errors
278
279 #data
280 <p title="AAAAAA" xmlns="http://www.w3.org/1999/xhtml">x</p>
281 #errors
282
283 #data
284 <p title="XXXX&#x0A;YYYY" xmlns="http://www.w3.org/1999/xhtml">x</p>
285 #errors
286
287 #data
288 <p title="" xmlns="http://www.w3.org/1999/xhtml">x</p>
289 #errors
290
291 #data
292 <p title="AAA" xmlns="http://www.w3.org/1999/xhtml">
293 <span title="BBB">x</span>
294 </p>
295 #errors
296
297 #data
298 <p lang="" xmlns="http://www.w3.org/1999/xhtml">x</p>
299 #errors
300
301 #data
302 <p xml:lang="" xmlns="http://www.w3.org/1999/xhtml">x</p>
303 #errors
304
305 #data html
306 <!DOCTYPE HTML><title>x</title><p xml:lang="">x</p>
307 #errors
308 /html/body/p/@xml:lang;in HTML:xml:lang;i
309 /html/body/p/@xml:lang;xml:lang not allowed;m
310
311 #data html
312 <!DOCTYPE HTML><title>x</title><p xml:lang lang>x
313 #errors
314 /html/body/p/@xml:lang;in HTML:xml:lang;i
315
316 #data html
317 <!DOCTYPE HTML><title>x</title><p xml:lang=ja lang=ja>x
318 #errors
319 /html/body/p/@xml:lang;in HTML:xml:lang;i
320
321 #data html
322 <!DOCTYPE HTML><title>x</title><p xml:lang=en lang=EN>x
323 #errors
324 /html/body/p/@xml:lang;in HTML:xml:lang;i
325 /html/body/p/@lang;langtag:language:case;w
326
327 #data html
328 <!DOCTYPE HTML><title>x</title><p xml:lang=En lang=en>x
329 #errors
330 /html/body/p/@xml:lang;in HTML:xml:lang;i
331
332 #data html
333 <!DOCTYPE HTML><title>x</title><p xml:lang=ja lang=en>x
334 #errors
335 /html/body/p/@xml:lang;in HTML:xml:lang;i
336 /html/body/p/@xml:lang;xml:lang ne lang;m
337
338 #data html
339 <!DOCTYPE HTML><title>x</title><p xml:lang="&#x130;t" lang=it>x
340 #errors
341 /html/body/p/@xml:lang;in HTML:xml:lang;i
342 /html/body/p/@xml:lang;xml:lang ne lang;m
343
344 #data html
345 <!DOCTYPE HTML><title>x</title><p lang="&#x130;t" xml:lang=it>x
346 #errors
347 /html/body/p/@xml:lang;in HTML:xml:lang;i
348 /html/body/p/@xml:lang;xml:lang ne lang;m
349 /html/body/p/@lang;langtag:illegal;m
350 /html/body/p/@lang;langtag:language:nosemantics;m
351
352 #data html
353 <!DOCTYPE HTML><title>x</title><p xml:lang="&#x131;t" lang=it>x
354 #errors
355 /html/body/p/@xml:lang;in HTML:xml:lang;i
356 /html/body/p/@xml:lang;xml:lang ne lang;m
357
358 #data html
359 <!DOCTYPE HTML><title>x</title><p lang="&#x131;t" xml:lang=it>x
360 #errors
361 /html/body/p/@xml:lang;in HTML:xml:lang;i
362 /html/body/p/@xml:lang;xml:lang ne lang;m
363 /html/body/p/@lang;langtag:illegal;m
364 /html/body/p/@lang;langtag:language:nosemantics;m
365
366 #data html
367 <!DOCTYPE HTML><title>x</title><p xml:lang=en- lang=en->x
368 #errors
369 /html/body/p/@xml:lang;in HTML:xml:lang;i
370 /html/body/p/@lang;langtag:illegal;m
371
372 #data html
373 <!DOCTYPE HTML><title>x</title><p xml:lang=en lang>x
374 #errors
375 /html/body/p/@xml:lang;in HTML:xml:lang;i
376 /html/body/p/@xml:lang;xml:lang ne lang;m
377
378 #data
379 <p xml:lang="" lang="" xmlns="http://www.w3.org/1999/xhtml">x</p>
380 #errors
381
382 #data
383 <p xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">x</p>
384 #errors
385
386 #data
387 <p xml:lang="en" lang="EN" xmlns="http://www.w3.org/1999/xhtml">x</p>
388 #errors
389 /p/@lang;langtag:language:case;w
390
391 #data
392 <p xml:lang="eN" lang="en" xmlns="http://www.w3.org/1999/xhtml">x</p>
393 #errors
394 /p/@lang;langtag:language:case;w
395
396 #data
397 <p xml:lang="en" lang="ja" xmlns="http://www.w3.org/1999/xhtml">x</p>
398 #errors
399 /p/@lang;xml:lang ne lang;m
400
401 #data
402 <p xml:lang="it" lang="&#x130;t" xmlns="http://www.w3.org/1999/xhtml">x</p>
403 #errors
404 /p/@lang;xml:lang ne lang;m
405 /p/@lang;langtag:illegal;m
406 /p/@lang;langtag:language:nosemantics;m
407
408 #data
409 <p lang="it" xml:lang="&#x130;t" xmlns="http://www.w3.org/1999/xhtml">x</p>
410 #errors
411 /p/@lang;xml:lang ne lang;m
412 /p/@lang;langtag:illegal;m
413 /p/@lang;langtag:language:nosemantics;m
414
415 #data
416 <p xml:lang="it" lang="&#x131;t" xmlns="http://www.w3.org/1999/xhtml">x</p>
417 #errors
418 /p/@lang;xml:lang ne lang;m
419 /p/@lang;langtag:illegal;m
420 /p/@lang;langtag:language:nosemantics;m
421
422 #data
423 <p lang="it" xml:lang="&#x131;t" xmlns="http://www.w3.org/1999/xhtml">x</p>
424 #errors
425 /p/@lang;xml:lang ne lang;m
426 /p/@lang;langtag:illegal;m
427 /p/@lang;langtag:language:nosemantics;m
428
429 #data
430 <p xml:lang="" lang="en" xmlns="http://www.w3.org/1999/xhtml">x</p>
431 #errors
432 /p/@lang;xml:lang ne lang;m
433
434 #data
435 <p xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">x</p>
436 #errors
437
438 #data
439 <p lang="en" xmlns="http://www.w3.org/1999/xhtml">x</p>
440 #errors
441
442 #data
443 <p dir="" xmlns="http://www.w3.org/1999/xhtml">x</p>
444 #errors
445 /p/@dir;enumerated:invalid;m
446
447 #data
448 <p dir="ltr" xmlns="http://www.w3.org/1999/xhtml">x</p>
449 #errors
450
451 #data
452 <p dir=" ltr" xmlns="http://www.w3.org/1999/xhtml">x</p>
453 #errors
454 /p/@dir;enumerated:invalid;m
455
456 #data
457 <p dir="ltr " xmlns="http://www.w3.org/1999/xhtml">x</p>
458 #errors
459 /p/@dir;enumerated:invalid;m
460
461 #data
462 <!DOCTYPE p [<!ATTLIST p dir (ltr|rtl) #IMPLIED>]>
463 <p dir="ltr " xmlns="http://www.w3.org/1999/xhtml">x</p>
464 #errors
465
466 #data
467 <?xml version="1.1"?>
468 <!DOCTYPE p [<!ATTLIST p dir (ltr|rtl) #IMPLIED>]>
469 <p dir="ltr&#x0C;" xmlns="http://www.w3.org/1999/xhtml">x</p>
470 #errors
471 /p/@dir;enumerated:invalid;m
472
473 #data
474 <p dir="LTR" xmlns="http://www.w3.org/1999/xhtml">x</p>
475 #errors
476
477 #data
478 <p dir="LtR" xmlns="http://www.w3.org/1999/xhtml">x</p>
479 #errors
480
481 #data
482 <p dir="rtl" xmlns="http://www.w3.org/1999/xhtml">x</p>
483 #errors
484
485 #data
486 <p dir="Rtl" xmlns="http://www.w3.org/1999/xhtml">x</p>
487 #errors
488
489 #data
490 <p dir="rtltr" xmlns="http://www.w3.org/1999/xhtml">x</p>
491 #errors
492 /p/@dir;enumerated:invalid;m
493
494 #data
495 <p dir="XXXXXX" xmlns="http://www.w3.org/1999/xhtml">x</p>
496 #errors
497 /p/@dir;enumerated:invalid;m
498
499 #data
500 <p class="" xmlns="http://www.w3.org/1999/xhtml">x</p>
501 #errors
502
503 #data
504 <p class=" " xmlns="http://www.w3.org/1999/xhtml">x</p>
505 #errors
506
507 #data
508 <?xml version="1.1"?>
509 <p class="&#xD;&#xB;" xmlns="http://www.w3.org/1999/xhtml">x</p>
510 #errors
511
512 #data
513 <p class="a b c d ef g h" xmlns="http://www.w3.org/1999/xhtml">x</p>
514 #errors
515
516 #data
517 <?xml version="1.1"?>
518 <p class=" a b c d &#xC; efg h &#xC;" xmlns="http://www.w3.org/1999/xhtml">x</p>
519 #errors
520
521 #data
522 <p class="a a" xmlns="http://www.w3.org/1999/xhtml">x</p>
523 #errors
524 /p/@class;duplicate token;m
525
526 #data
527 <?xml version="1.1"?>
528 <p class=" aa&#xC; aa" xmlns="http://www.w3.org/1999/xhtml">x</p>
529 #errors
530 /p/@class;duplicate token;m
531
532 #data
533 <p class="a a a" xmlns="http://www.w3.org/1999/xhtml">x</p>
534 #errors
535 /p/@class;duplicate token;m
536 /p/@class;duplicate token;m
537
538 #data
539 <p class="I i &#x0131;" xmlns="http://www.w3.org/1999/xhtml">x</p>
540 #errors
541
542 #data
543 <?xml version="1.1"?>
544 <p class="a &#x000b;a" xmlns="http://www.w3.org/1999/xhtml">x</p>
545 #errors
546
547 #data
548 <?xml version="1.1"?>
549 <p class="a a&#x000b;" xmlns="http://www.w3.org/1999/xhtml">x</p>
550 #errors
551
552 #data
553 <?xml version="1.1"?>
554 <p class="&#x000b;a a" xmlns="http://www.w3.org/1999/xhtml">x</p>
555 #errors
556
557 #data
558 <p style="" xmlns="http://www.w3.org/1999/xhtml">x</p>
559 #errors
560 /p/@style;SUBDOC
561
562 #data
563 <p style="color:blue" xmlns="http://www.w3.org/1999/xhtml">x</p>
564 #errors
565 /p/@style;SUBDOC
566
567 #data
568 <p contenteditable="" xmlns="http://www.w3.org/1999/xhtml">x</p>
569 #errors
570
571 #data
572 <p contenteditable="true" xmlns="http://www.w3.org/1999/xhtml">x</p>
573 #errors
574
575 #data
576 <p contenteditable="TruE" xmlns="http://www.w3.org/1999/xhtml">x</p>
577 #errors
578
579 #data
580 <p contenteditable="false" xmlns="http://www.w3.org/1999/xhtml">x</p>
581 #errors
582
583 #data
584 <p contenteditable="False" xmlns="http://www.w3.org/1999/xhtml">x</p>
585 #errors
586
587 #data
588 <p contenteditable="none" xmlns="http://www.w3.org/1999/xhtml">x</p>
589 #errors
590 /p/@contenteditable;enumerated:invalid;m
591
592 #data
593 <p contenteditable="true " xmlns="http://www.w3.org/1999/xhtml">x</p>
594 #errors
595 /p/@contenteditable;enumerated:invalid;m
596
597 #data
598 <p contenteditable="yes" xmlns="http://www.w3.org/1999/xhtml">x</p>
599 #errors
600 /p/@contenteditable;enumerated:invalid;m
601
602 #data
603 <p contenteditable="contenteditable" xmlns="http://www.w3.org/1999/xhtml">x</p>
604 #errors
605 /p/@contenteditable;enumerated:invalid;m
606
607 #data
608 <p contenteditable="inherit" xmlns="http://www.w3.org/1999/xhtml">x</p>
609 #errors
610 /p/@contenteditable;enumerated:invalid;m
611
612 #data
613 <p contenteditable="yes" xmlns="http://www.w3.org/1999/xhtml">x</p>
614 #errors
615 /p/@contenteditable;enumerated:invalid;m
616
617 #data
618 <p contentEditable="" xmlns="http://www.w3.org/1999/xhtml">x</p>
619 #errors
620 /p/@contentEditable;attribute not defined;m
621
622 #data
623 <p irrelevant="" xmlns="http://www.w3.org/1999/xhtml">x</p>
624 #errors
625 /p/@irrelevant;attribute not defined;m
626
627 #data
628 <p irrelevant=" " xmlns="http://www.w3.org/1999/xhtml">x</p>
629 #errors
630 /p/@irrelevant;boolean:invalid;m
631 /p/@irrelevant;attribute not defined;m
632
633 #data
634 <p irrelevant="irrelevant" xmlns="http://www.w3.org/1999/xhtml">x</p>
635 #errors
636 /p/@irrelevant;attribute not defined;m
637
638 #data
639 <p irrelevant=" irrelevant" xmlns="http://www.w3.org/1999/xhtml">x</p>
640 #errors
641 /p/@irrelevant;boolean:invalid;m
642 /p/@irrelevant;attribute not defined;m
643
644 #data
645 <p irrelevant="irrelevant " xmlns="http://www.w3.org/1999/xhtml">x</p>
646 #errors
647 /p/@irrelevant;boolean:invalid;m
648 /p/@irrelevant;attribute not defined;m
649
650 #data
651 <p irrelevant=" irrelevant " xmlns="http://www.w3.org/1999/xhtml">x</p>
652 #errors
653 /p/@irrelevant;boolean:invalid;m
654 /p/@irrelevant;attribute not defined;m
655
656 #data
657 <p irrelevant="Irrelevant" xmlns="http://www.w3.org/1999/xhtml">x</p>
658 #errors
659 /p/@irrelevant;attribute not defined;m
660
661 #data
662 <p irrelevant="IRRELEVANT" xmlns="http://www.w3.org/1999/xhtml">x</p>
663 #errors
664 /p/@irrelevant;attribute not defined;m
665
666 #data
667 <p irrelevant="relevant" xmlns="http://www.w3.org/1999/xhtml">x</p>
668 #errors
669 /p/@irrelevant;boolean:invalid;m
670 /p/@irrelevant;attribute not defined;m
671
672 #data
673 <p irrelevant="irelevant" xmlns="http://www.w3.org/1999/xhtml">x</p>
674 #errors
675 /p/@irrelevant;boolean:invalid;m
676 /p/@irrelevant;attribute not defined;m
677
678 #data
679 <p irrelevant="irrelevants" xmlns="http://www.w3.org/1999/xhtml">x</p>
680 #errors
681 /p/@irrelevant;boolean:invalid;m
682 /p/@irrelevant;attribute not defined;m
683
684 #data
685 <p irrelevant="false" xmlns="http://www.w3.org/1999/xhtml">x</p>
686 #errors
687 /p/@irrelevant;boolean:invalid;m
688 /p/@irrelevant;attribute not defined;m
689
690 #data
691 <p irrelevant="true" xmlns="http://www.w3.org/1999/xhtml">x</p>
692 #errors
693 /p/@irrelevant;boolean:invalid;m
694 /p/@irrelevant;attribute not defined;m
695
696 #data
697 <p irrelevant="yes" xmlns="http://www.w3.org/1999/xhtml">x</p>
698 #errors
699 /p/@irrelevant;boolean:invalid;m
700 /p/@irrelevant;attribute not defined;m
701
702 #data
703 <p irrelevant="on" xmlns="http://www.w3.org/1999/xhtml">x</p>
704 #errors
705 /p/@irrelevant;boolean:invalid;m
706 /p/@irrelevant;attribute not defined;m
707
708 #data
709 <p hidden="" xmlns="http://www.w3.org/1999/xhtml">x</p>
710 #errors
711
712 #data
713 <p hidden=" " xmlns="http://www.w3.org/1999/xhtml">x</p>
714 #errors
715 /p/@hidden;boolean:invalid;m
716
717 #data
718 <p hidden="hidden" xmlns="http://www.w3.org/1999/xhtml">x</p>
719 #errors
720
721 #data
722 <p hidden="irrelevant" xmlns="http://www.w3.org/1999/xhtml">x</p>
723 #errors
724 /p/@hidden;boolean:invalid;m
725
726 #data
727 <p hidden=" hidden" xmlns="http://www.w3.org/1999/xhtml">x</p>
728 #errors
729 /p/@hidden;boolean:invalid;m
730
731 #data
732 <p hidden="hidden " xmlns="http://www.w3.org/1999/xhtml">x</p>
733 #errors
734 /p/@hidden;boolean:invalid;m
735
736 #data
737 <p hidden=" hidden " xmlns="http://www.w3.org/1999/xhtml">x</p>
738 #errors
739 /p/@hidden;boolean:invalid;m
740
741 #data
742 <p hidden="Hidden" xmlns="http://www.w3.org/1999/xhtml">x</p>
743 #errors
744
745 #data
746 <p hidden="HIDDEN" xmlns="http://www.w3.org/1999/xhtml">x</p>
747 #errors
748
749 #data
750 <p hidden="shown" xmlns="http://www.w3.org/1999/xhtml">x</p>
751 #errors
752 /p/@hidden;boolean:invalid;m
753
754 #data
755 <p hidden="hide" xmlns="http://www.w3.org/1999/xhtml">x</p>
756 #errors
757 /p/@hidden;boolean:invalid;m
758
759 #data
760 <p hidden="false" xmlns="http://www.w3.org/1999/xhtml">x</p>
761 #errors
762 /p/@hidden;boolean:invalid;m
763
764 #data
765 <p hidden="true" xmlns="http://www.w3.org/1999/xhtml">x</p>
766 #errors
767 /p/@hidden;boolean:invalid;m
768
769 #data
770 <p hidden="yes" xmlns="http://www.w3.org/1999/xhtml">x</p>
771 #errors
772 /p/@hidden;boolean:invalid;m
773
774 #data
775 <p hidden="on" xmlns="http://www.w3.org/1999/xhtml">x</p>
776 #errors
777 /p/@hidden;boolean:invalid;m
778
779 #data
780 <p tabindex="-1" xmlns="http://www.w3.org/1999/xhtml">x</p>
781 #errors
782
783 #data
784 <p tabindex="0" xmlns="http://www.w3.org/1999/xhtml">x</p>
785 #errors
786
787 #data
788 <p tabindex="1" xmlns="http://www.w3.org/1999/xhtml">x</p>
789 #errors
790
791 #data
792 <p tabindex="10000" xmlns="http://www.w3.org/1999/xhtml">x</p>
793 #errors
794
795 #data
796 <p tabindex="1.0" xmlns="http://www.w3.org/1999/xhtml">x</p>
797 #errors
798 /p/@tabindex;integer:syntax error;m
799
800 #data
801 <p tabindex="+1" xmlns="http://www.w3.org/1999/xhtml">x</p>
802 #errors
803 /p/@tabindex;integer:syntax error;m
804
805 #data
806 <p tabindex="1 " xmlns="http://www.w3.org/1999/xhtml">x</p>
807 #errors
808 /p/@tabindex;integer:syntax error;m
809
810 #data
811 <p tabindex="+1" xmlns="http://www.w3.org/1999/xhtml">x</p>
812 #errors
813 /p/@tabindex;integer:syntax error;m
814
815 #data
816 <p onabort="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
817 #errors
818 /p/@onabort;event handler;u
819
820 #data
821 <p onbeforeunload="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
822 #errors
823 /p/@onbeforeunload;event handler;u
824
825 #data
826 <p onblur="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
827 #errors
828 /p/@onblur;event handler;u
829
830 #data
831 <p onchange="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
832 #errors
833 /p/@onchange;event handler;u
834
835 #data
836 <p onclick="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
837 #errors
838 /p/@onclick;event handler;u
839
840 #data
841 <p onstorage="" xmlns="http://www.w3.org/1999/xhtml">x</p>
842 #errors
843 /p/@onstorage;event handler;u
844
845 #data
846 <unknown onstorage="" xmlns="http://www.w3.org/1999/xhtml">x</unknown>
847 #errors
848 /unknown;element not defined;m
849 /unknown/@onstorage;event handler;u
850
851 #data
852 <p onxxxx="alert(1);" xmlns="http://www.w3.org/1999/xhtml">x</p>
853 #errors
854 /p/@onxxxx;attribute not defined;m
855
856 #data html
857 <!DOCTYPE html>
858 <html>
859 <head><title>x</title></head>
860 <body></body>
861 </html>
862 #errors
863 /html/body;no significant content;s
864
865 #data
866 <html xmlns="http://www.w3.org/1999/xhtml"
867 manifest="http://www.example.com/">
868 <head><title>a</title></head>
869 <body><p>a</p></body>
870 </html>
871 #errors
872
873 #data
874 <html xmlns="http://www.w3.org/1999/xhtml"
875 manifest="[http://www.example.com/]">
876 <head><title>a</title></head>
877 <body><p>a</p></body>
878 </html>
879 #errors
880 /html/@manifest;syntax error:iriref3987;m
881
882 #data
883 <html xmlns="http://www.w3.org/1999/xhtml"
884 manifest=" ">
885 <head><title>a</title></head>
886 <body><p>a</p></body>
887 </html>
888 #errors
889 /html/@manifest;syntax error:iriref3987;m
890
891 #data
892 <html xmlns="http://www.w3.org/1999/xhtml"
893 application="http://www.example.com/">
894 <head><title>a</title></head>
895 <body><p>a</p></body>
896 </html>
897 #errors
898 /html/@application;attribute not defined;m
899
900 #data html
901 <!DOCTYPE html>
902 <html xmlns="http://www.w3.org/1999/xhtml">
903 <head><title>x</title></head>
904 <body></body>
905 </html>
906 #errors
907 /html/body;no significant content;s
908
909 #data html
910 <!DOCTYPE html>
911 <html xmlns="">
912 <head><title>x</title></head>
913 <body></body>
914 </html>
915 #errors
916 /html/@xmlns;invalid attribute value;m
917 /html/body;no significant content;s
918
919 #data html
920 <!DOCTYPE html>
921 <html xmlns="http://www.w3.org/TR/xhtml1/strict">
922 <head><title>x</title></head>
923 <body></body>
924 </html>
925 #errors
926 /html/@xmlns;invalid attribute value;m
927 /html/body;no significant content;s
928
929 #data html
930 <!DOCTYPE html>
931 <html xmlns="http://www.w3.org/TR/REC-html40">
932 <head><title>x</title></head>
933 <body></body>
934 </html>
935 #errors
936 /html/@xmlns;invalid attribute value;m
937 /html/body;no significant content;s
938
939 #data html
940 <!DOCTYPE html>
941 <html xmlns=" http://www.w3.org/1999/xhtml ">
942 <head><title>x</title></head>
943 <body></body>
944 </html>
945 #errors
946 /html/@xmlns;invalid attribute value;m
947 /html/body;no significant content;s
948
949 #data html
950 <!DOCTYPE html>
951 <html xmlns="http://www.w3.org/1999/XHTML">
952 <head><title>x</title></head>
953 <body></body>
954 </html>
955 #errors
956 /html/@xmlns;invalid attribute value;m
957 /html/body;no significant content;s
958
959 #data html
960 <!DOCTYPE html>
961 <html xmlns="http://www.w3.org/1999/html">
962 <head><title>x</title></head>
963 <body></body>
964 </html>
965 #errors
966 /html/@xmlns;invalid attribute value;m
967 /html/body;no significant content;s
968
969 #data
970 <html xmlns="http://www.w3.org/1999/xhtml">
971 <head><title>x</title></head>
972 <body></body>
973 </html>
974 #errors
975 /html/body;no significant content;s
976
977 #data
978 <html xmlns="http://www.w3.org/1999/xhtml ">
979 <head><title>x</title></head>
980 <body></body>
981 </html>
982 #errors
983 /html;unknown element;u
984 /html/head;unknown element;u
985 /html/head/title;unknown element;u
986 /html/body;unknown element;u
987
988 #data html
989 <!DOCTYPE html>
990 <html>
991 <head xmlns="http://www.w3.org/1999/xhtml"><title>x</title></head>
992 <body></body>
993 </html>
994 #errors
995 /html/body;no significant content;s
996
997 #data html
998 <!DOCTYPE HTML>
999 <title>x</title>
1000 <p xmlns="http://www.w3.org/1999/xhtml">x</p>
1001 #errors
1002
1003 #data html
1004 <!DOCTYPE HTML>
1005 <title>x</title>
1006 <p xmlns="">x</p>
1007 #errors
1008 /html/body/p/@xmlns;invalid attribute value;m
1009
1010 #data html
1011 <!DOCTYPE HTML>
1012 <title>x</title>
1013 <unknown xmlns="http://www.w3.org/1999/xhtml">x</unknown>
1014 #errors
1015 /html/body/unknown;element not defined;m
1016 /html/body/unknown;element not allowed:flow;m
1017
1018 #data html
1019 <!DOCTYPE HTML>
1020 <title>x</title>
1021 <unknown xmlns="http://www.w3.org/1999/html">x</unknown>
1022 #errors
1023 /html/body/unknown/@xmlns;invalid attribute value;m
1024 /html/body/unknown;element not defined;m
1025 /html/body/unknown;element not allowed:flow;m
1026
1027 #data html
1028 <!DOCTYPE HTML>
1029 <title>x</title>
1030 <svg>
1031 <title>
1032 <p xmlns="http://www.w3.org/1999/xhtml">x</p>
1033 </title>
1034 </svg>
1035 #errors
1036 /html/body/svg;unknown element;u
1037 /html/body/svg/title;unknown element;u
1038
1039 #data html
1040 <!DOCTYPE HTML>
1041 <title>x</title>
1042 <svg>
1043 <title>
1044 <p xmlns="">x</p>
1045 </title>
1046 </svg>
1047 #errors
1048 /html/body/svg;unknown element;u
1049 /html/body/svg/title;unknown element;u
1050 /html/body/svg/title/p/@xmlns;invalid attribute value;m
1051
1052 #data html
1053 <!DOCTYPE HTML>
1054 <title>x</title>
1055 <svg>
1056 <title>
1057 <div><p xmlns="">x</p></div>
1058 </title>
1059 </svg>
1060 #errors
1061 /html/body/svg;unknown element;u
1062 /html/body/svg/title;unknown element;u
1063 /html/body/svg/title/div/p/@xmlns;invalid attribute value;m
1064
1065 #data
1066 <html xmlns="http://www.w3.org/1999/xhtml" version="">
1067 <head><title>x</title></head>
1068 <body>y</body>
1069 </html>
1070 #errors
1071 /html/@version;attribute not defined;m
1072
1073 #data
1074 <html xmlns="http://www.w3.org/1999/xhtml" version="-//W3C//DTD HTML 4.01//EN">
1075 <head><title>x</title></head>
1076 <body>y</body>
1077 </html>
1078 #errors
1079 /html/@version;attribute not defined;m
1080
1081 #data
1082 <head profile="" xmlns="http://www.w3.org/1999/xhtml">
1083 <title/>
1084 </head>
1085 #errors
1086 /head/@profile;attribute not defined;m
1087
1088 #data
1089 <head profile="http://www.test/" xmlns="http://www.w3.org/1999/xhtml">
1090 <title/>
1091 </head>
1092 #errors
1093 /head/@profile;attribute not defined;m
1094
1095 #data
1096 <head profile="http://www.test/ http://www.test/2" xmlns="http://www.w3.org/1999/xhtml">
1097 <title/>
1098 </head>
1099 #errors
1100 /head/@profile;attribute not defined;m
1101
1102 #data
1103 <head profile="[]" xmlns="http://www.w3.org/1999/xhtml">
1104 <title/>
1105 </head>
1106 #errors
1107 /head/@profile;attribute not defined;m
1108 /head/@profile;syntax error:iriref3987;m
1109
1110 #data
1111 <base xmlns="http://www.w3.org/1999/xhtml"/>
1112 #errors
1113 /base;attribute missing:href|target;m
1114
1115 #data
1116 <base title="" xmlns="http://www.w3.org/1999/xhtml"/>
1117 #errors
1118 /base;attribute missing:href|target;m
1119
1120 #data
1121 <base href="http://[test]/" xmlns="http://www.w3.org/1999/xhtml"/>
1122 #errors
1123 /base/@href;syntax error:iriref3987;m
1124
1125 #data
1126 <base href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
1127 #errors
1128
1129 #data
1130 <base href="test" xmlns="http://www.w3.org/1999/xhtml"/>
1131 #errors
1132
1133 #data
1134 <base href="http://test/#a" xmlns="http://www.w3.org/1999/xhtml"/>
1135 #errors
1136
1137 #data
1138 <base href="http://test/" target="_self" xmlns="http://www.w3.org/1999/xhtml"/>
1139 #errors
1140
1141 #data
1142 <base target="" xmlns="http://www.w3.org/1999/xhtml"/>
1143 #errors
1144 /base/@target;window name:empty;m
1145
1146 #data
1147 <base target="_" xmlns="http://www.w3.org/1999/xhtml"/>
1148 #errors
1149 /base/@target;window name:reserved;m
1150
1151 #data
1152 <base target="_self" xmlns="http://www.w3.org/1999/xhtml"/>
1153 #errors
1154
1155 #data
1156 <base target="_Self" xmlns="http://www.w3.org/1999/xhtml"/>
1157 #errors
1158
1159 #data
1160 <base target="_blank" xmlns="http://www.w3.org/1999/xhtml"/>
1161 #errors
1162
1163 #data
1164 <base target="_parent" xmlns="http://www.w3.org/1999/xhtml"/>
1165 #errors
1166
1167 #data
1168 <base target="_top" xmlns="http://www.w3.org/1999/xhtml"/>
1169 #errors
1170
1171 #data
1172 <base target="_main" xmlns="http://www.w3.org/1999/xhtml"/>
1173 #errors
1174 /base/@target;window name:reserved;m
1175
1176 #data
1177 <base target="_content" xmlns="http://www.w3.org/1999/xhtml"/>
1178 #errors
1179 /base/@target;window name:reserved;m
1180
1181 #data
1182 <base target="_unknown" xmlns="http://www.w3.org/1999/xhtml"/>
1183 #errors
1184 /base/@target;window name:reserved;m
1185
1186 #data
1187 <base target="blank" xmlns="http://www.w3.org/1999/xhtml"/>
1188 #errors
1189
1190 #data
1191 <head xmlns="http://www.w3.org/1999/xhtml">
1192 <link rel="stylesheet" href=""/>
1193 <base href=""/>
1194 <title/>
1195 </head>
1196 #errors
1197 /head/base;basehref after URL attribute;m
1198
1199 #data
1200 <head xmlns="http://www.w3.org/1999/xhtml">
1201 <base href=""/>
1202 <link rel="stylesheet" href=""/>
1203 <title/>
1204 </head>
1205 #errors
1206
1207 #data
1208 <head xmlns="http://www.w3.org/1999/xhtml">
1209 <link rel="stylesheet" href=""/>
1210 <base target="_self"/>
1211 <title/>
1212 </head>
1213 #errors
1214
1215 #data
1216 <head xmlns="http://www.w3.org/1999/xhtml">
1217 <base target="_self"/>
1218 <link rel="stylesheet" href=""/>
1219 <title/>
1220 </head>
1221 #errors
1222
1223 #data
1224 <head xmlns="http://www.w3.org/1999/xhtml">
1225 <link rel="stylesheet" href=""/>
1226 <base target="_self" href=""/>
1227 <title/>
1228 </head>
1229 #errors
1230 /head/base;basehref after URL attribute;m
1231
1232 #data
1233 <head xmlns="http://www.w3.org/1999/xhtml">
1234 <base target="_self" href=""/>
1235 <link rel="stylesheet" href=""/>
1236 <title/>
1237 </head>
1238 #errors
1239
1240 #data
1241 <head xmlns="http://www.w3.org/1999/xhtml">
1242 <link rel="up" href=""/>
1243 <base href=""/>
1244 <title/>
1245 </head>
1246 #errors
1247 /head/base;basehref after URL attribute;m
1248
1249 #data
1250 <head xmlns="http://www.w3.org/1999/xhtml">
1251 <base href=""/>
1252 <link rel="up" href=""/>
1253 <title/>
1254 </head>
1255 #errors
1256
1257 #data
1258 <head xmlns="http://www.w3.org/1999/xhtml">
1259 <link rel="up" href=""/>
1260 <base target="_self"/>
1261 <title/>
1262 </head>
1263 #errors
1264 /head/base;basetarget after hyperlink;m
1265
1266 #data
1267 <head xmlns="http://www.w3.org/1999/xhtml">
1268 <base target="_self"/>
1269 <link rel="up" href=""/>
1270 <title/>
1271 </head>
1272 #errors
1273
1274 #data
1275 <head xmlns="http://www.w3.org/1999/xhtml">
1276 <link rel="up" href=""/>
1277 <base target="_self" href=""/>
1278 <title/>
1279 </head>
1280 #errors
1281 /head/base;basehref after URL attribute;m
1282 /head/base;basetarget after hyperlink;m
1283
1284 #data
1285 <head xmlns="http://www.w3.org/1999/xhtml">
1286 <base target="_self" href=""/>
1287 <link rel="up" href=""/>
1288 <title/>
1289 </head>
1290 #errors
1291
1292 #data
1293 <head xmlns="http://www.w3.org/1999/xhtml">
1294 <link rel="alternate stylesheet" href="" title="x"/>
1295 <base target="_self"/>
1296 <title/>
1297 </head>
1298 #errors
1299
1300 #data
1301 <head xmlns="http://www.w3.org/1999/xhtml">
1302 <link rel="stylesheet alternate" href="" title="x"/>
1303 <base target="_self"/>
1304 <title/>
1305 </head>
1306 #errors
1307
1308 #data
1309 <head xmlns="http://www.w3.org/1999/xhtml">
1310 <link rel="alternate stylesheet stylesheet" href="" title="x"/>
1311 <base target="_self"/>
1312 <title/>
1313 </head>
1314 #errors
1315 /head/link/@rel;duplicate token;m
1316
1317 #data
1318 <head xmlns="http://www.w3.org/1999/xhtml">
1319 <link rel="alternate" type="application/atom+xml" href=""/>
1320 <base target="_self"/>
1321 <title/>
1322 </head>
1323 #errors
1324 /head/base;basetarget after hyperlink;m
1325
1326 #data
1327 <head xmlns="http://www.w3.org/1999/xhtml">
1328 <link rel="alternate up stylesheet" href="" title="x"/>
1329 <base target="_self"/>
1330 <title/>
1331 </head>
1332 #errors
1333 /head/base;basetarget after hyperlink;m
1334
1335 #data
1336 <head xmlns="http://www.w3.org/1999/xhtml">
1337 <link rel="up stylesheet" href=""/>
1338 <base target="_self"/>
1339 <title/>
1340 </head>
1341 #errors
1342 /head/base;basetarget after hyperlink;m
1343
1344 #data
1345 <head xmlns="http://www.w3.org/1999/xhtml">
1346 <a href=""/>
1347 <base target="_self"/>
1348 <title/>
1349 </head>
1350 #errors
1351 /head/a;element not allowed:metadata;m
1352 /head/base;basetarget after hyperlink;m
1353
1354 #data
1355 <head xmlns="http://www.w3.org/1999/xhtml">
1356 <area shape="default" href="" alt=""/>
1357 <base target="_self"/>
1358 <title/>
1359 </head>
1360 #errors
1361 /head/area;element not allowed:metadata;m
1362 /head/base;basetarget after hyperlink;m
1363
1364 #data
1365 <head xmlns="http://www.w3.org/1999/xhtml">
1366 <area shape="default" href="" alt=""/>
1367 <base href=""/>
1368 <title/>
1369 </head>
1370 #errors
1371 /head/area;element not allowed:metadata;m
1372 /head/base;basehref after URL attribute;m
1373
1374 #data
1375 <head xmlns="http://www.w3.org/1999/xhtml">
1376 <video src=""/>
1377 <base href=""/>
1378 <title/>
1379 </head>
1380 #errors
1381 /head/video;element not allowed:metadata;m
1382 /head/base;basehref after URL attribute;m
1383
1384 #data
1385 <html xmlns="http://www.w3.org/1999/xhtml">
1386 <head>
1387 <base href=""/>
1388 <title/>
1389 </head>
1390 <body>
1391 <p><a href="">x</a></p>
1392 </body>
1393 </html>
1394 #errors
1395
1396 #data
1397 <link xmlns="http://www.w3.org/1999/xhtml"/>
1398 #errors
1399 /link;attribute missing;href;m
1400 /link;attribute missing;rel;m
1401
1402 #data
1403 <link href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
1404 #errors
1405 /link;attribute missing;rel;m
1406
1407 #data
1408 <link rel="author" xmlns="http://www.w3.org/1999/xhtml"/>
1409 #errors
1410 /link;attribute missing;href;m
1411
1412 #data
1413 <link rel="stylesheet" href="http://www.test/"
1414 xmlns="http://www.w3.org/1999/xhtml"/>
1415 #errors
1416
1417 #data
1418 <link rel="stylesheet" href="://www.test/"
1419 xmlns="http://www.w3.org/1999/xhtml"/>
1420 #errors
1421 /link/@href;syntax error:iriref3987;m
1422
1423 #data
1424 <link rel="stylesheet" href="http://www.test/" type=""
1425 xmlns="http://www.w3.org/1999/xhtml"/>
1426 #errors
1427 /link/@type;IMT:syntax error;m
1428
1429 #data
1430 <link rel="stylesheet" href="http://www.test/" type="text"
1431 xmlns="http://www.w3.org/1999/xhtml"/>
1432 #errors
1433 /link/@type;IMT:syntax error;m
1434
1435 #data
1436 <link rel="stylesheet" href="http://www.test/" type="text/css"
1437 xmlns="http://www.w3.org/1999/xhtml"/>
1438 #errors
1439
1440 #data
1441 <link rel="stylesheet" href="http://www.test/" type="TexT/CsS"
1442 xmlns="http://www.w3.org/1999/xhtml"/>
1443 #errors
1444
1445 #data
1446 <link rel="stylesheet" href="http://www.test/" type="TEXT/CSS"
1447 xmlns="http://www.w3.org/1999/xhtml"/>
1448 #errors
1449
1450 #data
1451 <link rel="stylesheet" href="http://www.test/" type="text/css; charset=utf-8"
1452 xmlns="http://www.w3.org/1999/xhtml"/>
1453 #errors
1454
1455 #data
1456 <link rel="author" href="http://test/"
1457 xmlns="http://www.w3.org/1999/xhtml"/>
1458 #errors
1459
1460 #data
1461 <link rel="author author" href="http://test/"
1462 xmlns="http://www.w3.org/1999/xhtml"/>
1463 #errors
1464 /link/@rel;duplicate token;m
1465
1466 #data
1467 <link rel="bookmark" href="http://test/"
1468 xmlns="http://www.w3.org/1999/xhtml"/>
1469 #errors
1470 /link/@rel;link type:bad context;m
1471
1472 #data
1473 <link rel="previous" href="http://test/"
1474 xmlns="http://www.w3.org/1999/xhtml"/>
1475 #errors
1476 /link/@rel;link type:non-conforming;m
1477
1478 #data
1479 <link rel="edit" href="http://test/"
1480 xmlns="http://www.w3.org/1999/xhtml"/>
1481 #errors
1482 /link/@rel;link type:proposed;s
1483
1484 #data
1485 <link rel="contact" href="http://test/"
1486 xmlns="http://www.w3.org/1999/xhtml"/>
1487 #errors
1488 /link/@rel;link type:proposed;s
1489
1490 #data
1491 <link rel="script" href="http://test/"
1492 xmlns="http://www.w3.org/1999/xhtml"/>
1493 #errors
1494 /link/@rel;link type:non-conforming;m
1495
1496 #data
1497 <link rel="example-link-type" href="http://test/"
1498 xmlns="http://www.w3.org/1999/xhtml"/>
1499 #errors
1500 /link/@rel;unknown link type;u
1501
1502 #data
1503 <?xml version="1.1"?>
1504 <link rel="stylesheet&#x000b;" href="http://test/"
1505 xmlns="http://www.w3.org/1999/xhtml"/>
1506 #errors
1507 /link/@rel;unknown link type;u
1508
1509 #data
1510 <?xml version="1.1"?>
1511 <link rel="&#x000b;stylesheet" href="http://test/"
1512 xmlns="http://www.w3.org/1999/xhtml"/>
1513 #errors
1514 /link/@rel;unknown link type;u
1515
1516 #data
1517 <?xml version="1.1"?>
1518 <link rel="alternate&#x000b;stylesheet" href="http://test/"
1519 xmlns="http://www.w3.org/1999/xhtml"/>
1520 #errors
1521 /link/@rel;unknown link type;u
1522
1523 #data
1524 <link rel="alternate" href="http://test/"
1525 xmlns="http://www.w3.org/1999/xhtml"/>
1526 #errors
1527
1528 #data
1529 <link rel="alternate" href="http://test/" title=""
1530 xmlns="http://www.w3.org/1999/xhtml"/>
1531 #errors
1532
1533 #data
1534 <link rel="stylesheet" href="http://test/"
1535 xmlns="http://www.w3.org/1999/xhtml"/>
1536 #errors
1537
1538 #data
1539 <link rel="stylesheet" href="http://test/" title=""
1540 xmlns="http://www.w3.org/1999/xhtml"/>
1541 #errors
1542
1543 #data
1544 <link rel="alternate stylesheet" href="http://test/"
1545 xmlns="http://www.w3.org/1999/xhtml"/>
1546 #errors
1547 /link;attribute missing;title;m
1548
1549 #data
1550 <link rel="alternate stylesheet" href="http://test/" title=""
1551 xmlns="http://www.w3.org/1999/xhtml"/>
1552 #errors
1553 /link/@title;empty style sheet title;m
1554
1555 #data
1556 <link rel="alternate stylesheet" href="http://test/" title="xxxxx"
1557 xmlns="http://www.w3.org/1999/xhtml"/>
1558 #errors
1559
1560 #data
1561 <link rel="stylesheet alternate" href="http://test/"
1562 xmlns="http://www.w3.org/1999/xhtml"/>
1563 #errors
1564 /link;attribute missing;title;m
1565
1566 #data
1567 <link rel="stylesheet alternate" href="http://test/" title=""
1568 xmlns="http://www.w3.org/1999/xhtml"/>
1569 #errors
1570 /link/@title;empty style sheet title;m
1571
1572 #data
1573 <link rel="stylesheet alternate" href="http://test/" title="x"
1574 xmlns="http://www.w3.org/1999/xhtml"/>
1575 #errors
1576
1577 #data
1578 <link rel="alternate up stylesheet" href="http://test/"
1579 xmlns="http://www.w3.org/1999/xhtml"/>
1580 #errors
1581 /link;attribute missing;title;m
1582
1583 #data
1584 <link rel="alternate up stylesheet" href="http://test/" title=""
1585 xmlns="http://www.w3.org/1999/xhtml"/>
1586 #errors
1587 /link/@title;empty style sheet title;m
1588
1589 #data
1590 <link rel="alternate up stylesheet" href="http://test/" title="xxxxx"
1591 xmlns="http://www.w3.org/1999/xhtml"/>
1592 #errors
1593
1594 #data
1595 <link rel="author" href="http://test/" hreflang=""
1596 xmlns="http://www.w3.org/1999/xhtml"/>
1597 #errors
1598 /link/@hreflang;langtag:language:nosemantics;m
1599
1600 #data
1601 <link rel="author" href="http://test/" hreflang="en"
1602 xmlns="http://www.w3.org/1999/xhtml"/>
1603 #errors
1604
1605 #data
1606 <link media="all"
1607 xmlns="http://www.w3.org/1999/xhtml"/>
1608 #errors
1609 /link;attribute missing;href;m
1610 /link;attribute missing;rel;m
1611 /link/@media;media query;u
1612
1613 #data
1614 <link rel="author" href="http://test/" media="all"
1615 xmlns="http://www.w3.org/1999/xhtml"/>
1616 #errors
1617 /link/@media;media query;u
1618
1619 #data
1620 <link href="http://test/" rel="author" target="_self"
1621 xmlns="http://www.w3.org/1999/xhtml"/>
1622 #errors
1623 /link/@target;attribute not defined;m
1624
1625 #data
1626 <head xmlns="http://www.w3.org/1999/xhtml">
1627 <link rel="pingback" href="a"/>
1628 <link rel="pingback" href="b"/>
1629 <title>x</title>
1630 </head>
1631 #errors
1632 /head/link/@rel;link type:duplicate;m
1633
1634 #data
1635 <head xmlns="http://www.w3.org/1999/xhtml">
1636 <link rel="pingback" href="a"/>
1637 <link rel="pingback feed" href="b"/>
1638 <title>x</title>
1639 </head>
1640 #errors
1641 /head/link/@rel;link type:duplicate;m
1642
1643 #data
1644 <link rel="alternate" href="" target="" xmlns="http://www.w3.org/1999/xhtml"/>
1645 #errors
1646 /link/@target;attribute not defined;m
1647 /link/@target;window name:empty;m
1648
1649 #data
1650 <link rel="alternate" href="" target="_" xmlns="http://www.w3.org/1999/xhtml"/>
1651 #errors
1652 /link/@target;attribute not defined;m
1653 /link/@target;window name:reserved;m
1654
1655 #data
1656 <link rel="alternate" href="" target="_self" xmlns="http://www.w3.org/1999/xhtml"/>
1657 #errors
1658 /link/@target;attribute not defined;m
1659
1660 #data
1661 <link rel="alternate" href="" target="_blank" xmlns="http://www.w3.org/1999/xhtml"/>
1662 #errors
1663 /link/@target;attribute not defined;m
1664
1665 #data
1666 <link rel="alternate" href="" target="_b" xmlns="http://www.w3.org/1999/xhtml"/>
1667 #errors
1668 /link/@target;attribute not defined;m
1669 /link/@target;window name:reserved;m
1670
1671 #data
1672 <link href="" rev=" " xmlns="http://www.w3.org/1999/xhtml"/>
1673 #errors
1674 /link/@rev;attribute not defined;m
1675 /link;attribute missing;rel;m
1676
1677 #data
1678 <link href="" rev="made" xmlns="http://www.w3.org/1999/xhtml"/>
1679 #errors
1680 /link/@rev;attribute not defined;m
1681 /link;attribute missing;rel;m
1682
1683 #data
1684 <link href="" rev="made made" xmlns="http://www.w3.org/1999/xhtml"/>
1685 #errors
1686 /link/@rev;attribute not defined;m
1687 /link/@rev;duplicate token;m
1688 /link;attribute missing;rel;m
1689
1690 #data
1691 <link href="" rel="alternate"
1692 charset="us-ascii" xmlns="http://www.w3.org/1999/xhtml"/>
1693 #errors
1694 /link/@charset;attribute not defined;m
1695
1696 #data
1697 <link href="" rel="alternate"
1698 charset="x-sjis" xmlns="http://www.w3.org/1999/xhtml"/>
1699 #errors
1700 /link/@charset;attribute not defined;m
1701 /link/@charset;charset:not preferred;m
1702 /link/@charset;charset:private;w
1703
1704 #data
1705 <link href="" rel="alternate"
1706 charset="not-registered" xmlns="http://www.w3.org/1999/xhtml"/>
1707 #errors
1708 /link/@charset;attribute not defined;m
1709 /link/@charset;charset:not registered;w
1710
1711 #data
1712 <link href="" rel="alternate"
1713 charset="Shift JIS" xmlns="http://www.w3.org/1999/xhtml"/>
1714 #errors
1715 /link/@charset;attribute not defined;m
1716 /link/@charset;charset:not registered;w
1717
1718 #data
1719 <link href="" rel="alternate"
1720 charset="Shift&#x4e00;JIS" xmlns="http://www.w3.org/1999/xhtml"/>
1721 #errors
1722 /link/@charset;attribute not defined;m
1723 /link/@charset;charset:syntax error;m
1724 /link/@charset;charset:not registered;w
1725
1726 #data
1727 <link href="" rel="alternate"
1728 charset="ascii" xmlns="http://www.w3.org/1999/xhtml"/>
1729 #errors
1730 /link/@charset;attribute not defined;m
1731 /link/@charset;charset:not preferred;m
1732
1733 #data
1734 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"/>
1735 #errors
1736
1737 #data
1738 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1739 sizes=""/>
1740 #errors
1741
1742 #data
1743 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1744 sizes=" "/>
1745 #errors
1746
1747 #data
1748 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1749 sizes="any"/>
1750 #errors
1751
1752 #data
1753 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1754 sizes="1x1"/>
1755 #errors
1756
1757 #data
1758 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1759 sizes="100x100 32x31"/>
1760 #errors
1761
1762 #data
1763 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1764 sizes="any 100x200"/>
1765 #errors
1766
1767 #data
1768 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1769 sizes=" 16x16 "/>
1770 #errors
1771
1772 #data
1773 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1774 sizes="ANY"/>
1775 #errors
1776 /link/@sizes;sizes:syntax error;m
1777
1778 #data
1779 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1780 sizes="32X32"/>
1781 #errors
1782 /link/@sizes;sizes:syntax error;m
1783
1784 #data
1785 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1786 sizes="any any"/>
1787 #errors
1788 /link/@sizes;duplicate token;m
1789
1790 #data
1791 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1792 sizes="16x16 16x16"/>
1793 #errors
1794 /link/@sizes;duplicate token;m
1795
1796 #data
1797 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1798 sizes="032x032"/>
1799 #errors
1800 /link/@sizes;sizes:syntax error;m
1801
1802 #data
1803 <?xml version="1.1"?>
1804 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1805 sizes="32x32&#x0b;"/>
1806 #errors
1807 /link/@sizes;sizes:syntax error;m
1808
1809 #data
1810 <?xml version="1.1"?>
1811 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1812 sizes="&#x0b;32x32"/>
1813 #errors
1814 /link/@sizes;sizes:syntax error;m
1815
1816 #data
1817 <?xml version="1.1"?>
1818 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1819 sizes="32x32&#x0b;44x44"/>
1820 #errors
1821 /link/@sizes;sizes:syntax error;m
1822
1823 #data
1824 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1825 size=""/>
1826 #errors
1827 /link/@size;attribute not defined;m
1828
1829 #data
1830 <link rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1831 height="16" width="16"/>
1832 #errors
1833 /link/@height;attribute not defined;m
1834 /link/@width;attribute not defined;m
1835
1836 #data
1837 <link rel="shortcut icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1838 sizes=""/>
1839 #errors
1840 /link/@rel;unknown link type;u
1841
1842 #data
1843 <link rel="alternate" href="" xmlns="http://www.w3.org/1999/xhtml"
1844 sizes=""/>
1845 #errors
1846 /link/@sizes;attribute not allowed;m
1847
1848 #data
1849 <a rel="icon" href="" xmlns="http://www.w3.org/1999/xhtml"
1850 sizes="">x</a>
1851 #errors
1852 /a/@rel;link type:bad context;m
1853 /a/@sizes;attribute not defined;m
1854
1855 #data
1856 <meta xmlns="http://www.w3.org/1999/xhtml">
1857 <!-- TODO: <meta> tests are not complete -->
1858 </meta>
1859 #errors
1860 /meta;attribute missing:name|http-equiv|charset;m
1861
1862 #data
1863 <meta name="dns" xmlns="http://www.w3.org/1999/xhtml"/>
1864 #errors
1865 /meta;attribute missing;content;m
1866
1867 #data
1868 <meta name="dns" content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
1869 #errors
1870
1871 #data
1872 <meta charset="us-ascii" name="dns" content="example.net"
1873 xmlns="http://www.w3.org/1999/xhtml"/>
1874 #errors
1875 /meta;element not allowed:meta charset;m
1876 /meta/@charset;attribute not allowed;m
1877 /meta;in XML:charset;m
1878 /meta/@charset;mismatched charset name not checked;u
1879
1880 #data
1881 <meta http-equiv="refresh" xmlns="http://www.w3.org/1999/xhtml"/>
1882 #errors
1883 /meta;attribute missing;content;m
1884
1885 #data
1886 <meta http-equiv="refresh" content="10; url=a.html"
1887 xmlns="http://www.w3.org/1999/xhtml"/>
1888 #errors
1889
1890 #data
1891 <meta http-equiv="refresh" content="10; url=a.html" name="dns"
1892 xmlns="http://www.w3.org/1999/xhtml"/>
1893 #errors
1894 /meta/@http-equiv;attribute not allowed;m
1895
1896 #data
1897 <meta http-equiv="refresh" content="10; url=a.html" charset="us-ascii"
1898 xmlns="http://www.w3.org/1999/xhtml"/>
1899 #errors
1900 /meta/@charset;attribute not allowed;m
1901 /meta;in XML:charset;m
1902 /meta/@charset;mismatched charset name not checked;u
1903 /meta;element not allowed:meta charset;m
1904
1905 #data
1906 <meta http-equiv="" content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
1907 #errors
1908 /meta/@http-equiv;enumerated:invalid;m
1909
1910 #data
1911 <meta content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
1912 #errors
1913 /meta/@content;attribute not allowed;m
1914 /meta;attribute missing:name|http-equiv;m
1915
1916 #data
1917 <meta charset="us-ascii" content="example.net"
1918 xmlns="http://www.w3.org/1999/xhtml"/>
1919 #errors
1920 /meta;element not allowed:meta charset;m
1921 /meta/@content;attribute not allowed;m
1922 /meta;in XML:charset;m
1923 /meta/@charset;mismatched charset name not checked;u
1924
1925 #data
1926 <meta content="example.net" xmlns="http://www.w3.org/1999/xhtml"/>
1927 #errors
1928 /meta/@content;attribute not allowed;m
1929 /meta;attribute missing:name|http-equiv;m
1930
1931 #data html
1932 <!DOCTYPE HTML><html><head><meta charset="us-ascii"><title>x</title></head><body><p>x
1933 #errors
1934 /html/head/meta/@charset;mismatched charset name not checked;u
1935
1936 #data
1937 <meta charset="" xmlns="http://www.w3.org/1999/xhtml"/>
1938 #errors
1939 /meta;element not allowed:meta charset;m
1940 /meta;in XML:charset;m
1941 /meta/@charset;mismatched charset name not checked;u
1942 /meta/@charset;charset:syntax error;m
1943 /meta/@charset;charset:not registered;w
1944
1945 #data
1946 <meta charset="us-ascii" xmlns="http://www.w3.org/1999/xhtml"/>
1947 #errors
1948 /meta;element not allowed:meta charset;m
1949 /meta;in XML:charset;m
1950 /meta/@charset;mismatched charset name not checked;u
1951
1952 #data
1953 <meta charset="US-ascii" xmlns="http://www.w3.org/1999/xhtml"/>
1954 #errors
1955 /meta;element not allowed:meta charset;m
1956 /meta;in XML:charset;m
1957 /meta/@charset;mismatched charset name not checked;u
1958
1959 #data
1960 <meta charset="csiso2022jp" xmlns="http://www.w3.org/1999/xhtml"/>
1961 #errors
1962 /meta;element not allowed:meta charset;m
1963 /meta;in XML:charset;m
1964 /meta/@charset;mismatched charset name not checked;u
1965 /meta/@charset;charset:not preferred;m
1966
1967 #data
1968 <meta charset="iso2022jp" xmlns="http://www.w3.org/1999/xhtml"/>
1969 #errors
1970 /meta;element not allowed:meta charset;m
1971 /meta;in XML:charset;m
1972 /meta/@charset;mismatched charset name not checked;u
1973 /meta/@charset;charset:not preferred;m
1974 /meta/@charset;charset:not registered;w
1975
1976 #data
1977 <meta charset="x-utf-8" xmlns="http://www.w3.org/1999/xhtml"/>
1978 #errors
1979 /meta;element not allowed:meta charset;m
1980 /meta;in XML:charset;m
1981 /meta/@charset;mismatched charset name not checked;u
1982 /meta/@charset;charset:not preferred;m
1983 /meta/@charset;charset:private;w
1984
1985 #data
1986 <meta charset="utf-8n" xmlns="http://www.w3.org/1999/xhtml"/>
1987 #errors
1988 /meta;element not allowed:meta charset;m
1989 /meta;in XML:charset;m
1990 /meta/@charset;mismatched charset name not checked;u
1991 /meta/@charset;charset:not preferred;m
1992 /meta/@charset;charset:not registered;w
1993
1994 #data
1995 <meta charset="x-sjis" xmlns="http://www.w3.org/1999/xhtml"/>
1996 #errors
1997 /meta;element not allowed:meta charset;m
1998 /meta;in XML:charset;m
1999 /meta/@charset;mismatched charset name not checked;u
2000 /meta/@charset;charset:not preferred;m
2001 /meta/@charset;charset:private;w
2002
2003 #data html
2004 <!DOCTYPE HTML>
2005 <meta charset="us-ascii">
2006 <title>x</title>
2007 <body><p>b</p></body>
2008 #errors
2009 /html/head/meta/@charset;mismatched charset name not checked;u
2010
2011 #data html
2012 <!DOCTYPE HTML>
2013 <meta charset="us-&#x41;scii">
2014 <title>x</title>
2015 <body><p>x</p></body>
2016 #errors
2017 /html/head/meta/@charset;mismatched charset name not checked;u
2018 /html/head/meta/@charset;charref in charset;m
2019
2020 #data html
2021 <!DOCTYPE HTML>
2022 <meta charset="us-&#x61;scii">
2023 <title>x</title>
2024 <body><p>x</p></body>
2025 #errors
2026 /html/head/meta/@charset;mismatched charset name not checked;u
2027 /html/head/meta/@charset;charref in charset;m
2028
2029 #data html
2030 <!DOCTYPE HTML>
2031 <meta charset="us-&#97;scii">
2032 <title>x</title>
2033 <body><p>x</p></body>
2034 #errors
2035 /html/head/meta/@charset;mismatched charset name not checked;u
2036 /html/head/meta/@charset;charref in charset;m
2037
2038 #data html
2039 <!DOCTYPE HTML>
2040 <meta charset="us-&scii">
2041 <title>x</title>
2042 <body><p>x</p></body>
2043 #errors
2044 /html/head/meta/@charset;mismatched charset name not checked;u
2045 /html/head/meta/@charset;charset:not registered;w
2046
2047 #data html
2048 <!DOCTYPE HTML>
2049 <meta charset="us-&amp;scii">
2050 <title>x</title>
2051 <body><p>x</p></body>
2052 #errors
2053 /html/head/meta/@charset;mismatched charset name not checked;u
2054 /html/head/meta/@charset;charset:not registered;w
2055 /html/head/meta/@charset;charref in charset;m
2056
2057 #data
2058 <meta xmlns="http://www.w3.org/1999/xhtml"
2059 http-equiv="content-type"
2060 />
2061 #errors
2062 /meta;element not allowed:meta charset;m
2063 /meta;attribute missing;content;m
2064 /meta;in XML:charset;m
2065
2066 #data
2067 <meta xmlns="http://www.w3.org/1999/xhtml"
2068 http-equiv="content-type"
2069 content=""/>
2070 #errors
2071 /meta;element not allowed:meta charset;m
2072 /meta;in XML:charset;m
2073 /meta/@content;meta content-type syntax error;m
2074
2075 #data
2076 <meta xmlns="http://www.w3.org/1999/xhtml"
2077 http-equiv="content-type"
2078 content="text/html"/>
2079 #errors
2080 /meta;element not allowed:meta charset;m
2081 /meta;in XML:charset;m
2082 /meta/@content;meta content-type syntax error;m
2083
2084 #data
2085 <meta xmlns="http://www.w3.org/1999/xhtml"
2086 http-equiv="content-type"
2087 content="html"/>
2088 #errors
2089 /meta;element not allowed:meta charset;m
2090 /meta;in XML:charset;m
2091 /meta/@content;meta content-type syntax error;m
2092
2093 #data
2094 <meta xmlns="http://www.w3.org/1999/xhtml"
2095 http-equiv="content-type"
2096 content="text/html;charset"/>
2097 #errors
2098 /meta;element not allowed:meta charset;m
2099 /meta;in XML:charset;m
2100 /meta/@content;meta content-type syntax error;m
2101
2102 #data
2103 <meta xmlns="http://www.w3.org/1999/xhtml"
2104 http-equiv="content-type"
2105 content="text/HTML; charset=us-ascii"/>
2106 #errors
2107 /meta;element not allowed:meta charset;m
2108 /meta;in XML:charset;m
2109 /meta/@content;mismatched charset name not checked;u
2110
2111 #data
2112 <meta xmlns="http://www.w3.org/1999/xhtml"
2113 http-equiv="content-type"
2114 content="text/html; charset=us-ascii"/>
2115 #errors
2116 /meta;element not allowed:meta charset;m
2117 /meta;in XML:charset;m
2118 /meta/@content;mismatched charset name not checked;u
2119
2120 #data
2121 <meta xmlns="http://www.w3.org/1999/xhtml"
2122 http-equiv="content-type"
2123 content="text/html ; charset=us-ascii"/>
2124 #errors
2125 /meta;element not allowed:meta charset;m
2126 /meta;in XML:charset;m
2127 /meta/@content;meta content-type syntax error;m
2128
2129 #data
2130 <meta xmlns="http://www.w3.org/1999/xhtml"
2131 http-equiv="content-type"
2132 content="text/html;&#x09;charset=us-ascii"/>
2133 #errors
2134 /meta;element not allowed:meta charset;m
2135 /meta;in XML:charset;m
2136 /meta/@content;mismatched charset name not checked;u
2137
2138 #data
2139 <?xml version="1.1"?>
2140 <meta xmlns="http://www.w3.org/1999/xhtml"
2141 http-equiv="content-type"
2142 content="text/html;&#x0b;charset=us-ascii"/>
2143 #errors
2144 /meta;element not allowed:meta charset;m
2145 /meta;in XML:charset;m
2146 /meta/@content;meta content-type syntax error;m
2147
2148 #data
2149 <meta xmlns="http://www.w3.org/1999/xhtml"
2150 http-equiv="content-type"
2151 content=" text/html; charset=us-ascii"/>
2152 #errors
2153 /meta;element not allowed:meta charset;m
2154 /meta;in XML:charset;m
2155 /meta/@content;meta content-type syntax error;m
2156
2157 #data
2158 <meta xmlns="http://www.w3.org/1999/xhtml"
2159 http-equiv="content-type"
2160 content="text/html; charset=&quot;us-ascii&quot;"/>
2161 #errors
2162 /meta;element not allowed:meta charset;m
2163 /meta;in XML:charset;m
2164 /meta/@content;charset:not registered;w
2165 /meta/@content;mismatched charset name not checked;u
2166
2167 #data
2168 <meta xmlns="http://www.w3.org/1999/xhtml"
2169 http-equiv="content-type"
2170 content="text/html; charset=x-sjis"/>
2171 #errors
2172 /meta;element not allowed:meta charset;m
2173 /meta;in XML:charset;m
2174 /meta/@content;mismatched charset name not checked;u
2175 /meta/@content;charset:not preferred;m
2176 /meta/@content;charset:private;w
2177
2178 #data html
2179 <!DOCTYPE HTML>
2180 <meta http-equiv=Content-Type content=text/html;charset=us-&#x61;scii>
2181 <title>x</title>
2182 <body>y</body>
2183 #errors
2184 /html/head/meta/@content;mismatched charset name not checked;u
2185 /html/head/meta/@content;charref in charset;m
2186
2187 #data html
2188 <!DOCTYPE HTML>
2189 <meta http-equiv=Content-Type content=text/html; charset=us-ascii>
2190 <title>x</title>
2191 <body>y</body>
2192 #errors
2193 /html/head/meta/@charset;attribute not allowed;m
2194 /html/head/meta/@content;meta content-type syntax error;m
2195 /html/head/meta/@charset;mismatched charset name not checked;u
2196
2197 #data html
2198 <!DOCTYPE HTML>
2199 <meta http-equiv=Content-Type content="text/html;charset=us-ascii">
2200 <meta http-equiv=Content-Type content="text/html;charset=us-ascii">
2201 <title>x</title>
2202 <body>y</body>
2203 #errors
2204 /html/head/meta/@content;mismatched charset name not checked;u
2205 /html/head/meta/@content;mismatched charset name not checked;u
2206 /html/head/meta/@http-equiv;duplicate http-equiv;m
2207 /html/head/meta;element not allowed:meta charset;m
2208
2209 #data
2210 <head xmlns="http://www.w3.org/1999/xhtml">
2211 <title>x</title>
2212 <link rel="stylesheet" href="" title="style1"/>
2213 <link rel="stylesheet" href="" title="style2"/>
2214 <meta http-equiv="Default-Style" content="style1"/>
2215 <meta http-equiv="default-style" content="style2"/>
2216 </head>
2217 #errors
2218 /head/meta/@http-equiv;duplicate http-equiv;m
2219
2220 #data
2221 <head xmlns="http://www.w3.org/1999/xhtml">
2222 <title>x</title>
2223 <meta http-equiv="Refresh" content="13"/>
2224 </head>
2225 #errors
2226
2227 #data
2228 <head xmlns="http://www.w3.org/1999/xhtml">
2229 <title>x</title>
2230 <meta http-equiv="Refresh" content="0"/>
2231 </head>
2232 #errors
2233
2234 #data
2235 <head xmlns="http://www.w3.org/1999/xhtml">
2236 <title>x</title>
2237 <meta http-equiv="Refresh" content="000000013"/>
2238 </head>
2239 #errors
2240
2241 #data
2242 <head xmlns="http://www.w3.org/1999/xhtml">
2243 <title>x</title>
2244 <meta http-equiv="Refresh" content="+12"/>
2245 </head>
2246 #errors
2247 /head/meta/@content;refresh:syntax error;m
2248
2249 #data
2250 <head xmlns="http://www.w3.org/1999/xhtml">
2251 <title>x</title>
2252 <meta http-equiv="Refresh" content="12.0"/>
2253 </head>
2254 #errors
2255 /head/meta/@content;refresh:syntax error;m
2256
2257 #data
2258 <head xmlns="http://www.w3.org/1999/xhtml">
2259 <title>x</title>
2260 <meta http-equiv="Refresh" content="12 "/>
2261 </head>
2262 #errors
2263 /head/meta/@content;refresh:syntax error;m
2264
2265 #data
2266 <head xmlns="http://www.w3.org/1999/xhtml">
2267 <title>x</title>
2268 <meta http-equiv="Refresh" content=" 12"/>
2269 </head>
2270 #errors
2271 /head/meta/@content;refresh:syntax error;m
2272
2273 #data
2274 <head xmlns="http://www.w3.org/1999/xhtml">
2275 <title>x</title>
2276 <meta http-equiv="Refresh" content="44;url=http://www.example.com/"/>
2277 </head>
2278 #errors
2279 /head/meta/@content;refresh:syntax error;m
2280
2281 #data
2282 <?xml version="1.1"?>
2283 <head xmlns="http://www.w3.org/1999/xhtml">
2284 <title>x</title>
2285 <meta http-equiv="Refresh" content="44;&#x0b;url=http://www.example.com/"/>
2286 </head>
2287 #errors
2288 /head/meta/@content;refresh:syntax error;m
2289
2290 #data
2291 <head xmlns="http://www.w3.org/1999/xhtml">
2292 <title>x</title>
2293 <meta http-equiv="Refresh" content=" 45; url=aaa"/>
2294 </head>
2295 #errors
2296 /head/meta/@content;refresh:syntax error;m
2297
2298 #data
2299 <head xmlns="http://www.w3.org/1999/xhtml">
2300 <title>x</title>
2301 <meta http-equiv="Refresh" content="0 ; url=bb"/>
2302 </head>
2303 #errors
2304 /head/meta/@content;refresh:syntax error;m
2305
2306 #data
2307 <head xmlns="http://www.w3.org/1999/xhtml">
2308 <title>x</title>
2309 <meta http-equiv="Refresh" content="4; url = aa"/>
2310 </head>
2311 #errors
2312 /head/meta/@content;refresh:syntax error;m
2313
2314 #data
2315 <head xmlns="http://www.w3.org/1999/xhtml">
2316 <title>x</title>
2317 <meta http-equiv="Refresh" content="5; url=http://www.example.com/"/>
2318 </head>
2319 #errors
2320
2321 #data
2322 <head xmlns="http://www.w3.org/1999/xhtml">
2323 <title>x</title>
2324 <meta http-equiv="Refresh" content="4; url= http://test/"/>
2325 </head>
2326 #errors
2327 /head/meta/@content;syntax error:iriref3987;m
2328
2329 #data
2330 <head xmlns="http://www.w3.org/1999/xhtml">
2331 <title>x</title>
2332 <meta http-equiv="Refresh" content="4; url=[a]"/>
2333 </head>
2334 #errors
2335 /head/meta/@content;syntax error:iriref3987;m
2336
2337 #data
2338 <head xmlns="http://www.w3.org/1999/xhtml">
2339 <title>x</title>
2340 <meta http-equiv="Refresh" content="4; url=&quot;http://&quot;"/>
2341 </head>
2342 #errors
2343 /head/meta/@content;syntax error:iriref3987;m
2344 /head/meta/@content;URL:empty path;w
2345 /head/meta/@content;URL:non-DNS host;w
2346
2347 #data
2348 <head xmlns="http://www.w3.org/1999/xhtml">
2349 <title>x</title>
2350 <meta http-equiv="Refresh" content="4; url=http://www.example.com/"/>
2351 <meta http-equiv="Refresh" content="4; url=http://www.example.com/"/>
2352 </head>
2353 #errors
2354 /head/meta/@http-equiv;duplicate http-equiv;m
2355
2356 #data
2357 <head xmlns="http://www.w3.org/1999/xhtml">
2358 <title>x</title>
2359 <meta http-equiv="Refresh" content="4; url=http://www.example.com/"/>
2360 <base href=""/>
2361 </head>
2362 #errors
2363 /head/base;basehref after URL attribute;m
2364
2365 #data
2366 <style type="" xmlns="http://www.w3.org/1999/xhtml"/>
2367 #errors
2368 /style/@type;IMT:syntax error;m
2369
2370 #data
2371 <style type="text" xmlns="http://www.w3.org/1999/xhtml"/>
2372 #errors
2373 /style/@type;IMT:syntax error;m
2374
2375 #data
2376 <style type="text/css" xmlns="http://www.w3.org/1999/xhtml"/>
2377 #errors
2378 /style;SUBDOC
2379
2380 #data
2381 <style type="Text/CSS" xmlns="http://www.w3.org/1999/xhtml"/>
2382 #errors
2383 /style;SUBDOC
2384
2385 #data
2386 <style type="TEXT/CSS" xmlns="http://www.w3.org/1999/xhtml"/>
2387 #errors
2388 /style;SUBDOC
2389
2390 #data
2391 <style type="text/css; charset=us-ascii" xmlns="http://www.w3.org/1999/xhtml">
2392 <!-- NOTE: |charset| parameter here is meaningless (or harmful?),
2393 but syntactically correct. -->
2394 </style>
2395 #errors
2396
2397 #data
2398 <style media="all" xmlns="http://www.w3.org/1999/xhtml"/>
2399 #errors
2400 /style;SUBDOC
2401 /style/@media;media query;u
2402
2403 #data
2404 <style media="screen" xmlns="http://www.w3.org/1999/xhtml"/>
2405 #errors
2406 /style;SUBDOC
2407 /style/@media;media query;u
2408
2409 #data
2410 <head xmlns="http://www.w3.org/1999/xhtml">
2411 <title>x</title>
2412 <style scoped=""/>
2413 </head>
2414 #errors
2415 /head/style;SUBDOC
2416 /head/style;element not allowed:head style;m
2417
2418 #data
2419 <article xmlns="http://www.w3.org/1999/xhtml">
2420 <style/>
2421 </article>
2422 #errors
2423 /article/style;element not allowed:flow style;m
2424 /article/style;SUBDOC
2425 /article;no significant content;s
2426
2427 #data
2428 <article xmlns="http://www.w3.org/1999/xhtml">
2429 <style scoped=""/>
2430 </article>
2431 #errors
2432 /article/style;SUBDOC
2433 /article;no significant content;s
2434
2435 #data
2436 <aside xmlns="http://www.w3.org/1999/xhtml">
2437 <style/>
2438 </aside>
2439 #errors
2440 /aside/style;element not allowed:flow style;m
2441 /aside/style;SUBDOC
2442 /aside;no significant content;s
2443
2444 #data
2445 <aside xmlns="http://www.w3.org/1999/xhtml">
2446 <style scoped=""/>
2447 </aside>
2448 #errors
2449 /aside/style;SUBDOC
2450 /aside;no significant content;s
2451
2452 #data
2453 <div xmlns="http://www.w3.org/1999/xhtml">
2454 <style/>
2455 </div>
2456 #errors
2457 /div/style;element not allowed:flow style;m
2458 /div/style;SUBDOC
2459 /div;no significant content;s
2460
2461 #data
2462 <div xmlns="http://www.w3.org/1999/xhtml">
2463 <style scoped=""/>
2464 </div>
2465 #errors
2466 /div/style;SUBDOC
2467 /div;no significant content;s
2468
2469 #data
2470 <section xmlns="http://www.w3.org/1999/xhtml">
2471 <style/>
2472 </section>
2473 #errors
2474 /section/style;element not allowed:flow style;m
2475 /section/style;SUBDOC
2476 /section;no significant content;s
2477
2478 #data
2479 <section xmlns="http://www.w3.org/1999/xhtml">
2480 <style scoped=""/>
2481 </section>
2482 #errors
2483 /section/style;SUBDOC
2484 /section;no significant content;s
2485
2486 #data
2487 <section xmlns="http://www.w3.org/1999/xhtml">
2488 <style scope=""/>
2489 </section>
2490 #errors
2491 /section/style/@scope;attribute not defined;m
2492 /section/style;element not allowed:flow style;m
2493 /section/style;SUBDOC
2494 /section;no significant content;s
2495
2496 #data
2497 <body background="" xmlns="http://www.w3.org/1999/xhtml">x</body>
2498 #errors
2499 /body/@background;attribute not defined;m
2500
2501 #data
2502 <body background="a.png" xmlns="http://www.w3.org/1999/xhtml">x</body>
2503 #errors
2504 /body/@background;attribute not defined;m
2505
2506 #data
2507 <body background="[]" xmlns="http://www.w3.org/1999/xhtml">x</body>
2508 #errors
2509 /body/@background;attribute not defined;m
2510 /body/@background;syntax error:iriref3987;m
2511
2512 #data
2513 <body text="red" xmlns="http://www.w3.org/1999/xhtml"/>
2514 #errors
2515 /body/@text;attribute not defined;m
2516 /body;no significant content;s
2517
2518 #data
2519 <body text="" xmlns="http://www.w3.org/1999/xhtml">x</body>
2520 #errors
2521 /body/@text;attribute not defined;m
2522 /body/@text;color:syntax error;m
2523
2524 #data
2525 <body link="" xmlns="http://www.w3.org/1999/xhtml">x</body>
2526 #errors
2527 /body/@link;attribute not defined;m
2528 /body/@link;color:syntax error;m
2529
2530 #data
2531 <body link="#c0c0c0" xmlns="http://www.w3.org/1999/xhtml">x</body>
2532 #errors
2533 /body/@link;attribute not defined;m
2534
2535 #data
2536 <body alink="" xmlns="http://www.w3.org/1999/xhtml">x</body>
2537 #errors
2538 /body/@alink;attribute not defined;m
2539 /body/@alink;color:syntax error;m
2540
2541 #data
2542 <body alink="Red" xmlns="http://www.w3.org/1999/xhtml">x</body>
2543 #errors
2544 /body/@alink;attribute not defined;m
2545
2546 #data
2547 <body vlink="" xmlns="http://www.w3.org/1999/xhtml">x</body>
2548 #errors
2549 /body/@vlink;attribute not defined;m
2550 /body/@vlink;color:syntax error;m
2551
2552 #data
2553 <body vlink="orange" xmlns="http://www.w3.org/1999/xhtml">x</body>
2554 #errors
2555 /body/@vlink;attribute not defined;m
2556 /body/@vlink;color:syntax error;m
2557
2558 #data
2559 <body alink="000000" xmlns="http://www.w3.org/1999/xhtml">x</body>
2560 #errors
2561 /body/@alink;attribute not defined;m
2562 /body/@alink;color:syntax error;m
2563
2564 #data
2565 <body bgcolor="" xmlns="http://www.w3.org/1999/xhtml">x</body>
2566 #errors
2567 /body/@bgcolor;attribute not defined;m
2568 /body/@bgcolor;color:syntax error;m
2569
2570 #data
2571 <body bgcolor="#ffffff" xmlns="http://www.w3.org/1999/xhtml">x</body>
2572 #errors
2573 /body/@bgcolor;attribute not defined;m
2574
2575 #data
2576 <blockquote cite="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
2577 #errors
2578 /blockquote;no significant content;s
2579
2580 #data
2581 <blockquote cite="http://test/%" xmlns="http://www.w3.org/1999/xhtml"/>
2582 #errors
2583 /blockquote/@cite;syntax error:iriref3987;m
2584 /blockquote;no significant content;s
2585
2586 #data
2587 <h1 align="left" xmlns="http://www.w3.org/1999/xhtml"/>
2588 #errors
2589 /h1/@align;attribute not defined;m
2590 /h1;no significant content;s
2591
2592 #data
2593 <h1 align="nonleft" xmlns="http://www.w3.org/1999/xhtml">x</h1>
2594 #errors
2595 /h1/@align;attribute not defined;m
2596 /h1/@align;enumerated:invalid;m
2597
2598 #data
2599 <h2 align="justify" xmlns="http://www.w3.org/1999/xhtml">x</h2>
2600 #errors
2601 /h2/@align;attribute not defined;m
2602
2603 #data
2604 <address align="left" xmlns="http://www.w3.org/1999/xhtml"/>
2605 #errors
2606 /address/@align;attribute not defined;m
2607 /address;no significant content;s
2608
2609 #data
2610 <p align="" xmlns="http://www.w3.org/1999/xhtml"/>
2611 #errors
2612 /p/@align;attribute not defined;m
2613 /p/@align;enumerated:invalid;m
2614 /p;no significant content;s
2615
2616 #data
2617 <p align="left" xmlns="http://www.w3.org/1999/xhtml"/>
2618 #errors
2619 /p/@align;attribute not defined;m
2620 /p;no significant content;s
2621
2622 #data
2623 <p align="justifY" xmlns="http://www.w3.org/1999/xhtml"/>
2624 #errors
2625 /p/@align;attribute not defined;m
2626 /p;no significant content;s
2627
2628 #data
2629 <hr align="left" xmlns="http://www.w3.org/1999/xhtml"/>
2630 #errors
2631 /hr/@align;attribute not defined;m
2632
2633 #data
2634 <br clear="" xmlns="http://www.w3.org/1999/xhtml"/>
2635 #errors
2636 /br/@clear;attribute not defined;m
2637 /br/@clear;enumerated:invalid;m
2638
2639 #data
2640 <br clear="left" xmlns="http://www.w3.org/1999/xhtml"/>
2641 #errors
2642 /br/@clear;attribute not defined;m
2643
2644 #data
2645 <br clear="right" xmlns="http://www.w3.org/1999/xhtml"/>
2646 #errors
2647 /br/@clear;attribute not defined;m
2648
2649 #data
2650 <br clear="all" xmlns="http://www.w3.org/1999/xhtml"/>
2651 #errors
2652 /br/@clear;attribute not defined;m
2653
2654 #data
2655 <br clear="none" xmlns="http://www.w3.org/1999/xhtml"/>
2656 #errors
2657 /br/@clear;attribute not defined;m
2658
2659 #data
2660 <br clear="both" xmlns="http://www.w3.org/1999/xhtml"/>
2661 #errors
2662 /br/@clear;attribute not defined;m
2663 /br/@clear;enumerated:invalid;m
2664
2665 #data
2666 <dialog compact="" xmlns="http://www.w3.org/1999/xhtml"/>
2667 #errors
2668 /dialog/@compact;attribute not defined;m
2669
2670 #data
2671 <pre width="" xmlns="http://www.w3.org/1999/xhtml"/>
2672 #errors
2673 /pre/@width;attribute not defined;m
2674 /pre/@width;nninteger:syntax error;m
2675 /pre;no significant content;s
2676
2677 #data
2678 <pre width="0" xmlns="http://www.w3.org/1999/xhtml"/>
2679 #errors
2680 /pre/@width;attribute not defined;m
2681 /pre;no significant content;s
2682
2683 #data
2684 <pre width="4" xmlns="http://www.w3.org/1999/xhtml"/>
2685 #errors
2686 /pre/@width;attribute not defined;m
2687 /pre;no significant content;s
2688
2689 #data
2690 <pre width="1224" xmlns="http://www.w3.org/1999/xhtml"/>
2691 #errors
2692 /pre/@width;attribute not defined;m
2693 /pre;no significant content;s
2694
2695 #data
2696 <pre width="0000122" xmlns="http://www.w3.org/1999/xhtml"/>
2697 #errors
2698 /pre/@width;attribute not defined;m
2699 /pre;no significant content;s
2700
2701 #data
2702 <pre width="-122" xmlns="http://www.w3.org/1999/xhtml"/>
2703 #errors
2704 /pre/@width;attribute not defined;m
2705 /pre/@width;nninteger:syntax error;m
2706 /pre;no significant content;s
2707
2708 #data
2709 <pre width="12.0" xmlns="http://www.w3.org/1999/xhtml"/>
2710 #errors
2711 /pre/@width;attribute not defined;m
2712 /pre/@width;nninteger:syntax error;m
2713 /pre;no significant content;s
2714
2715 #data
2716 <pre width=" 12" xmlns="http://www.w3.org/1999/xhtml"/>
2717 #errors
2718 /pre/@width;attribute not defined;m
2719 /pre/@width;nninteger:syntax error;m
2720 /pre;no significant content;s
2721
2722 #data
2723 <pre width="aaa" xmlns="http://www.w3.org/1999/xhtml"/>
2724 #errors
2725 /pre/@width;attribute not defined;m
2726 /pre/@width;nninteger:syntax error;m
2727 /pre;no significant content;s
2728
2729 #data
2730 <pre xml:space="preserve" xmlns="http://www.w3.org/1999/xhtml"/>
2731 #errors
2732 /pre;no significant content;s
2733
2734 #data
2735 <pre xml:space="default" xmlns="http://www.w3.org/1999/xhtml"/>
2736 #errors
2737 /pre;no significant content;s
2738
2739 #data
2740 <ol start="" xmlns="http://www.w3.org/1999/xhtml"/>
2741 #errors
2742 /ol/@start;integer:syntax error;m
2743
2744 #data
2745 <ol start="0" xmlns="http://www.w3.org/1999/xhtml"/>
2746 #errors
2747
2748 #data
2749 <ol start="1" xmlns="http://www.w3.org/1999/xhtml"/>
2750 #errors
2751
2752 #data
2753 <ol start="2" xmlns="http://www.w3.org/1999/xhtml"/>
2754 #errors
2755
2756 #data
2757 <ol start="10" xmlns="http://www.w3.org/1999/xhtml"/>
2758 #errors
2759
2760 #data
2761 <ol start="-0" xmlns="http://www.w3.org/1999/xhtml"/>
2762 #errors
2763
2764 #data
2765 <ol start="-1" xmlns="http://www.w3.org/1999/xhtml"/>
2766 #errors
2767
2768 #data
2769 <ol start="-10" xmlns="http://www.w3.org/1999/xhtml"/>
2770 #errors
2771
2772 #data
2773 <ol start="0000" xmlns="http://www.w3.org/1999/xhtml"/>
2774 #errors
2775
2776 #data
2777 <ol start="0001" xmlns="http://www.w3.org/1999/xhtml"/>
2778 #errors
2779
2780 #data
2781 <ol start="00001" xmlns="http://www.w3.org/1999/xhtml"/>
2782 #errors
2783
2784 #data
2785 <ol start="1000000000000" xmlns="http://www.w3.org/1999/xhtml"/>
2786 #errors
2787
2788 #data
2789 <ol start="-100000000000000" xmlns="http://www.w3.org/1999/xhtml"/>
2790 #errors
2791
2792 #data
2793 <ol start="1.0" xmlns="http://www.w3.org/1999/xhtml"/>
2794 #errors
2795 /ol/@start;integer:syntax error;m
2796
2797 #data
2798 <ol start="-1.0" xmlns="http://www.w3.org/1999/xhtml"/>
2799 #errors
2800 /ol/@start;integer:syntax error;m
2801
2802 #data
2803 <ol start="+0" xmlns="http://www.w3.org/1999/xhtml"/>
2804 #errors
2805 /ol/@start;integer:syntax error;m
2806
2807 #data
2808 <ol start="+1" xmlns="http://www.w3.org/1999/xhtml"/>
2809 #errors
2810 /ol/@start;integer:syntax error;m
2811
2812 #data
2813 <ol start="-+1" xmlns="http://www.w3.org/1999/xhtml"/>
2814 #errors
2815 /ol/@start;integer:syntax error;m
2816
2817 #data
2818 <ol start="1aaa" xmlns="http://www.w3.org/1999/xhtml"/>
2819 #errors
2820 /ol/@start;integer:syntax error;m
2821
2822 #data
2823 <ol start="xxxxx" xmlns="http://www.w3.org/1999/xhtml"/>
2824 #errors
2825 /ol/@start;integer:syntax error;m
2826
2827 #data
2828 <ol start=" 1" xmlns="http://www.w3.org/1999/xhtml"/>
2829 #errors
2830 /ol/@start;integer:syntax error;m
2831
2832 #data
2833 <ol start="1 " xmlns="http://www.w3.org/1999/xhtml"/>
2834 #errors
2835 /ol/@start;integer:syntax error;m
2836
2837 #data
2838 <ol start=" 1 " xmlns="http://www.w3.org/1999/xhtml"/>
2839 #errors
2840 /ol/@start;integer:syntax error;m
2841
2842 #data
2843 <ol start="_1" xmlns="http://www.w3.org/1999/xhtml"/>
2844 #errors
2845 /ol/@start;integer:syntax error;m
2846
2847 #data
2848 <ol start="&#x4E00;" xmlns="http://www.w3.org/1999/xhtml"/>
2849 #errors
2850 /ol/@start;integer:syntax error;m
2851
2852 #data
2853 <ol start="" xmlns="http://www.w3.org/1999/xhtml"/>
2854 #errors
2855 /ol/@start;integer:syntax error;m
2856
2857 #data
2858 <ol start="&#x2212;1" xmlns="http://www.w3.org/1999/xhtml"/>
2859 #errors
2860 /ol/@start;integer:syntax error;m
2861
2862 #data
2863 <ol reversed="" xmlns="http://www.w3.org/1999/xhtml"/>
2864 #errors
2865
2866 #data
2867 <ol reversed="reversed" xmlns="http://www.w3.org/1999/xhtml"/>
2868 #errors
2869
2870 #data
2871 <ol reversed="REVERSED" xmlns="http://www.w3.org/1999/xhtml"/>
2872 #errors
2873
2874 #data
2875 <ol reversed=" reversed " xmlns="http://www.w3.org/1999/xhtml"/>
2876 #errors
2877 /ol/@reversed;boolean:invalid;m
2878
2879 #data
2880 <ol reversed="yes" xmlns="http://www.w3.org/1999/xhtml"/>
2881 #errors
2882 /ol/@reversed;boolean:invalid;m
2883
2884 #data
2885 <ol reversed="on" xmlns="http://www.w3.org/1999/xhtml"/>
2886 #errors
2887 /ol/@reversed;boolean:invalid;m
2888
2889 #data
2890 <ol reversed="true" xmlns="http://www.w3.org/1999/xhtml"/>
2891 #errors
2892 /ol/@reversed;boolean:invalid;m
2893
2894 #data
2895 <ol reverse="" xmlns="http://www.w3.org/1999/xhtml"/>
2896 #errors
2897 /ol/@reverse;attribute not defined;m
2898
2899 #data
2900 <ol reversed="reverse" xmlns="http://www.w3.org/1999/xhtml"/>
2901 #errors
2902 /ol/@reversed;boolean:invalid;m
2903
2904 #data
2905 <ol xmlns="http://www.w3.org/1999/xhtml">
2906 <li value=""/>
2907 </ol>
2908 #errors
2909 /ol/li/@value;integer:syntax error;m
2910 /ol/li;no significant content;s
2911
2912 #data
2913 <ol xmlns="http://www.w3.org/1999/xhtml">
2914 <li value="1"/>
2915 </ol>
2916 #errors
2917 /ol/li;no significant content;s
2918
2919 #data
2920 <ol xmlns="http://www.w3.org/1999/xhtml">
2921 <li value="0"/>
2922 </ol>
2923 #errors
2924 /ol/li;no significant content;s
2925
2926 #data
2927 <ol xmlns="http://www.w3.org/1999/xhtml">
2928 <li value="-1"/>
2929 </ol>
2930 #errors
2931 /ol/li;no significant content;s
2932
2933 #data
2934 <ol xmlns="http://www.w3.org/1999/xhtml">
2935 <li value="+1"/>
2936 </ol>
2937 #errors
2938 /ol/li;no significant content;s
2939
2940 #data
2941 <ol xmlns="http://www.w3.org/1999/xhtml">
2942 <li value="xxx"/>
2943 </ol>
2944 #errors
2945 /ol/li/@value;integer:syntax error;m
2946 /ol/li;no significant content;s
2947
2948 #data
2949 <ul xmlns="http://www.w3.org/1999/xhtml">
2950 <li value=""/>
2951 </ul>
2952 #errors
2953 /ul/li/@value;attribute not defined;m
2954 /ul/li/@value;integer:syntax error;m
2955 /ul/li;no significant content;s
2956
2957 #data
2958 <ul xmlns="http://www.w3.org/1999/xhtml">
2959 <li value="1"/>
2960 </ul>
2961 #errors
2962 /ul/li/@value;attribute not defined;m
2963 /ul/li;no significant content;s
2964
2965 #data
2966 <ul xmlns="http://www.w3.org/1999/xhtml">
2967 <li value="0"/>
2968 </ul>
2969 #errors
2970 /ul/li/@value;attribute not defined;m
2971 /ul/li;no significant content;s
2972
2973 #data
2974 <ul xmlns="http://www.w3.org/1999/xhtml">
2975 <li value="-1"/>
2976 </ul>
2977 #errors
2978 /ul/li/@value;attribute not defined;m
2979 /ul/li;no significant content;s
2980
2981 #data
2982 <ul xmlns="http://www.w3.org/1999/xhtml">
2983 <li value="+1"/>
2984 </ul>
2985 #errors
2986 /ul/li/@value;attribute not defined;m
2987 /ul/li;no significant content;s
2988
2989 #data
2990 <ul xmlns="http://www.w3.org/1999/xhtml">
2991 <li value="xxx"/>
2992 </ul>
2993 #errors
2994 /ul/li/@value;attribute not defined;m
2995 /ul/li/@value;integer:syntax error;m
2996 /ul/li;no significant content;s
2997
2998 #data
2999 <li value="" xmlns="http://www.w3.org/1999/xhtml"/>
3000 #errors
3001 /li/@value;attribute not defined;m
3002 /li/@value;integer:syntax error;m
3003 /li;no significant content;s
3004
3005 #data
3006 <li value="1" xmlns="http://www.w3.org/1999/xhtml"/>
3007 #errors
3008 /li/@value;attribute not defined;m
3009 /li;no significant content;s
3010
3011 #data
3012 <li value="0" xmlns="http://www.w3.org/1999/xhtml"/>
3013 #errors
3014 /li/@value;attribute not defined;m
3015 /li;no significant content;s
3016
3017 #data
3018 <li value="-1" xmlns="http://www.w3.org/1999/xhtml"/>
3019 #errors
3020 /li/@value;attribute not defined;m
3021 /li;no significant content;s
3022
3023 #data
3024 <li value="+1" xmlns="http://www.w3.org/1999/xhtml"/>
3025 #errors
3026 /li/@value;attribute not defined;m
3027 /li;no significant content;s
3028
3029 #data
3030 <li value="xxx" xmlns="http://www.w3.org/1999/xhtml"/>
3031 #errors
3032 /li/@value;attribute not defined;m
3033 /li/@value;integer:syntax error;m
3034 /li;no significant content;s
3035
3036 #data
3037 <ol compact="" xmlns="http://www.w3.org/1999/xhtml"/>
3038 #errors
3039 /ol/@compact;attribute not defined;m
3040
3041 #data
3042 <ol compact="compact" xmlns="http://www.w3.org/1999/xhtml"/>
3043 #errors
3044 /ol/@compact;attribute not defined;m
3045
3046 #data
3047 <ol compact="Compact" xmlns="http://www.w3.org/1999/xhtml"/>
3048 #errors
3049 /ol/@compact;attribute not defined;m
3050
3051 #data
3052 <ol compact="Compat" xmlns="http://www.w3.org/1999/xhtml"/>
3053 #errors
3054 /ol/@compact;attribute not defined;m
3055 /ol/@compact;boolean:invalid;m
3056
3057 #data
3058 <ul compact="" xmlns="http://www.w3.org/1999/xhtml"/>
3059 #errors
3060 /ul/@compact;attribute not defined;m
3061
3062 #data
3063 <ul compact="compact" xmlns="http://www.w3.org/1999/xhtml"/>
3064 #errors
3065 /ul/@compact;attribute not defined;m
3066
3067 #data
3068 <ul compact="Compact" xmlns="http://www.w3.org/1999/xhtml"/>
3069 #errors
3070 /ul/@compact;attribute not defined;m
3071
3072 #data
3073 <ul compact="compat" xmlns="http://www.w3.org/1999/xhtml"/>
3074 #errors
3075 /ul/@compact;attribute not defined;m
3076 /ul/@compact;boolean:invalid;m
3077
3078 #data
3079 <dir compact="" xmlns="http://www.w3.org/1999/xhtml"/>
3080 #errors
3081 /dir/@compact;attribute not defined;m
3082 /dir;element not defined;m
3083
3084 #data
3085 <dir compact="compact" xmlns="http://www.w3.org/1999/xhtml"/>
3086 #errors
3087 /dir/@compact;attribute not defined;m
3088 /dir;element not defined;m
3089
3090 #data
3091 <dir compact="Compact" xmlns="http://www.w3.org/1999/xhtml"/>
3092 #errors
3093 /dir/@compact;attribute not defined;m
3094 /dir;element not defined;m
3095
3096 #data
3097 <dir compact="combact" xmlns="http://www.w3.org/1999/xhtml"/>
3098 #errors
3099 /dir/@compact;attribute not defined;m
3100 /dir/@compact;boolean:invalid;m
3101 /dir;element not defined;m
3102
3103 #data
3104 <menu compact="" xmlns="http://www.w3.org/1999/xhtml"/>
3105 #errors
3106 /menu/@compact;attribute not defined;m
3107 /menu;no significant content;s
3108
3109 #data
3110 <menu compact="compact" xmlns="http://www.w3.org/1999/xhtml"/>
3111 #errors
3112 /menu/@compact;attribute not defined;m
3113 /menu;no significant content;s
3114
3115 #data
3116 <menu compact="Compact" xmlns="http://www.w3.org/1999/xhtml"/>
3117 #errors
3118 /menu/@compact;attribute not defined;m
3119 /menu;no significant content;s
3120
3121 #data
3122 <menu compact="conpact" xmlns="http://www.w3.org/1999/xhtml"/>
3123 #errors
3124 /menu/@compact;attribute not defined;m
3125 /menu/@compact;boolean:invalid;m
3126 /menu;no significant content;s
3127
3128 #data
3129 <dl compact="" xmlns="http://www.w3.org/1999/xhtml"/>
3130 #errors
3131 /dl/@compact;attribute not defined;m
3132
3133 #data
3134 <dl compact="compact" xmlns="http://www.w3.org/1999/xhtml"/>
3135 #errors
3136 /dl/@compact;attribute not defined;m
3137
3138 #data
3139 <dl compact="Compact" xmlns="http://www.w3.org/1999/xhtml"/>
3140 #errors
3141 /dl/@compact;attribute not defined;m
3142
3143 #data
3144 <dl compact="compacts" xmlns="http://www.w3.org/1999/xhtml"/>
3145 #errors
3146 /dl/@compact;attribute not defined;m
3147 /dl/@compact;boolean:invalid;m
3148
3149 #data
3150 <a xmlns="http://www.w3.org/1999/xhtml"/>
3151 #errors
3152
3153 #data
3154 <a href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
3155 #errors
3156 /a;no significant content;s
3157
3158 #data
3159 <a href="http://test/[44::]/" xmlns="http://www.w3.org/1999/xhtml"/>
3160 #errors
3161 /a;no significant content;s
3162 /a/@href;syntax error:iriref3987;m
3163
3164 #data
3165 <a href="http://test/" type="" xmlns="http://www.w3.org/1999/xhtml"/>
3166 #errors
3167 /a;no significant content;s
3168 /a/@type;IMT:syntax error;m
3169
3170 #data
3171 <a href="http://test/" type="text/html" xmlns="http://www.w3.org/1999/xhtml"/>
3172 #errors
3173 /a;no significant content;s
3174
3175 #data
3176 <a href="http://test/" rel="" xmlns="http://www.w3.org/1999/xhtml"/>
3177 #errors
3178 /a;no significant content;s
3179
3180 #data
3181 <a href="http://test/" rel="author contact"
3182 xmlns="http://www.w3.org/1999/xhtml"/>
3183 #errors
3184 /a;no significant content;s
3185 /a/@rel;link type:proposed;s
3186
3187 #data
3188 <a href="http://test/" rel="author author" xmlns="http://www.w3.org/1999/xhtml"/>
3189 #errors
3190 /a/@rel;duplicate token;m
3191 /a;no significant content;s
3192
3193 #data
3194 <a href="http://test/" rel="bookmark" xmlns="http://www.w3.org/1999/xhtml"/>
3195 #errors
3196 /a;no significant content;s
3197
3198 #data
3199 <a href="http://test/" rel="previous" xmlns="http://www.w3.org/1999/xhtml"/>
3200 #errors
3201 /a/@rel;link type:non-conforming;m
3202 /a;no significant content;s
3203
3204 #data
3205 <a href="http://test/" rel="edit" xmlns="http://www.w3.org/1999/xhtml"/>
3206 #errors
3207 /a/@rel;link type:proposed;s
3208 /a;no significant content;s
3209
3210 #data
3211 <a href="http://test/" rel="script" xmlns="http://www.w3.org/1999/xhtml"/>
3212 #errors
3213 /a/@rel;link type:non-conforming;m
3214 /a;no significant content;s
3215
3216 #data
3217 <a href="http://test/" rel="stylesheet" xmlns="http://www.w3.org/1999/xhtml"/>
3218 #errors
3219 /a/@rel;link type:bad context;m
3220 /a;no significant content;s
3221
3222 #data
3223 <a href="http://test/" rel="test-type" xmlns="http://www.w3.org/1999/xhtml"/>
3224 #errors
3225 /a/@rel;unknown link type;u
3226 /a;no significant content;s
3227
3228 #data
3229 <?xml version="1.1"?>
3230 <a href="http://test/" rel="author&#x0b;" xmlns="http://www.w3.org/1999/xhtml"/>
3231 #errors
3232 /a/@rel;unknown link type;u
3233 /a;no significant content;s
3234
3235 #data
3236 <?xml version="1.1"?>
3237 <a href="http://test/" rel="&#x0b;author" xmlns="http://www.w3.org/1999/xhtml"/>
3238 #errors
3239 /a/@rel;unknown link type;u
3240 /a;no significant content;s
3241
3242 #data
3243 <?xml version="1.1"?>
3244 <a href="http://test/" rel="author&#x0b;license" xmlns="http://www.w3.org/1999/xhtml"/>
3245 #errors
3246 /a/@rel;unknown link type;u
3247 /a;no significant content;s
3248
3249 #data
3250 <a href="http://test/" ping="http://a.test/"
3251 xmlns="http://www.w3.org/1999/xhtml"/>
3252 #errors
3253 /a;no significant content;s
3254
3255 #data
3256 <a href="http://test/" ping="http://a.test/ http://b.test/"
3257 xmlns="http://www.w3.org/1999/xhtml"/>
3258 #errors
3259 /a;no significant content;s
3260
3261 #data
3262 <a href="http://test/" ping="http://a.test/ [b.test]"
3263 xmlns="http://www.w3.org/1999/xhtml"/>
3264 #errors
3265 /a/@ping;syntax error:iriref3987;m
3266 /a;no significant content;s
3267
3268 #data
3269 <?xml version="1.1"?>
3270 <a href="http://test/" ping="http://a.test/&#x0b;http://b.test/"
3271 xmlns="http://www.w3.org/1999/xhtml"/>
3272 #errors
3273 /a/@ping;syntax error:iriref3987;m
3274 /a;no significant content;s
3275
3276 #data
3277 <?xml version="1.1"?>
3278 <a href="http://test/" ping="http://a.test/&#x0b;"
3279 xmlns="http://www.w3.org/1999/xhtml"/>
3280 #errors
3281 /a/@ping;syntax error:iriref3987;m
3282 /a;no significant content;s
3283
3284 #data
3285 <?xml version="1.1"?>
3286 <a href="http://test/" ping="&#x0b;http://a.test/"
3287 xmlns="http://www.w3.org/1999/xhtml"/>
3288 #errors
3289 /a/@ping;syntax error:iriref3987;m
3290 /a;no significant content;s
3291
3292 #data
3293 <a href="http://test/" hreflang=""
3294 xmlns="http://www.w3.org/1999/xhtml"/>
3295 #errors
3296 /a/@hreflang;langtag:language:nosemantics;m
3297 /a;no significant content;s
3298
3299 #data
3300 <a href="http://test/" hreflang="en"
3301 xmlns="http://www.w3.org/1999/xhtml"/>
3302 #errors
3303 /a;no significant content;s
3304
3305 #data
3306 <a href="http://test/" media="all"
3307 xmlns="http://www.w3.org/1999/xhtml"/>
3308 #errors
3309 /a/@media;media query;u
3310 /a;no significant content;s
3311
3312 #data
3313 <a href="http://test/" target=""
3314 xmlns="http://www.w3.org/1999/xhtml"/>
3315 #errors
3316 /a;no significant content;s
3317 /a/@target;window name:empty;m
3318
3319 #data
3320 <a href="http://test/" target="_self"
3321 xmlns="http://www.w3.org/1999/xhtml"/>
3322 #errors
3323 /a;no significant content;s
3324
3325 #data
3326 <a href="http://test/" target="_parent"
3327 xmlns="http://www.w3.org/1999/xhtml"/>
3328 #errors
3329 /a;no significant content;s
3330
3331 #data
3332 <a href="http://test/" target="_top"
3333 xmlns="http://www.w3.org/1999/xhtml"/>
3334 #errors
3335 /a;no significant content;s
3336
3337 #data
3338 <a href="http://test/" target="_Top"
3339 xmlns="http://www.w3.org/1999/xhtml"/>
3340 #errors
3341 /a;no significant content;s
3342
3343 #data
3344 <a href="http://test/" target="_TOP"
3345 xmlns="http://www.w3.org/1999/xhtml"/>
3346 #errors
3347 /a;no significant content;s
3348
3349 #data
3350 <a href="http://test/" target="_blank"
3351 xmlns="http://www.w3.org/1999/xhtml"/>
3352 #errors
3353 /a;no significant content;s
3354
3355 #data
3356 <a href="http://test/" target="_main"
3357 xmlns="http://www.w3.org/1999/xhtml"/>
3358 #errors
3359 /a/@target;window name:reserved;m
3360 /a;no significant content;s
3361
3362 #data
3363 <a href="http://test/" target="abcde"
3364 xmlns="http://www.w3.org/1999/xhtml"/>
3365 #errors
3366 /a;no significant content;s
3367
3368 #data
3369 <a href="http://test/" target="_"
3370 xmlns="http://www.w3.org/1999/xhtml"/>
3371 #errors
3372 /a/@target;window name:reserved;m
3373 /a;no significant content;s
3374
3375 #data
3376 <a type="text/css" xmlns="http://www.w3.org/1999/xhtml"/>
3377 #errors
3378 /a/@type;attribute not allowed;m
3379 /a;no significant content;s
3380
3381 #data
3382 <a rel="author" xmlns="http://www.w3.org/1999/xhtml"/>
3383 #errors
3384 /a/@rel;attribute not allowed;m
3385 /a;no significant content;s
3386
3387 #data
3388 <a rev="" xmlns="http://www.w3.org/1999/xhtml">x</a>
3389 #errors
3390 /a/@rev;attribute not defined;m
3391
3392 #data
3393 <a rev="made" xmlns="http://www.w3.org/1999/xhtml">x</a>
3394 #errors
3395 /a/@rev;attribute not defined;m
3396
3397 #data
3398 <a rev=" made" xmlns="http://www.w3.org/1999/xhtml">x</a>
3399 #errors
3400 /a/@rev;attribute not defined;m
3401
3402 #data
3403 <a rev="made made" xmlns="http://www.w3.org/1999/xhtml">x</a>
3404 #errors
3405 /a/@rev;attribute not defined;m
3406 /a/@rev;duplicate token;m
3407
3408 #data
3409 <a ping="a" xmlns="http://www.w3.org/1999/xhtml"/>
3410 #errors
3411 /a/@ping;attribute not allowed;m
3412 /a;no significant content;s
3413
3414 #data
3415 <a hreflang="en" xmlns="http://www.w3.org/1999/xhtml"/>
3416 #errors
3417 /a/@hreflang;attribute not allowed;m
3418 /a;no significant content;s
3419
3420 #data
3421 <a media="screen" xmlns="http://www.w3.org/1999/xhtml"/>
3422 #errors
3423 /a/@media;attribute not allowed;m
3424 /a/@media;media query;u
3425 /a;no significant content;s
3426
3427 #data
3428 <a target="_self"
3429 xmlns="http://www.w3.org/1999/xhtml"/>
3430 #errors
3431 /a/@target;attribute not allowed;m
3432 /a;no significant content;s
3433
3434 #data
3435 <a charset="" xmlns="http://www.w3.org/1999/xhtml">x</a>
3436 #errors
3437 /a/@charset;attribute not defined;m
3438 /a/@charset;charset:syntax error;m
3439 /a/@charset;charset:not registered;w
3440
3441 #data
3442 <a charset="us-ascii" xmlns="http://www.w3.org/1999/xhtml">x</a>
3443 #errors
3444 /a/@charset;attribute not defined;m
3445
3446 #data
3447 <p xmlns="http://www.w3.org/1999/xhtml">
3448 <b><a href="">a</a></b>
3449 <i><a type="text/plain">x</a></i>
3450 </p>
3451 #errors
3452 /p/i/a/@type;attribute not allowed;m
3453
3454 #data
3455 <q cite="http://test/" xmlns="http://www.w3.org/1999/xhtml">x</q>
3456 #errors
3457
3458 #data
3459 <q cite="http://test/%" xmlns="http://www.w3.org/1999/xhtml">x</q>
3460 #errors
3461 /q/@cite;syntax error:iriref3987;m
3462
3463 #data
3464 <big xmlns="http://www.w3.org/1999/xhtml"></big>
3465 #errors
3466 /big;element not defined;m
3467 /big;no significant content;s
3468
3469 #data
3470 <big xmlns="http://www.w3.org/1999/xhtml"> </big>
3471 #errors
3472 /big;element not defined;m
3473 /big;no significant content;s
3474
3475 #data
3476 <big xmlns="http://www.w3.org/1999/xhtml">x</big>
3477 #errors
3478 /big;element not defined;m
3479
3480 #data
3481 <big xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></big>
3482 #errors
3483 /big;element not defined;m
3484
3485 #data
3486 <big xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</big>
3487 #errors
3488 /big;element not defined;m
3489 /big/style;element not allowed:phrasing;m
3490 /big/style;SUBDOC
3491
3492 #data
3493 <big xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></big>
3494 #errors
3495 /big;element not defined;m
3496 /big/p;element not allowed:phrasing;m
3497
3498 #data
3499 <span xmlns="http://www.w3.org/1999/xhtml"><big>xx</big></span>
3500 #errors
3501 /span/big;element not allowed:phrasing;m
3502 /span/big;element not defined;m
3503
3504 #data
3505 <div xmlns="http://www.w3.org/1999/xhtml"><big>xx</big></div>
3506 #errors
3507 /div/big;element not allowed:flow;m
3508 /div/big;element not defined;m
3509
3510 #data
3511 <rule xmlns="http://www.w3.org/1999/xhtml"><big>xx</big></rule>
3512 #errors
3513 /rule/big;element not defined;m
3514
3515 #data
3516 <acronym xmlns="http://www.w3.org/1999/xhtml"></acronym>
3517 #errors
3518 /acronym;element not defined;m
3519 /acronym;no significant content;s
3520
3521 #data
3522 <acronym xmlns="http://www.w3.org/1999/xhtml"> </acronym>
3523 #errors
3524 /acronym;element not defined;m
3525 /acronym;no significant content;s
3526
3527 #data
3528 <acronym xmlns="http://www.w3.org/1999/xhtml">x</acronym>
3529 #errors
3530 /acronym;element not defined;m
3531
3532 #data
3533 <acronym xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></acronym>
3534 #errors
3535 /acronym;element not defined;m
3536
3537 #data
3538 <acronym xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</acronym>
3539 #errors
3540 /acronym;element not defined;m
3541 /acronym/style;element not allowed:phrasing;m
3542 /acronym/style;SUBDOC
3543
3544 #data
3545 <acronym xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></acronym>
3546 #errors
3547 /acronym;element not defined;m
3548 /acronym/p;element not allowed:phrasing;m
3549
3550 #data
3551 <span xmlns="http://www.w3.org/1999/xhtml"><acronym>xx</acronym></span>
3552 #errors
3553 /span/acronym;element not allowed:phrasing;m
3554 /span/acronym;element not defined;m
3555
3556 #data
3557 <div xmlns="http://www.w3.org/1999/xhtml"><acronym>xx</acronym></div>
3558 #errors
3559 /div/acronym;element not allowed:flow;m
3560 /div/acronym;element not defined;m
3561
3562 #data
3563 <rule xmlns="http://www.w3.org/1999/xhtml"><acronym>xx</acronym></rule>
3564 #errors
3565 /rule/acronym;element not defined;m
3566
3567 #data
3568 <meter value="" xmlns="http://www.w3.org/1999/xhtml"/>
3569 #errors
3570 /meter/@value;float:syntax error;m
3571 /meter;no significant content;s
3572
3573 #data
3574 <meter value="1" xmlns="http://www.w3.org/1999/xhtml"/>
3575 #errors
3576 /meter;no significant content;s
3577
3578 #data
3579 <meter value="111" xmlns="http://www.w3.org/1999/xhtml"/>
3580 #errors
3581 /meter;no significant content;s
3582
3583 #data
3584 <meter value="0001" xmlns="http://www.w3.org/1999/xhtml"/>
3585 #errors
3586 /meter;no significant content;s
3587
3588 #data
3589 <meter value="0" xmlns="http://www.w3.org/1999/xhtml"/>
3590 #errors
3591 /meter;no significant content;s
3592
3593 #data
3594 <meter value="-1" xmlns="http://www.w3.org/1999/xhtml"/>
3595 #errors
3596 /meter;no significant content;s
3597
3598 #data
3599 <meter value="-1000" xmlns="http://www.w3.org/1999/xhtml"/>
3600 #errors
3601 /meter;no significant content;s
3602
3603 #data
3604 <meter value="-0" xmlns="http://www.w3.org/1999/xhtml"/>
3605 #errors
3606 /meter;no significant content;s
3607
3608 #data
3609 <meter value="0000" xmlns="http://www.w3.org/1999/xhtml"/>
3610 #errors
3611 /meter;no significant content;s
3612
3613 #data
3614 <meter value="0.1" xmlns="http://www.w3.org/1999/xhtml"/>
3615 #errors
3616 /meter;no significant content;s
3617
3618 #data
3619 <meter value="1.1" xmlns="http://www.w3.org/1999/xhtml"/>
3620 #errors
3621 /meter;no significant content;s
3622
3623 #data
3624 <meter value=".1" xmlns="http://www.w3.org/1999/xhtml"/>
3625 #errors
3626 /meter;no significant content;s
3627
3628 #data
3629 <meter value=".0" xmlns="http://www.w3.org/1999/xhtml"/>
3630 #errors
3631 /meter;no significant content;s
3632
3633 #data
3634 <meter value="1." xmlns="http://www.w3.org/1999/xhtml"/>
3635 #errors
3636 /meter;no significant content;s
3637
3638 #data
3639 <meter value="1.0000" xmlns="http://www.w3.org/1999/xhtml"/>
3640 #errors
3641 /meter;no significant content;s
3642
3643 #data
3644 <meter value="123." xmlns="http://www.w3.org/1999/xhtml"/>
3645 #errors
3646 /meter;no significant content;s
3647
3648 #data
3649 <meter value="-.1" xmlns="http://www.w3.org/1999/xhtml"/>
3650 #errors
3651 /meter;no significant content;s
3652
3653 #data
3654 <meter value="-1." xmlns="http://www.w3.org/1999/xhtml"/>
3655 #errors
3656 /meter;no significant content;s
3657
3658 #data
3659 <meter value="1aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3660 #errors
3661 /meter/@value;float:syntax error;m
3662 /meter;no significant content;s
3663
3664 #data
3665 <meter value="1&#x0D;" xmlns="http://www.w3.org/1999/xhtml"/>
3666 #errors
3667 /meter/@value;float:syntax error;m
3668 /meter;no significant content;s
3669
3670 #data
3671 <meter value="1&#x0A;" xmlns="http://www.w3.org/1999/xhtml"/>
3672 #errors
3673 /meter/@value;float:syntax error;m
3674 /meter;no significant content;s
3675
3676 #data
3677 <meter value="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3678 #errors
3679 /meter/@value;float:syntax error;m
3680 /meter;no significant content;s
3681
3682 #data
3683 <meter value="+1" xmlns="http://www.w3.org/1999/xhtml"/>
3684 #errors
3685 /meter/@value;float:syntax error;m
3686 /meter;no significant content;s
3687
3688 #data
3689 <meter value="+1.2" xmlns="http://www.w3.org/1999/xhtml"/>
3690 #errors
3691 /meter/@value;float:syntax error;m
3692 /meter;no significant content;s
3693
3694 #data
3695 <meter value=".-1" xmlns="http://www.w3.org/1999/xhtml"/>
3696 #errors
3697 /meter/@value;float:syntax error;m
3698 /meter;no significant content;s
3699
3700 #data
3701 <meter value="0.-1" xmlns="http://www.w3.org/1999/xhtml"/>
3702 #errors
3703 /meter/@value;float:syntax error;m
3704 /meter;no significant content;s
3705
3706 #data
3707 <meter value="." xmlns="http://www.w3.org/1999/xhtml"/>
3708 #errors
3709 /meter/@value;float:syntax error;m
3710 /meter;no significant content;s
3711
3712 #data
3713 <meter min="2" xmlns="http://www.w3.org/1999/xhtml"/>
3714 #errors
3715 /meter;no significant content;s
3716
3717 #data
3718 <meter min="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3719 #errors
3720 /meter/@min;float:syntax error;m
3721 /meter;no significant content;s
3722
3723 #data
3724 <meter low="2" xmlns="http://www.w3.org/1999/xhtml"/>
3725 #errors
3726 /meter;no significant content;s
3727
3728 #data
3729 <meter low="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3730 #errors
3731 /meter/@low;float:syntax error;m
3732 /meter;no significant content;s
3733
3734 #data
3735 <meter high="2" xmlns="http://www.w3.org/1999/xhtml"/>
3736 #errors
3737 /meter;no significant content;s
3738
3739 #data
3740 <meter high="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3741 #errors
3742 /meter/@high;float:syntax error;m
3743 /meter;no significant content;s
3744
3745 #data
3746 <meter max="2" xmlns="http://www.w3.org/1999/xhtml"/>
3747 #errors
3748 /meter;no significant content;s
3749
3750 #data
3751 <meter max="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3752 #errors
3753 /meter/@max;float:syntax error;m
3754 /meter;no significant content;s
3755
3756 #data
3757 <meter optimum="2" xmlns="http://www.w3.org/1999/xhtml"/>
3758 #errors
3759 /meter;no significant content;s
3760
3761 #data
3762 <meter optimum="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3763 #errors
3764 /meter/@optimum;float:syntax error;m
3765 /meter;no significant content;s
3766
3767 #data
3768 <meter min="43" max="2" xmlns="http://www.w3.org/1999/xhtml"/>
3769 #errors
3770 /meter;no significant content;s
3771
3772 #data
3773 <meter value="43" max="2" xmlns="http://www.w3.org/1999/xhtml"/>
3774 #errors
3775 /meter;no significant content;s
3776
3777 #data
3778 <progress max="2" xmlns="http://www.w3.org/1999/xhtml"/>
3779 #errors
3780 /progress;no significant content;s
3781
3782 #data
3783 <progress max="0.0001" xmlns="http://www.w3.org/1999/xhtml"/>
3784 #errors
3785 /progress;no significant content;s
3786
3787 #data
3788 <progress max="0" xmlns="http://www.w3.org/1999/xhtml"/>
3789 #errors
3790 /progress/@max;float:out of range;m
3791 /progress;no significant content;s
3792
3793 #data
3794 <progress max="-1" xmlns="http://www.w3.org/1999/xhtml"/>
3795 #errors
3796 /progress/@max;float:out of range;m
3797 /progress;no significant content;s
3798
3799 #data
3800 <progress max="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3801 #errors
3802 /progress/@max;float:syntax error;m
3803 /progress;no significant content;s
3804
3805 #data
3806 <progress value="2" xmlns="http://www.w3.org/1999/xhtml"/>
3807 #errors
3808 /progress;no significant content;s
3809
3810 #data
3811 <progress value="0.0001" xmlns="http://www.w3.org/1999/xhtml"/>
3812 #errors
3813 /progress;no significant content;s
3814
3815 #data
3816 <progress value="0" xmlns="http://www.w3.org/1999/xhtml"/>
3817 #errors
3818 /progress;no significant content;s
3819
3820 #data
3821 <progress value="100" max="2" xmlns="http://www.w3.org/1999/xhtml"/>
3822 #errors
3823 /progress;no significant content;s
3824
3825 #data
3826 <progress value="-1" xmlns="http://www.w3.org/1999/xhtml"/>
3827 #errors
3828 /progress/@value;float:out of range;m
3829 /progress;no significant content;s
3830
3831 #data
3832 <progress value="aaaa" xmlns="http://www.w3.org/1999/xhtml"/>
3833 #errors
3834 /progress/@value;float:syntax error;m
3835 /progress;no significant content;s
3836
3837 #data
3838 <bdo xmlns="http://www.w3.org/1999/xhtml">x</bdo>
3839 #errors
3840 /bdo;attribute missing;dir;m
3841
3842 #data
3843 <bdo dir="ltr" xmlns="http://www.w3.org/1999/xhtml">x</bdo>
3844 #errors
3845
3846 #data
3847 <bdo dir="rtl" xmlns="http://www.w3.org/1999/xhtml">x</bdo>
3848 #errors
3849
3850 #data
3851 <bdo dir="RTL" xmlns="http://www.w3.org/1999/xhtml">x</bdo>
3852 #errors
3853
3854 #data
3855 <bdo dir="xxx" xmlns="http://www.w3.org/1999/xhtml">x</bdo>
3856 #errors
3857 /bdo/@dir;enumerated:invalid;m
3858
3859 #data
3860 <tt xmlns="http://www.w3.org/1999/xhtml"></tt>
3861 #errors
3862 /tt;element not defined;m
3863 /tt;no significant content;s
3864
3865 #data
3866 <tt xmlns="http://www.w3.org/1999/xhtml"> </tt>
3867 #errors
3868 /tt;element not defined;m
3869 /tt;no significant content;s
3870
3871 #data
3872 <tt xmlns="http://www.w3.org/1999/xhtml">x</tt>
3873 #errors
3874 /tt;element not defined;m
3875
3876 #data
3877 <tt xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></tt>
3878 #errors
3879 /tt;element not defined;m
3880
3881 #data
3882 <tt xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</tt>
3883 #errors
3884 /tt;element not defined;m
3885 /tt/style;element not allowed:phrasing;m
3886 /tt/style;SUBDOC
3887
3888 #data
3889 <tt xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></tt>
3890 #errors
3891 /tt;element not defined;m
3892 /tt/p;element not allowed:phrasing;m
3893
3894 #data
3895 <span xmlns="http://www.w3.org/1999/xhtml"><tt>xx</tt></span>
3896 #errors
3897 /span/tt;element not allowed:phrasing;m
3898 /span/tt;element not defined;m
3899
3900 #data
3901 <div xmlns="http://www.w3.org/1999/xhtml"><tt>xx</tt></div>
3902 #errors
3903 /div/tt;element not allowed:flow;m
3904 /div/tt;element not defined;m
3905
3906 #data
3907 <rule xmlns="http://www.w3.org/1999/xhtml"><tt>xx</tt></rule>
3908 #errors
3909 /rule/tt;element not defined;m
3910
3911 #data
3912 <s xmlns="http://www.w3.org/1999/xhtml"></s>
3913 #errors
3914 /s;element not defined;m
3915 /s;no significant content;s
3916
3917 #data
3918 <s xmlns="http://www.w3.org/1999/xhtml"> </s>
3919 #errors
3920 /s;element not defined;m
3921 /s;no significant content;s
3922
3923 #data
3924 <s xmlns="http://www.w3.org/1999/xhtml">x</s>
3925 #errors
3926 /s;element not defined;m
3927
3928 #data
3929 <s xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></s>
3930 #errors
3931 /s;element not defined;m
3932
3933 #data
3934 <s xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</s>
3935 #errors
3936 /s;element not defined;m
3937 /s/style;element not allowed:phrasing;m
3938 /s/style;SUBDOC
3939
3940 #data
3941 <s xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></s>
3942 #errors
3943 /s;element not defined;m
3944 /s/p;element not allowed:phrasing;m
3945
3946 #data
3947 <span xmlns="http://www.w3.org/1999/xhtml"><s>xx</s></span>
3948 #errors
3949 /span/s;element not allowed:phrasing;m
3950 /span/s;element not defined;m
3951
3952 #data
3953 <div xmlns="http://www.w3.org/1999/xhtml"><s>xx</s></div>
3954 #errors
3955 /div/s;element not allowed:flow;m
3956 /div/s;element not defined;m
3957
3958 #data
3959 <rule xmlns="http://www.w3.org/1999/xhtml"><s>xx</s></rule>
3960 #errors
3961 /rule/s;element not defined;m
3962
3963 #data
3964 <strike xmlns="http://www.w3.org/1999/xhtml"></strike>
3965 #errors
3966 /strike;element not defined;m
3967 /strike;no significant content;s
3968
3969 #data
3970 <strike xmlns="http://www.w3.org/1999/xhtml"> </strike>
3971 #errors
3972 /strike;element not defined;m
3973 /strike;no significant content;s
3974
3975 #data
3976 <strike xmlns="http://www.w3.org/1999/xhtml">x</strike>
3977 #errors
3978 /strike;element not defined;m
3979
3980 #data
3981 <strike xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></strike>
3982 #errors
3983 /strike;element not defined;m
3984
3985 #data
3986 <strike xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</strike>
3987 #errors
3988 /strike;element not defined;m
3989 /strike/style;element not allowed:phrasing;m
3990 /strike/style;SUBDOC
3991
3992 #data
3993 <strike xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></strike>
3994 #errors
3995 /strike;element not defined;m
3996 /strike/p;element not allowed:phrasing;m
3997
3998 #data
3999 <span xmlns="http://www.w3.org/1999/xhtml"><strike>xx</strike></span>
4000 #errors
4001 /span/strike;element not allowed:phrasing;m
4002 /span/strike;element not defined;m
4003
4004 #data
4005 <div xmlns="http://www.w3.org/1999/xhtml"><strike>xx</strike></div>
4006 #errors
4007 /div/strike;element not allowed:flow;m
4008 /div/strike;element not defined;m
4009
4010 #data
4011 <rule xmlns="http://www.w3.org/1999/xhtml"><strike>xx</strike></rule>
4012 #errors
4013 /rule/strike;element not defined;m
4014
4015 #data
4016 <u xmlns="http://www.w3.org/1999/xhtml"></u>
4017 #errors
4018 /u;element not defined;m
4019 /u;no significant content;s
4020
4021 #data
4022 <u xmlns="http://www.w3.org/1999/xhtml"> </u>
4023 #errors
4024 /u;element not defined;m
4025 /u;no significant content;s
4026
4027 #data
4028 <u xmlns="http://www.w3.org/1999/xhtml">x</u>
4029 #errors
4030 /u;element not defined;m
4031
4032 #data
4033 <u xmlns="http://www.w3.org/1999/xhtml"><em>xx</em></u>
4034 #errors
4035 /u;element not defined;m
4036
4037 #data
4038 <u xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</u>
4039 #errors
4040 /u;element not defined;m
4041 /u/style;element not allowed:phrasing;m
4042 /u/style;SUBDOC
4043
4044 #data
4045 <u xmlns="http://www.w3.org/1999/xhtml"><p>xx</p></u>
4046 #errors
4047 /u;element not defined;m
4048 /u/p;element not allowed:phrasing;m
4049
4050 #data
4051 <span xmlns="http://www.w3.org/1999/xhtml"><u>xx</u></span>
4052 #errors
4053 /span/u;element not allowed:phrasing;m
4054 /span/u;element not defined;m
4055
4056 #data
4057 <div xmlns="http://www.w3.org/1999/xhtml"><u>xx</u></div>
4058 #errors
4059 /div/u;element not allowed:flow;m
4060 /div/u;element not defined;m
4061
4062 #data
4063 <rule xmlns="http://www.w3.org/1999/xhtml"><u>xx</u></rule>
4064 #errors
4065 /rule/u;element not defined;m
4066
4067 #data
4068 <ins cite="http://test/" xmlns="http://www.w3.org/1999/xhtml">x</ins>
4069 #errors
4070
4071 #data
4072 <ins cite="http://test/100%/" xmlns="http://www.w3.org/1999/xhtml">x</ins>
4073 #errors
4074 /ins/@cite;syntax error:iriref3987;m
4075
4076 #data
4077 <ins xmlns="http://www.w3.org/1999/xhtml"
4078 datetime="">x</ins>
4079 #errors
4080 /ins/@datetime;datetime:syntax error;m
4081
4082 #data
4083 <ins xmlns="http://www.w3.org/1999/xhtml"
4084 datetime="2007-05">x</ins>
4085 #errors
4086 /ins/@datetime;datetime:syntax error;m
4087
4088 #data
4089 <ins xmlns="http://www.w3.org/1999/xhtml"
4090 datetime="2007-06">x</ins>
4091 #errors
4092 /ins/@datetime;datetime:syntax error;m
4093
4094 #data
4095 <ins xmlns="http://www.w3.org/1999/xhtml"
4096 datetime="2007-08-09">x</ins>
4097 #errors
4098 /ins/@datetime;datetime:syntax error;m
4099
4100 #data
4101 <ins xmlns="http://www.w3.org/1999/xhtml"
4102 datetime="2007-09-10T00:12">x</ins>
4103 #errors
4104 /ins/@datetime;datetime:syntax error;m
4105
4106 #data
4107 <ins xmlns="http://www.w3.org/1999/xhtml"
4108 datetime="2007-09-23T33:34:23">x</ins>
4109 #errors
4110 /ins/@datetime;datetime:syntax error;m
4111
4112 #data
4113 <ins xmlns="http://www.w3.org/1999/xhtml"
4114 datetime="2007-04-31T33:11:00+09">x</ins>
4115 #errors
4116 /ins/@datetime;datetime:syntax error;m
4117
4118 #data
4119 <ins xmlns="http://www.w3.org/1999/xhtml"
4120 datetime="0037-12-13 00:00 Z">x</ins>
4121 #errors
4122
4123 #data
4124 <?xml version="1.1"?>
4125 <ins xmlns="http://www.w3.org/1999/xhtml"
4126 datetime="0037-12-13&#x000b;00:00 Z">x</ins>
4127 #errors
4128 /ins/@datetime;datetime:syntax error;m
4129
4130 #data
4131 <?xml version="1.1"?>
4132 <ins xmlns="http://www.w3.org/1999/xhtml"
4133 datetime="0037-12-13T&#x000b;00:00 Z">x</ins>
4134 #errors
4135 /ins/@datetime;datetime:syntax error;m
4136
4137 #data
4138 <?xml version="1.1"?>
4139 <ins xmlns="http://www.w3.org/1999/xhtml"
4140 datetime="0037-12-13&#x000b;T00:00 Z">x</ins>
4141 #errors
4142 /ins/@datetime;datetime:syntax error;m
4143
4144 #data
4145 <?xml version="1.1"?>
4146 <ins xmlns="http://www.w3.org/1999/xhtml"
4147 datetime="0037-12-13 00:00&#x000b;Z">x</ins>
4148 #errors
4149 /ins/@datetime;datetime:syntax error;m
4150
4151 #data
4152 <ins xmlns="http://www.w3.org/1999/xhtml"
4153 datetime="1979-10-14T12:00:00.001-04:00">x</ins>
4154 #errors
4155
4156 #data
4157 <ins xmlns="http://www.w3.org/1999/xhtml"
4158 datetime="8592-01-01 T 02:09 +02:09">x</ins>
4159 #errors
4160
4161 #data
4162 <ins xmlns="http://www.w3.org/1999/xhtml"
4163 datetime="2007-04-12T00:00Z">x</ins>
4164 #errors
4165
4166 #data
4167 <ins xmlns="http://www.w3.org/1999/xhtml"
4168 datetime="10000-10-31T00:44Z">x</ins>
4169 #errors
4170 /ins/@datetime;datetime:syntax error;m
4171
4172 #data
4173 <ins xmlns="http://www.w3.org/1999/xhtml"
4174 datetime="-3333-03-14T14:33Z">x</ins>
4175 #errors
4176 /ins/@datetime;datetime:syntax error;m
4177
4178 #data
4179 <ins xmlns="http://www.w3.org/1999/xhtml"
4180 datetime="1999-06-23 T04:44Z">x</ins>
4181 #errors
4182
4183 #data
4184 <ins xmlns="http://www.w3.org/1999/xhtml"
4185 datetime="4444-06-22 T 11:22Z">x</ins>
4186 #errors
4187
4188 #data
4189 <ins xmlns="http://www.w3.org/1999/xhtml"
4190 datetime="98-02-12T11:22Z">x</ins>
4191 #errors
4192 /ins/@datetime;datetime:syntax error;m
4193
4194 #data
4195 <ins xmlns="http://www.w3.org/1999/xhtml"
4196 datetime="2007-02-29T00:00Z">x</ins>
4197 #errors
4198 /ins/@datetime;datetime:bad day;m
4199
4200 #data
4201 <ins xmlns="http://www.w3.org/1999/xhtml"
4202 datetime="2008-02-29T00:00Z">x</ins>
4203 #errors
4204
4205 #data
4206 <ins xmlns="http://www.w3.org/1999/xhtml"
4207 datetime="2000-02-29T00:00Z">x</ins>
4208 #errors
4209
4210 #data
4211 <ins xmlns="http://www.w3.org/1999/xhtml"
4212 datetime="1900-02-29T00:00Z">x</ins>
4213 #errors
4214 /ins/@datetime;datetime:bad day;m
4215
4216 #data
4217 <ins xmlns="http://www.w3.org/1999/xhtml"
4218 datetime="2007-02-30T00:00Z">x</ins>
4219 #errors
4220 /ins/@datetime;datetime:bad day;m
4221
4222 #data
4223 <ins xmlns="http://www.w3.org/1999/xhtml"
4224 datetime="2000-02-30T00:00Z">x</ins>
4225 #errors
4226 /ins/@datetime;datetime:bad day;m
4227
4228 #data
4229 <ins xmlns="http://www.w3.org/1999/xhtml"
4230 datetime="2007-01-32T00:00Z">xM</ins>
4231 #errors
4232 /ins/@datetime;datetime:bad day;m
4233
4234 #data
4235 <ins xmlns="http://www.w3.org/1999/xhtml"
4236 datetime="2007-01-00T00:00Z">x</ins>
4237 #errors
4238 /ins/@datetime;datetime:bad day;m
4239
4240 #data
4241 <ins xmlns="http://www.w3.org/1999/xhtml"
4242 datetime="2007-00-29T00:00Z">x</ins>
4243 #errors
4244 /ins/@datetime;datetime:bad month;m
4245
4246 #data
4247 <ins xmlns="http://www.w3.org/1999/xhtml"
4248 datetime="2007-13-29T00:00Z">x</ins>
4249 #errors
4250 /ins/@datetime;datetime:bad month;m
4251
4252 #data
4253 <ins xmlns="http://www.w3.org/1999/xhtml"
4254 datetime="2007-02-21T23:00Z">x</ins>
4255 #errors
4256
4257 #data
4258 <ins xmlns="http://www.w3.org/1999/xhtml"
4259 datetime="2007-02-21T24:00Z">x</ins>
4260 #errors
4261 /ins/@datetime;datetime:bad hour;m
4262
4263 #data
4264 <ins xmlns="http://www.w3.org/1999/xhtml"
4265 datetime="2007-02-21T23:59Z">x</ins>
4266 #errors
4267
4268 #data
4269 <ins xmlns="http://www.w3.org/1999/xhtml"
4270 datetime="2007-02-21T23:60Z">x</ins>
4271 #errors
4272 /ins/@datetime;datetime:bad minute;m
4273
4274 #data
4275 <ins xmlns="http://www.w3.org/1999/xhtml"
4276 datetime="2007-02-21T23:00:60Z">x</ins>
4277 #errors
4278 /ins/@datetime;datetime:bad second;m
4279
4280 #data
4281 <ins xmlns="http://www.w3.org/1999/xhtml"
4282 datetime="2007-02-21T23:00:61Z">x</ins>
4283 #errors
4284 /ins/@datetime;datetime:bad second;m
4285
4286 #data
4287 <ins xmlns="http://www.w3.org/1999/xhtml"
4288 datetime="2007-02-21T23:00:00.123Z">xM</ins>
4289 #errors
4290
4291 #data
4292 <ins xmlns="http://www.w3.org/1999/xhtml"
4293 datetime="2007-02-21T23:00.124444Z">x</ins>
4294 #errors
4295
4296 #data
4297 <ins xmlns="http://www.w3.org/1999/xhtml"
4298 datetime="2007-02-21T23:00.Z">x</ins>
4299 #errors
4300 /ins/@datetime;datetime:syntax error;m
4301
4302 #data
4303 <ins xmlns="http://www.w3.org/1999/xhtml"
4304 datetime="2007-02-21T23:00+09:00">x</ins>
4305 #errors
4306
4307 #data
4308 <ins xmlns="http://www.w3.org/1999/xhtml"
4309 datetime="2007-02-21T23:00-09:00">x</ins>
4310 #errors
4311
4312 #data
4313 <ins xmlns="http://www.w3.org/1999/xhtml"
4314 datetime="2007-02-21T23:00 +09:00">xm</ins>
4315 #errors
4316
4317 #data
4318 <ins xmlns="http://www.w3.org/1999/xhtml"
4319 datetime="2007-02-21T23:00+0900">x</ins>
4320 #errors
4321 /ins/@datetime;datetime:syntax error;m
4322
4323 #data
4324 <ins xmlns="http://www.w3.org/1999/xhtml"
4325 datetime="2007-02-21T23:00A">x</ins>
4326 #errors
4327 /ins/@datetime;datetime:syntax error;m
4328
4329 #data
4330 <ins xmlns="http://www.w3.org/1999/xhtml"
4331 datetime="2007-02-21T23:00z">x</ins>
4332 #errors
4333 /ins/@datetime;datetime:syntax error;m
4334
4335 #data
4336 <ins xmlns="http://www.w3.org/1999/xhtml"
4337 datetime="2007-02-21t23:00Z">x</ins>
4338 #errors
4339 /ins/@datetime;datetime:syntax error;m
4340
4341 #data
4342 <ins xmlns="http://www.w3.org/1999/xhtml"
4343 datetime="2007-02-21T23:00+23:00">x</ins>
4344 #errors
4345
4346 #data
4347 <ins xmlns="http://www.w3.org/1999/xhtml"
4348 datetime="2007-02-21T23:00+24:00">x</ins>
4349 #errors
4350 /ins/@datetime;datetime:bad timezone hour;m
4351
4352 #data
4353 <ins xmlns="http://www.w3.org/1999/xhtml"
4354 datetime="2007-02-21T23:00-23:00">x</ins>
4355 #errors
4356
4357 #data
4358 <ins xmlns="http://www.w3.org/1999/xhtml"
4359 datetime="2007-02-21T23:00-24:00">x</ins>
4360 #errors
4361 /ins/@datetime;datetime:bad timezone hour;m
4362
4363 #data
4364 <ins xmlns="http://www.w3.org/1999/xhtml"
4365 datetime="2007-02-21T23:00-00:00">x</ins>
4366 #errors
4367
4368 #data
4369 <ins xmlns="http://www.w3.org/1999/xhtml"
4370 datetime="2007-02-21T23:00+00:14.5">x</ins>
4371 #errors
4372 /ins/@datetime;datetime:syntax error;m
4373
4374 #data
4375 <ins xmlns="http://www.w3.org/1999/xhtml"
4376 datetime="2007-02-21T23:00+00:59">xM</ins>
4377 #errors
4378
4379 #data
4380 <ins xmlns="http://www.w3.org/1999/xhtml"
4381 datetime="2007-02-21T23:00+00:60">x</ins>
4382 #errors
4383 /ins/@datetime;datetime:bad timezone minute;m
4384
4385 #data
4386 <ins xmlns="http://www.w3.org/1999/xhtml"
4387 datetime="2007-02-21T23:00-00:60">x</ins>
4388 #errors
4389 /ins/@datetime;datetime:bad timezone minute;m
4390
4391 #data
4392 <ins xmlns="http://www.w3.org/1999/xhtml"
4393 datetime="2007-02-21T23:00 00:00">x</ins>
4394 #errors
4395 /ins/@datetime;datetime:syntax error;m
4396
4397 #data
4398 <ins xmlns="http://www.w3.org/1999/xhtml"
4399 datetime="2007-02-21T23:00Z ">x</ins>
4400 #errors
4401 /ins/@datetime;datetime:syntax error;m
4402
4403 #data
4404 <ins xmlns="http://www.w3.org/1999/xhtml"
4405 datetime=" 2007-02-21T23:00Z">s</ins>
4406 #errors
4407 /ins/@datetime;datetime:syntax error;m
4408
4409 #data
4410 <del cite="http://test/" xmlns="http://www.w3.org/1999/xhtml">x</del>
4411 #errors
4412
4413 #data
4414 <del cite='"about:"' xmlns="http://www.w3.org/1999/xhtml">x</del>
4415 #errors
4416 /del/@cite;syntax error:iriref3987;m
4417
4418 #data
4419 <del xmlns="http://www.w3.org/1999/xhtml"
4420 datetime="2007-02-21T23:00Z">x</del>
4421 #errors
4422
4423 #data
4424 <del xmlns="http://www.w3.org/1999/xhtml"
4425 datetime="2007-02-31T23:00Z">x</del>
4426 #errors
4427 /del/@datetime;datetime:bad day;m
4428
4429 #data
4430 <img xmlns="http://www.w3.org/1999/xhtml"/>
4431 #errors
4432 /img;attribute missing;alt;s
4433 /img;attribute missing;src;m
4434
4435 #data
4436 <img alt="" xmlns="http://www.w3.org/1999/xhtml"/>
4437 #errors
4438 /img;attribute missing;src;m
4439
4440 #data
4441 <img src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
4442 #errors
4443 /img;attribute missing;alt;s
4444
4445 #data
4446 <img alt="" src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
4447 #errors
4448
4449 #data
4450 <img alt="" src="http://test/`" xmlns="http://www.w3.org/1999/xhtml"/>
4451 #errors
4452 /img/@src;syntax error:iriref3987;m
4453
4454 #data
4455 <img alt="" src="" longdesc="" xmlns="http://www.w3.org/1999/xhtml"/>
4456 #errors
4457 /img/@longdesc;attribute not defined;m
4458
4459 #data
4460 <img alt="" src="" longdesc="http://www.example.com/"
4461 xmlns="http://www.w3.org/1999/xhtml"/>
4462 #errors
4463 /img/@longdesc;attribute not defined;m
4464
4465 #data
4466 <img alt="" src="" longdesc="[]" xmlns="http://www.w3.org/1999/xhtml"/>
4467 #errors
4468 /img/@longdesc;attribute not defined;m
4469 /img/@longdesc;syntax error:iriref3987;m
4470
4471 #data
4472 <img alt="" src="" hspace="0" xmlns="http://www.w3.org/1999/xhtml"/>
4473 #errors
4474 /img/@hspace;attribute not defined;m
4475
4476 #data
4477 <img alt="" src="" vspace="0" xmlns="http://www.w3.org/1999/xhtml"/>
4478 #errors
4479 /img/@vspace;attribute not defined;m
4480
4481 #data
4482 <img alt="" src="" hspace="120" xmlns="http://www.w3.org/1999/xhtml"/>
4483 #errors
4484 /img/@hspace;attribute not defined;m
4485
4486 #data
4487 <img alt="" src="" vspace="120" xmlns="http://www.w3.org/1999/xhtml"/>
4488 #errors
4489 /img/@vspace;attribute not defined;m
4490
4491 #data
4492 <img alt="" src="" hspace="1.0" xmlns="http://www.w3.org/1999/xhtml"/>
4493 #errors
4494 /img/@hspace;attribute not defined;m
4495 /img/@hspace;nninteger:syntax error;m
4496
4497 #data
4498 <img alt="" src="" vspace="1.0" xmlns="http://www.w3.org/1999/xhtml"/>
4499 #errors
4500 /img/@vspace;attribute not defined;m
4501 /img/@vspace;nninteger:syntax error;m
4502
4503 #data
4504 <img alt="" src="" hspace="10px" xmlns="http://www.w3.org/1999/xhtml"/>
4505 #errors
4506 /img/@hspace;attribute not defined;m
4507 /img/@hspace;nninteger:syntax error;m
4508
4509 #data
4510 <img alt="" src="" vspace="10px" xmlns="http://www.w3.org/1999/xhtml"/>
4511 #errors
4512 /img/@vspace;attribute not defined;m
4513 /img/@vspace;nninteger:syntax error;m
4514
4515 #data
4516 <img alt="" src="" hspace="0 " xmlns="http://www.w3.org/1999/xhtml"/>
4517 #errors
4518 /img/@hspace;attribute not defined;m
4519 /img/@hspace;nninteger:syntax error;m
4520
4521 #data
4522 <img alt="" src="" vspace=" 0" xmlns="http://www.w3.org/1999/xhtml"/>
4523 #errors
4524 /img/@vspace;nninteger:syntax error;m
4525 /img/@vspace;attribute not defined;m
4526
4527 #data
4528 <img alt="" src="" hspace="0%" xmlns="http://www.w3.org/1999/xhtml"/>
4529 #errors
4530 /img/@hspace;attribute not defined;m
4531 /img/@hspace;nninteger:syntax error;m
4532
4533 #data
4534 <img alt="" src="" vspace="20%" xmlns="http://www.w3.org/1999/xhtml"/>
4535 #errors
4536 /img/@vspace;attribute not defined;m
4537 /img/@vspace;nninteger:syntax error;m
4538
4539 #data
4540 <img alt="" src="" hspace="-0" xmlns="http://www.w3.org/1999/xhtml"/>
4541 #errors
4542 /img/@hspace;attribute not defined;m
4543 /img/@hspace;nninteger:syntax error;m
4544
4545 #data
4546 <img alt="" src="" vspace="-0" xmlns="http://www.w3.org/1999/xhtml"/>
4547 #errors
4548 /img/@vspace;attribute not defined;m
4549 /img/@vspace;nninteger:syntax error;m
4550
4551 #data
4552 <img alt="" src="" border="0" xmlns="http://www.w3.org/1999/xhtml"/>
4553 #errors
4554 /img/@border;attribute not defined;m
4555
4556 #data
4557 <img alt="" src="" border="4563" xmlns="http://www.w3.org/1999/xhtml"/>
4558 #errors
4559 /img/@border;attribute not defined;m
4560
4561 #data
4562 <img alt="" src="" border="-0" xmlns="http://www.w3.org/1999/xhtml"/>
4563 #errors
4564 /img/@border;attribute not defined;m
4565 /img/@border;nninteger:syntax error;m
4566
4567 #data
4568 <img alt="" src="" border="10-0" xmlns="http://www.w3.org/1999/xhtml"/>
4569 #errors
4570 /img/@border;attribute not defined;m
4571 /img/@border;nninteger:syntax error;m
4572
4573 #data
4574 <img alt="" src="" border="none" xmlns="http://www.w3.org/1999/xhtml"/>
4575 #errors
4576 /img/@border;attribute not defined;m
4577 /img/@border;nninteger:syntax error;m
4578
4579 #data
4580 <img alt="" src="" border="" xmlns="http://www.w3.org/1999/xhtml"/>
4581 #errors
4582 /img/@border;attribute not defined;m
4583 /img/@border;nninteger:syntax error;m
4584
4585 #data
4586 <img alt="" src="" noborder="" xmlns="http://www.w3.org/1999/xhtml"/>
4587 #errors
4588 /img/@noborder;attribute not defined;m
4589
4590 #data
4591 <img alt="" src="http://test/" ismap="" xmlns="http://www.w3.org/1999/xhtml"/>
4592 #errors
4593 /img/@ismap;attribute not allowed:ismap;m
4594
4595 #data
4596 <span xmlns="http://www.w3.org/1999/xhtml">
4597 <img alt="" src="http://test/" ismap="" xmlns="http://www.w3.org/1999/xhtml"/>
4598 </span>
4599 #errors
4600 /span/img/@ismap;attribute not allowed:ismap;m
4601
4602 #data
4603 <span xmlns="http://www.w3.org/1999/xhtml">
4604 <a>a</a>
4605 <img alt="" src="http://test/" ismap="" xmlns="http://www.w3.org/1999/xhtml"/>
4606 </span>
4607 #errors
4608 /span/img/@ismap;attribute not allowed:ismap;m
4609
4610 #data
4611 <a xmlns="http://www.w3.org/1999/xhtml">
4612 <img alt="" src="http://test/" ismap="ismap"/>
4613 </a>
4614 #errors
4615 /a/img/@ismap;attribute not allowed:ismap;m
4616
4617 #data
4618 <a title="" xmlns="http://www.w3.org/1999/xhtml">
4619 <img alt="" src="http://test/" ismap="ismap"/>
4620 </a>
4621 #errors
4622 /a/img/@ismap;attribute not allowed:ismap;m
4623
4624 #data
4625 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
4626 <img alt="" src="http://test/" ismap=""/>
4627 </a>
4628 #errors
4629
4630 #data
4631 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
4632 <img alt="" src="http://test/" ismap="ismap"/>
4633 </a>
4634 #errors
4635
4636 #data
4637 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
4638 <img alt="" src="http://test/" ismap="true"/>
4639 </a>
4640 #errors
4641 /a/img/@ismap;boolean:invalid;m
4642
4643 #data
4644 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
4645 <img alt="" src="http://test/" ismap="IsMap"/>
4646 </a>
4647 #errors
4648
4649 #data
4650 <div xmlns="http://www.w3.org/1999/xhtml">
4651 <a href="http://link.test/">a</a>
4652 <img alt="" src="http://test/" ismap="ismap"/>
4653 </div>
4654 #errors
4655 /div/img/@ismap;attribute not allowed:ismap;m
4656
4657 #data
4658 <a href="http://link.test/" xmlns="http://www.w3.org/1999/xhtml">
4659 <span>
4660 <img alt="" src="http://test/" ismap="ismap"/>
4661 </span>
4662 </a>
4663 #errors
4664
4665 #data
4666 <div xmlns="http://www.w3.org/1999/xhtml">
4667 <p><img src="http://test/" alt="" usemap=""/></p>
4668 </div>
4669 #errors
4670 /div/p/img/@usemap;hashref:syntax error;m
4671
4672 #data
4673 <div xmlns="http://www.w3.org/1999/xhtml">
4674 <p><img src="http://test/" alt="" usemap="abc"/></p>
4675 </div>
4676 #errors
4677 /div/p/img/@usemap;hashref:syntax error;m
4678
4679 #data
4680 <div xmlns="http://www.w3.org/1999/xhtml">
4681 <p><img src="http://test/" alt="" usemap="abc#"/></p>
4682 </div>
4683 #errors
4684 /div/p/img/@usemap;hashref:syntax error;m
4685
4686 #data
4687 <div xmlns="http://www.w3.org/1999/xhtml">
4688 <p><img src="http://test/" alt="" usemap="&#x0A;#abc"/></p>
4689 </div>
4690 #errors
4691 /div/p/img/@usemap;hashref:syntax error;m
4692
4693 #data
4694 <div xmlns="http://www.w3.org/1999/xhtml">
4695 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4696 <map id="aa"/>
4697 </div>
4698 #errors
4699 /div/map;no significant content;s
4700 /div/map;attribute missing;name;m
4701 /div/p/img/@usemap;no referenced map;m
4702
4703 #data
4704 <div xmlns="http://www.w3.org/1999/xhtml">
4705 <map name="aa"/>
4706 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4707 </div>
4708 #errors
4709 /div/map;no significant content;s
4710
4711 #data
4712 <div xmlns="http://www.w3.org/1999/xhtml">
4713 <map name="aa" id="aa"/>
4714 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4715 </div>
4716 #errors
4717 /div/map;no significant content;s
4718
4719 #data
4720 <div xmlns="http://www.w3.org/1999/xhtml">
4721 <map name="aa"/>
4722 <map id="aa"/>
4723 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4724 </div>
4725 #errors
4726 /div/map;no significant content;s
4727 /div/map;no significant content;s
4728 /div/map;attribute missing;name;m
4729
4730 #data
4731 <div xmlns="http://www.w3.org/1999/xhtml">
4732 <map id="a a"/>
4733 <p><img src="http://test/" alt="" usemap="#a a"/></p>
4734 </div>
4735 #errors
4736 /div/map/@id;space in ID;m
4737 /div/map;no significant content;s
4738 /div/map;attribute missing;name;m
4739 /div/p/img/@usemap;no referenced map;m
4740
4741 #data
4742 <div xmlns="http://www.w3.org/1999/xhtml">
4743 <map name="a a"/>
4744 <p><img src="http://test/" alt="" usemap="#a a"/></p>
4745 </div>
4746 #errors
4747 /div/map;no significant content;s
4748
4749 #data
4750 <div xmlns="http://www.w3.org/1999/xhtml">
4751 <map name="a a" id="a a"/>
4752 <p><img src="http://test/" alt="" usemap="#a a"/></p>
4753 </div>
4754 #errors
4755 /div/map/@id;space in ID;m
4756 /div/map;no significant content;s
4757
4758 #data
4759 <div xmlns="http://www.w3.org/1999/xhtml">
4760 <map id="a a"/>
4761 <p><img src="http://test/" alt="" usemap="#a%20a"/></p>
4762 </div>
4763 #errors
4764 /div/map/@id;space in ID;m
4765 /div/map;no significant content;s
4766 /div/map;attribute missing;name;m
4767 /div/p/img/@usemap;no referenced map;m
4768
4769 #data
4770 <div xmlns="http://www.w3.org/1999/xhtml">
4771 <map id="a a" name="a a"/>
4772 <p><img src="http://test/" alt="" usemap="#a%20a"/></p>
4773 </div>
4774 #errors
4775 /div/map/@id;space in ID;m
4776 /div/map;no significant content;s
4777 /div/p/img/@usemap;no referenced map;m
4778
4779 #data
4780 <div xmlns="http://www.w3.org/1999/xhtml">
4781 <map id="&#x4E00;"/>
4782 <p><img src="http://test/" alt="" usemap="#&#x4E00;"/></p>
4783 </div>
4784 #errors
4785 /div/map;no significant content;s
4786 /div/map;attribute missing;name;m
4787 /div/p/img/@usemap;no referenced map;m
4788
4789 #data
4790 <div xmlns="http://www.w3.org/1999/xhtml">
4791 <map name="&#x4E00;"/>
4792 <p><img src="http://test/" alt="" usemap="#&#x4E00;"/></p>
4793 </div>
4794 #errors
4795 /div/map;no significant content;s
4796
4797 #data
4798 <div xmlns="http://www.w3.org/1999/xhtml">
4799 <map id="aa"/>
4800 <p><img src="http://test/" alt="" usemap="#bb"/></p>
4801 </div>
4802 #errors
4803 /div/p/img/@usemap;no referenced map;m
4804 /div/map;no significant content;s
4805 /div/map;attribute missing;name;m
4806
4807 #data
4808 <div xmlns="http://www.w3.org/1999/xhtml">
4809 <map name="aa"/>
4810 <p><img src="http://test/" alt="" usemap="#bb"/></p>
4811 </div>
4812 #errors
4813 /div/p/img/@usemap;no referenced map;m
4814 /div/map;no significant content;s
4815
4816 #data
4817 <div xmlns="http://www.w3.org/1999/xhtml">
4818 <map id="aa"/>
4819 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4820 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4821 </div>
4822 #errors
4823 /div/map;no significant content;s
4824 /div/map;attribute missing;name;m
4825 /div/p/img/@usemap;no referenced map;m
4826 /div/p/img/@usemap;no referenced map;m
4827
4828 #data
4829 <div xmlns="http://www.w3.org/1999/xhtml">
4830 <map name="aa"/>
4831 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4832 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4833 </div>
4834 #errors
4835 /div/map;no significant content;s
4836
4837 #data
4838 <div xmlns="http://www.w3.org/1999/xhtml">
4839 <map id="aa"/>
4840 <p><img src="http://test/" alt="" usemap="#AA"/></p>
4841 </div>
4842 #errors
4843 /div/p/img/@usemap;no referenced map;m
4844 /div/map;no significant content;s
4845 /div/map;attribute missing;name;m
4846
4847 #data
4848 <div xmlns="http://www.w3.org/1999/xhtml">
4849 <map name="aa"/>
4850 <p><img src="http://test/" alt="" usemap="#AA"/></p>
4851 </div>
4852 #errors
4853 /div/p/img/@usemap;no referenced map;m
4854 /div/map;no significant content;s
4855
4856 #data
4857 <div xmlns="http://www.w3.org/1999/xhtml">
4858 <map id="AA"/>
4859 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4860 </div>
4861 #errors
4862 /div/p/img/@usemap;no referenced map;m
4863 /div/map;no significant content;s
4864 /div/map;attribute missing;name;m
4865
4866 #data
4867 <div xmlns="http://www.w3.org/1999/xhtml">
4868 <map name="AA"/>
4869 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4870 </div>
4871 #errors
4872 /div/p/img/@usemap;no referenced map;m
4873 /div/map;no significant content;s
4874
4875 #data
4876 <div xmlns="http://www.w3.org/1999/xhtml">
4877 <p id="aa"/>
4878 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4879 </div>
4880 #errors
4881 /div/p/img/@usemap;no referenced map;m
4882 /div/p;no significant content;s
4883
4884 #data
4885 <div xmlns="http://www.w3.org/1999/xhtml">
4886 <a name="aa">x</a>
4887 <p><img src="http://test/" alt="" usemap="#aa"/></p>
4888 </div>
4889 #errors
4890 /div/a/@name;attribute not defined;m
4891 /div/p/img/@usemap;no referenced map;m
4892 /div/p;no significant content;s
4893
4894 #data
4895 <div xmlns="http://www.w3.org/1999/xhtml">
4896 <map name="a" id="b">x</map>
4897 </div>
4898 #errors
4899 /div/map/@id;id ne name;m
4900
4901 #data
4902 <div xmlns="http://www.w3.org/1999/xhtml">
4903 <map name="a" id="A">x</map>
4904 </div>
4905 #errors
4906 /div/map/@id;id ne name;m
4907
4908 #data
4909 <div xmlns="http://www.w3.org/1999/xhtml">
4910 <map name="A" id="a">x</map>
4911 </div>
4912 #errors
4913 /div/map/@id;id ne name;m
4914
4915 #data
4916 <div xmlns="http://www.w3.org/1999/xhtml">
4917 <map name="">x</map>
4918 <img src="" alt="" usemap="#"/>
4919 </div>
4920 #errors
4921 /div/map/@name;empty attribute value;m
4922
4923 #data
4924 <div xmlns="http://www.w3.org/1999/xhtml">
4925 <map name="a">x</map>
4926 <map name="a">x</map>
4927 <img src="" alt="" usemap="#a"/>
4928 </div>
4929 #errors
4930
4931 #data
4932 <img alt="" src="" align="" xmlns="http://www.w3.org/1999/xhtml"/>
4933 #errors
4934 /img/@align;attribute not defined;m
4935 /img/@align;enumerated:invalid;m
4936
4937 #data
4938 <img alt="" src="" align="char" xmlns="http://www.w3.org/1999/xhtml"/>
4939 #errors
4940 /img/@align;attribute not defined;m
4941 /img/@align;enumerated:invalid;m
4942
4943 #data
4944 <img alt="" src="" align="justify" xmlns="http://www.w3.org/1999/xhtml"/>
4945 #errors
4946 /img/@align;attribute not defined;m
4947 /img/@align;enumerated:invalid;m
4948
4949 #data
4950 <img alt="" src="" align="center" xmlns="http://www.w3.org/1999/xhtml"/>
4951 #errors
4952 /img/@align;attribute not defined;m
4953 /img/@align;enumerated:invalid;m
4954
4955 #data
4956 <img alt="" src="" align="bottom" xmlns="http://www.w3.org/1999/xhtml"/>
4957 #errors
4958 /img/@align;attribute not defined;m
4959
4960 #data
4961 <img alt="" src="" align="middle" xmlns="http://www.w3.org/1999/xhtml"/>
4962 #errors
4963 /img/@align;attribute not defined;m
4964
4965 #data
4966 <img alt="" src="" align="top" xmlns="http://www.w3.org/1999/xhtml"/>
4967 #errors
4968 /img/@align;attribute not defined;m
4969
4970 #data
4971 <img alt="" src="" align="left" xmlns="http://www.w3.org/1999/xhtml"/>
4972 #errors
4973 /img/@align;attribute not defined;m
4974
4975 #data
4976 <img alt="" src="" align="right" xmlns="http://www.w3.org/1999/xhtml"/>
4977 #errors
4978 /img/@align;attribute not defined;m
4979
4980 #data
4981 <iframe xmlns="http://www.w3.org/1999/xhtml"/>
4982 #errors
4983
4984 #data
4985 <iframe name="" xmlns="http://www.w3.org/1999/xhtml"/>
4986 #errors
4987 /iframe/@name;window name:empty;m
4988
4989 #data
4990 <iframe name="_" xmlns="http://www.w3.org/1999/xhtml"/>
4991 #errors
4992 /iframe/@name;window name:reserved;m
4993
4994 #data
4995 <iframe name="_blank" xmlns="http://www.w3.org/1999/xhtml"/>
4996 #errors
4997 /iframe/@name;window name:reserved;m
4998
4999 #data
5000 <iframe name="blank" xmlns="http://www.w3.org/1999/xhtml"/>
5001 #errors
5002
5003 #data
5004 <iframe name="_parent" xmlns="http://www.w3.org/1999/xhtml"/>
5005 #errors
5006 /iframe/@name;window name:reserved;m
5007
5008 #data
5009 <iframe name="_top" xmlns="http://www.w3.org/1999/xhtml"/>
5010 #errors
5011 /iframe/@name;window name:reserved;m
5012
5013 #data
5014 <iframe name="_self" xmlns="http://www.w3.org/1999/xhtml"/>
5015 #errors
5016 /iframe/@name;window name:reserved;m
5017
5018 #data
5019 <iframe name="_a" xmlns="http://www.w3.org/1999/xhtml"/>
5020 #errors
5021 /iframe/@name;window name:reserved;m
5022
5023 #data
5024 <iframe name="_main" xmlns="http://www.w3.org/1999/xhtml"/>
5025 #errors
5026 /iframe/@name;window name:reserved;m
5027
5028 #data
5029 <iframe src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
5030 #errors
5031
5032 #data
5033 <iframe src="&lt;http://test/>" xmlns="http://www.w3.org/1999/xhtml"/>
5034 #errors
5035 /iframe/@src;syntax error:iriref3987;m
5036
5037 #data
5038 <iframe src="" sandbox="" xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5039 #errors
5040
5041 #data
5042 <iframe src="" sandbox=" " xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5043 #errors
5044
5045 #data
5046 <iframe src="" sandbox="
5047 " xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5048 #errors
5049
5050 #data
5051 <iframe src="" sandbox="allow-same-origin" xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5052 #errors
5053
5054 #data
5055 <iframe src="" sandbox="allow-same-origin
5056 " xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5057 #errors
5058
5059 #data
5060 <iframe src="" sandbox=" allow-same-origin " xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5061 #errors
5062
5063 #data
5064 <iframe src="" sandbox="allow-scripts
5065 " xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5066 #errors
5067
5068 #data
5069 <iframe src="" sandbox="allow-same-origin
5070 allow-scripts" xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5071 #errors
5072
5073 #data
5074 <iframe src="" sandbox="allow-forms" xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5075 #errors
5076
5077 #data
5078 <iframe src="" sandbox="allow-form"
5079 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5080 #errors
5081 /iframe/@sandbox;word not allowed;m
5082
5083 #data
5084 <iframe src="" sandbox="allow-script"
5085 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5086 #errors
5087 /iframe/@sandbox;word not allowed;m
5088
5089 #data
5090 <iframe src="" sandbox="allow-origin"
5091 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5092 #errors
5093 /iframe/@sandbox;word not allowed;m
5094
5095 #data
5096 <iframe src="" sandbox="allow-script"
5097 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5098 #errors
5099 /iframe/@sandbox;word not allowed;m
5100
5101 #data
5102 <iframe src="" sandbox="allow-plugins"
5103 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5104 #errors
5105 /iframe/@sandbox;word not allowed;m
5106
5107 #data
5108 <iframe src="" sandbox="xxx_origin_please_suggest_a_better_name"
5109 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5110 #errors
5111 /iframe/@sandbox;word not allowed;m
5112
5113 #data
5114 <iframe src="" sandbox="unrestricted-forms"
5115 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5116 #errors
5117 /iframe/@sandbox;word not allowed;m
5118
5119 #data
5120 <iframe src="" sandbox="unrestricted-scripts"
5121 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5122 #errors
5123 /iframe/@sandbox;word not allowed;m
5124
5125 #data
5126 <iframe src="" sandbox="Allow-Forms"
5127 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5128 #errors
5129 /iframe/@sandbox;word not allowed;m
5130
5131 #data
5132 <iframe src="" sandbox="allow"
5133 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5134 #errors
5135 /iframe/@sandbox;word not allowed;m
5136
5137 #data
5138 <iframe src="" sandbox="disallow-form"
5139 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5140 #errors
5141 /iframe/@sandbox;word not allowed;m
5142
5143 #data
5144 <iframe src="" sandbox="allow-forms allow-forms"
5145 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5146 #errors
5147 /iframe/@sandbox;duplicate token;m
5148
5149 #data
5150 <?xml version="1.1"?>
5151 <iframe src="" sandbox="allow-forms&#x000b;"
5152 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5153 #errors
5154 /iframe/@sandbox;word not allowed;m
5155
5156 #data
5157 <?xml version="1.1"?>
5158 <iframe src="" sandbox="&#x000b;allow-forms"
5159 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5160 #errors
5161 /iframe/@sandbox;word not allowed;m
5162
5163 #data
5164 <?xml version="1.1"?>
5165 <iframe src="" sandbox="allow-forms&#x000b;allow-scripts"
5166 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5167 #errors
5168 /iframe/@sandbox;word not allowed;m
5169
5170 #data
5171 <iframe src="" seemless=""
5172 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5173 #errors
5174
5175 #data
5176 <iframe src="" seemless=" "
5177 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5178 #errors
5179 /iframe/@seemless;boolean:invalid;m
5180
5181 #data
5182 <iframe src="" seemless="seemless"
5183 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5184 #errors
5185
5186 #data
5187 <iframe src="" seemless="Seemless"
5188 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5189 #errors
5190
5191 #data
5192 <iframe src="" seemless="seemless "
5193 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5194 #errors
5195 /iframe/@seemless;boolean:invalid;m
5196
5197 #data
5198 <iframe src="" seemless="yes"
5199 xmlns="http://www.w3.org/1999/xhtml">x</iframe>
5200 #errors
5201 /iframe/@seemless;boolean:invalid;m
5202
5203 #data
5204 <embed xmlns="http://www.w3.org/1999/xhtml"/>
5205 #errors
5206 /embed;attribute missing;src;i
5207
5208 #data
5209 <embed src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
5210 #errors
5211
5212 #data
5213 <embed src="[http://test/]" xmlns="http://www.w3.org/1999/xhtml"/>
5214 #errors
5215 /embed/@src;syntax error:iriref3987;m
5216
5217 #data
5218 <embed src="http://test/" type="" xmlns="http://www.w3.org/1999/xhtml"/>
5219 #errors
5220 /embed/@type;IMT:syntax error;m
5221
5222 #data
5223 <embed src="http://test/" type="text"
5224 xmlns="http://www.w3.org/1999/xhtml"/>
5225 #errors
5226 /embed/@type;IMT:syntax error;m
5227
5228 #data
5229 <embed src="http://test/" type="text/plain"
5230 xmlns="http://www.w3.org/1999/xhtml"/>
5231 #errors
5232
5233 #data
5234 <embed src="http://test/" id=""
5235 xmlns="http://www.w3.org/1999/xhtml"/>
5236 #errors
5237 /embed/@id;empty attribute value;m
5238
5239 #data
5240 <embed src="http://test/" a="b" c="d" checked="checked"
5241 xmlns="http://www.w3.org/1999/xhtml"/>
5242 #errors
5243
5244 #data html
5245 <!DOCTYPE HTML><title>x</title>
5246 <embed src="http://test/"
5247 b:c>
5248 #errors
5249 /html/body/embed/@b:c;attribute not defined;m
5250
5251 #data html
5252 <!DOCTYPE HTML><title>x</title>
5253 <embed src="http://test/"
5254 xmlsucks>
5255 #errors
5256 /html/body/embed/@xmlsucks;attribute not defined;m
5257
5258 #data html
5259 <!DOCTYPE HTML><title>x</title>
5260 <embed src="http://test/"
5261 :>
5262 #errors
5263 /html/body/embed/@:;attribute not defined;m
5264
5265 #data html
5266 <!DOCTYPE HTML><title>x</title>
5267 <embed src="http://test/"
5268 a::b>
5269 #errors
5270 /html/body/embed/@a::b;attribute not defined;m
5271
5272 #data html
5273 <!DOCTYPE HTML><title>x</title>
5274 <embed src="http://test/"
5275 -manakai-attribute>
5276 #errors
5277 /html/body/embed/@-manakai-attribute;attribute not defined;m
5278
5279 #data html
5280 <!DOCTYPE HTML><title>x</title>
5281 <embed src="http://test/"
5282 xml:lang lang>
5283 #errors
5284 /html/body/embed/@xml:lang;in HTML:xml:lang;i
5285
5286 #data html
5287 <!DOCTYPE HTML><title>x</title>
5288 <embed src="http://test/"
5289 xmlns="http://www.w3.org/1999/xhtml">
5290 #errors
5291
5292 #data html
5293 <!DOCTYPE HTML><title>x</title>
5294 <embed src="http://test/"
5295 xml:space=preserve>
5296 #errors
5297 /html/body/embed/@xml:space;attribute not defined;m
5298
5299 #data
5300 <embed src="" xmlns="http://www.w3.org/1999/xhtml"
5301 camelCase=""/>
5302 #errors
5303 /embed/@camelCase;attribute not defined;m
5304
5305 #data
5306 <embed src="" xmlns="http://www.w3.org/1999/xhtml"
5307 Capital=""/>
5308 #errors
5309 /embed/@Capital;attribute not defined;m
5310
5311 #data
5312 <embed src="" xmlns="http://www.w3.org/1999/xhtml"
5313 UPPERCASE=""/>
5314 #errors
5315 /embed/@UPPERCASE;attribute not defined;m
5316
5317 #data html
5318 <!DOCTYPE HTML><title>x</title>
5319 <embed src="http://test/"
5320 data->
5321 #errors
5322
5323 #data html
5324 <!DOCTYPE HTML><title>x</title>
5325 <embed src="http://test/"
5326 data-a>
5327 #errors
5328
5329 #data html
5330 <!DOCTYPE HTML><title>x</title>
5331 <embed src="http://test/"
5332 data-xml:space>
5333 #errors
5334 /html/body/embed/@data-xml:space;attribute not defined;m
5335
5336 #data html
5337 <!DOCTYPE HTML><title>x</title>
5338 <embed src="http://test/"
5339 data-xmlns>
5340 #errors
5341
5342 #data html
5343 <!DOCTYPE HTML><title>x</title>
5344 <embed src="http://test/"
5345 data--abc>
5346 #errors
5347
5348 #data html
5349 <!DOCTYPE HTML><title>x</title>
5350 <embed src="http://test/"
5351 data-!>
5352 #errors
5353 /html/body/embed/@data-!;attribute not defined;m
5354
5355 #data
5356 <object xmlns="http://www.w3.org/1999/xhtml"/>
5357 #errors
5358 /object;attribute missing:data|type;m
5359 /object;no significant content;s
5360
5361 #data
5362 <object data="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
5363 #errors
5364 /object;no significant content;s
5365
5366 #data
5367 <object data="`http://test/`" xmlns="http://www.w3.org/1999/xhtml"/>
5368 #errors
5369 /object/@data;syntax error:iriref3987;m
5370 /object;no significant content;s
5371
5372 #data
5373 <object type="" xmlns="http://www.w3.org/1999/xhtml"/>
5374 #errors
5375 /object/@type;IMT:syntax error;m
5376 /object;no significant content;s
5377
5378 #data
5379 <object type="text/css" xmlns="http://www.w3.org/1999/xhtml"/>
5380 #errors
5381 /object;no significant content;s
5382
5383 #data
5384 <object type="text/css" data="http://test/"
5385 xmlns="http://www.w3.org/1999/xhtml"/>
5386 #errors
5387 /object;no significant content;s
5388
5389 #data
5390 <div xmlns="http://www.w3.org/1999/xhtml">
5391 <p><object data="http://test/" usemap="">x</object></p>
5392 </div>
5393 #errors
5394 /div/p/object/@usemap;hashref:syntax error;m
5395
5396 #data
5397 <div xmlns="http://www.w3.org/1999/xhtml">
5398 <p><object data="http://test/" usemap="abc">x</object></p>
5399 </div>
5400 #errors
5401 /div/p/object/@usemap;hashref:syntax error;m
5402
5403 #data
5404 <div xmlns="http://www.w3.org/1999/xhtml">
5405 <p><object data="http://test/" usemap="abc#">x</object></p>
5406 </div>
5407 #errors
5408 /div/p/object/@usemap;hashref:syntax error;m
5409
5410 #data
5411 <div xmlns="http://www.w3.org/1999/xhtml">
5412 <p><object data="http://test/" usemap="&#x0A;#abc">x</object></p>
5413 </div>
5414 #errors
5415 /div/p/object/@usemap;hashref:syntax error;m
5416
5417 #data
5418 <div xmlns="http://www.w3.org/1999/xhtml">
5419 <p><object data="http://test/" usemap="#aa">x</object></p>
5420 <map id="aa"/>
5421 </div>
5422 #errors
5423 /div/map;no significant content;s
5424 /div/p/object/@usemap;no referenced map;m
5425 /div/map;attribute missing;name;m
5426
5427 #data
5428 <div xmlns="http://www.w3.org/1999/xhtml">
5429 <p><object data="http://test/" usemap="#aa">x</object></p>
5430 <map name="aa"/>
5431 </div>
5432 #errors
5433 /div/map;no significant content;s
5434
5435 #data
5436 <div xmlns="http://www.w3.org/1999/xhtml">
5437 <map name="aa"/>
5438 <p><object data="http://test/" usemap="#aa">x</object></p>
5439 </div>
5440 #errors
5441 /div/map;no significant content;s
5442
5443 #data
5444 <div xmlns="http://www.w3.org/1999/xhtml">
5445 <map name="&#x4E00;"/>
5446 <p><object data="http://test/" usemap="#&#x4E00;">x</object></p>
5447 </div>
5448 #errors
5449 /div/map;no significant content;s
5450
5451 #data
5452 <div xmlns="http://www.w3.org/1999/xhtml">
5453 <map name="aa"/>
5454 <p><object data="http://test/" usemap="#bb">x</object></p>
5455 </div>
5456 #errors
5457 /div/p/object/@usemap;no referenced map;m
5458 /div/map;no significant content;s
5459
5460 #data
5461 <div xmlns="http://www.w3.org/1999/xhtml">
5462 <map name="aa"/>
5463 <p><object data="http://test/" usemap="#aa">x</object></p>
5464 <p><object data="http://test/" usemap="#aa">x</object></p>
5465 </div>
5466 #errors
5467 /div/map;no significant content;s
5468
5469 #data
5470 <div xmlns="http://www.w3.org/1999/xhtml">
5471 <map name="aa"/>
5472 <p><object data="http://test/" usemap="#AA">x</object></p>
5473 </div>
5474 #errors
5475 /div/p/object/@usemap;no referenced map;m
5476 /div/map;no significant content;s
5477
5478 #data
5479 <div xmlns="http://www.w3.org/1999/xhtml">
5480 <map name="AA"/>
5481 <p><object data="http://test/" usemap="#aa">x</object></p>
5482 </div>
5483 #errors
5484 /div/p/object/@usemap;no referenced map;m
5485 /div/map;no significant content;s
5486
5487 #data
5488 <div xmlns="http://www.w3.org/1999/xhtml">
5489 <object data="" usemap="#a">x</object><menu id="a">x</menu>
5490 </div>
5491 #errors
5492 /div/object/@usemap;no referenced map;m
5493
5494 #data
5495 <object data="" declare="" xmlns="http://www.w3.org/1999/xhtml"/>
5496 #errors
5497 /object/@declare;attribute not defined;m
5498 /object;no significant content;s
5499
5500 #data
5501 <object data="" declare="declare" xmlns="http://www.w3.org/1999/xhtml"/>
5502 #errors
5503 /object/@declare;attribute not defined;m
5504 /object;no significant content;s
5505
5506 /object;no significant content;s
5507 #data
5508 <object data="" declare="yes" xmlns="http://www.w3.org/1999/xhtml"/>
5509 #errors
5510 /object/@declare;attribute not defined;m
5511 /object/@declare;boolean:invalid;m
5512 /object;no significant content;s
5513
5514 #data
5515 <object data="" declare="no" xmlns="http://www.w3.org/1999/xhtml"/>
5516 #errors
5517 /object/@declare;attribute not defined;m
5518 /object/@declare;boolean:invalid;m
5519 /object;no significant content;s
5520
5521 #data
5522 <object data="" declare="Declare" xmlns="http://www.w3.org/1999/xhtml"/>
5523 #errors
5524 /object/@declare;attribute not defined;m
5525 /object;no significant content;s
5526
5527 #data
5528 <object data="" classid="" xmlns="http://www.w3.org/1999/xhtml"/>
5529 #errors
5530 /object/@classid;attribute not defined;m
5531 /object;no significant content;s
5532
5533 #data
5534 <object data="" classid="[]" xmlns="http://www.w3.org/1999/xhtml"/>
5535 #errors
5536 /object/@classid;attribute not defined;m
5537 /object/@classid;syntax error:iriref3987;m
5538 /object;no significant content;s
5539
5540 #data
5541 <object data="" codebase="" xmlns="http://www.w3.org/1999/xhtml"/>
5542 #errors
5543 /object/@codebase;attribute not defined;m
5544 /object;no significant content;s
5545
5546 #data
5547 <object data="" codebase="[]" xmlns="http://www.w3.org/1999/xhtml"/>
5548 #errors
5549 /object/@codebase;attribute not defined;m
5550 /object/@codebase;syntax error:iriref3987;m
5551 /object;no significant content;s
5552
5553 #data
5554 <object data="" archive="" xmlns="http://www.w3.org/1999/xhtml"/>
5555 #errors
5556 /object/@archive;attribute not defined;m
5557 /object;no significant content;s
5558
5559 #data
5560 <object data="" archive="[]" xmlns="http://www.w3.org/1999/xhtml"/>
5561 #errors
5562 /object/@archive;attribute not defined;m
5563 /object/@archive;syntax error:iriref3987;m
5564 /object;no significant content;s
5565
5566 #data
5567 <object data="" archive="a,[]" xmlns="http://www.w3.org/1999/xhtml"/>
5568 #errors
5569 /object/@archive;attribute not defined;m
5570 /object/@archive;syntax error:iriref3987;m
5571 /object;no significant content;s
5572
5573 #data
5574 <object data="" archives="[]" xmlns="http://www.w3.org/1999/xhtml"/>
5575 #errors
5576 /object/@archives;attribute not defined;m
5577 /object;no significant content;s
5578
5579 #data
5580 <object data="" codetype="" xmlns="http://www.w3.org/1999/xhtml"/>
5581 #errors
5582 /object/@codetype;attribute not defined;m
5583 /object/@codetype;IMT:syntax error;m
5584 /object;no significant content;s
5585
5586 #data
5587 <object data="" codetype="text/html" xmlns="http://www.w3.org/1999/xhtml"/>
5588 #errors
5589 /object/@codetype;attribute not defined;m
5590 /object;no significant content;s
5591
5592 #data
5593 <object data="" standby="" xmlns="http://www.w3.org/1999/xhtml"/>
5594 #errors
5595 /object/@standby;attribute not defined;m
5596 /object;no significant content;s
5597
5598 #data
5599 <object data="" standby="[]" xmlns="http://www.w3.org/1999/xhtml"/>
5600 #errors
5601 /object/@standby;attribute not defined;m
5602 /object;no significant content;s
5603
5604 #data
5605 <object data="" border="0" xmlns="http://www.w3.org/1999/xhtml"/>
5606 #errors
5607 /object;no significant content;s
5608 /object/@border;attribute not defined;m
5609
5610 #data
5611 <object data="" border="none" xmlns="http://www.w3.org/1999/xhtml"/>
5612 #errors
5613 /object/@border;attribute not defined;m
5614 /object/@border;nninteger:syntax error;m
5615 /object;no significant content;s
5616
5617 #data
5618 <object data="" hspace="0" xmlns="http://www.w3.org/1999/xhtml"/>
5619 #errors
5620 /object/@hspace;attribute not defined;m
5621 /object;no significant content;s
5622
5623 #data
5624 <object data="" hspace="none" xmlns="http://www.w3.org/1999/xhtml"/>
5625 #errors
5626 /object/@hspace;attribute not defined;m
5627 /object;no significant content;s
5628 /object/@hspace;nninteger:syntax error;m
5629
5630 #data
5631 <object data="" vspace="0" xmlns="http://www.w3.org/1999/xhtml"/>
5632 #errors
5633 /object;no significant content;s
5634 /object/@vspace;attribute not defined;m
5635
5636 #data
5637 <object data="" vspace="none" xmlns="http://www.w3.org/1999/xhtml"/>
5638 #errors
5639 /object;no significant content;s
5640 /object/@vspace;attribute not defined;m
5641 /object/@vspace;nninteger:syntax error;m
5642
5643 #data
5644 <object data="" align="" xmlns="http://www.w3.org/1999/xhtml"/>
5645 #errors
5646 /object;no significant content;s
5647 /object/@align;attribute not defined;m
5648 /object/@align;enumerated:invalid;m
5649
5650 #data
5651 <object data="" align="char" xmlns="http://www.w3.org/1999/xhtml"/>
5652 #errors
5653 /object;no significant content;s
5654 /object/@align;attribute not defined;m
5655 /object/@align;enumerated:invalid;m
5656
5657 #data
5658 <object data="" align="justify" xmlns="http://www.w3.org/1999/xhtml"/>
5659 #errors
5660 /object;no significant content;s
5661 /object/@align;attribute not defined;m
5662 /object/@align;enumerated:invalid;m
5663
5664 #data
5665 <object data="" align="center" xmlns="http://www.w3.org/1999/xhtml"/>
5666 #errors
5667 /object;no significant content;s
5668 /object/@align;attribute not defined;m
5669 /object/@align;enumerated:invalid;m
5670
5671 #data
5672 <object data="" align="bottom" xmlns="http://www.w3.org/1999/xhtml"/>
5673 #errors
5674 /object;no significant content;s
5675 /object/@align;attribute not defined;m
5676
5677 #data
5678 <object data="" align="middle" xmlns="http://www.w3.org/1999/xhtml"/>
5679 #errors
5680 /object;no significant content;s
5681 /object/@align;attribute not defined;m
5682
5683 #data
5684 <object data="" align="top" xmlns="http://www.w3.org/1999/xhtml"/>
5685 #errors
5686 /object;no significant content;s
5687 /object/@align;attribute not defined;m
5688
5689 #data
5690 <object data="" align="left" xmlns="http://www.w3.org/1999/xhtml"/>
5691 #errors
5692 /object;no significant content;s
5693 /object/@align;attribute not defined;m
5694
5695 #data
5696 <object data="" align="right" xmlns="http://www.w3.org/1999/xhtml"/>
5697 #errors
5698 /object;no significant content;s
5699 /object/@align;attribute not defined;m
5700
5701 #data
5702 <object name="" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
5703 #errors
5704 /object/@name;window name:empty;m
5705
5706 #data
5707 <object name="_" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
5708 #errors
5709 /object/@name;window name:reserved;m
5710
5711 #data
5712 <object name="_a" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
5713 #errors
5714 /object/@name;window name:reserved;m
5715
5716 #data
5717 <object name="_blank" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
5718 #errors
5719 /object/@name;window name:reserved;m
5720
5721 #data
5722 <object name="_parent" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
5723 #errors
5724 /object/@name;window name:reserved;m
5725
5726 #data
5727 <object name="_self" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
5728 #errors
5729 /object/@name;window name:reserved;m
5730
5731 #data
5732 <object name="_top" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
5733 #errors
5734 /object/@name;window name:reserved;m
5735
5736 #data
5737 <object name="abc" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
5738 #errors
5739
5740 #data
5741 <object name="self" data="" xmlns="http://www.w3.org/1999/xhtml">x</object>
5742 #errors
5743
5744 #data
5745 <param xmlns="http://www.w3.org/1999/xhtml"/>
5746 #errors
5747 /param;attribute missing;name;m
5748 /param;attribute missing;value;m
5749
5750 #data
5751 <param name="a" xmlns="http://www.w3.org/1999/xhtml"/>
5752 #errors
5753 /param;attribute missing;value;m
5754
5755 #data
5756 <param value="a" xmlns="http://www.w3.org/1999/xhtml"/>
5757 #errors
5758 /param;attribute missing;name;m
5759
5760 #data
5761 <param name="a" value="b" xmlns="http://www.w3.org/1999/xhtml"/>
5762 #errors
5763
5764 #data
5765 <param name="" value="" xmlns="http://www.w3.org/1999/xhtml"/>
5766 #errors
5767
5768 #data
5769 <param name="a" value="b" valuetype="data" xmlns="http://www.w3.org/1999/xhtml"/>
5770 #errors
5771 /param/@valuetype;attribute not defined;m
5772
5773 #data
5774 <param name="a" value="b" valuetype="ref" xmlns="http://www.w3.org/1999/xhtml"/>
5775 #errors
5776 /param/@valuetype;attribute not defined;m
5777
5778 #data
5779 <param name="a" value="b" valuetype="object" xmlns="http://www.w3.org/1999/xhtml"/>
5780 #errors
5781 /param/@valuetype;attribute not defined;m
5782
5783 #data
5784 <param name="a" value="b" valuetype="text" xmlns="http://www.w3.org/1999/xhtml"/>
5785 #errors
5786 /param/@valuetype;attribute not defined;m
5787 /param/@valuetype;enumerated:invalid;m
5788
5789 #data
5790 <param name="a" value="b" type="text" xmlns="http://www.w3.org/1999/xhtml"/>
5791 #errors
5792 /param/@type;attribute not defined;m
5793 /param/@type;IMT:syntax error;m
5794
5795 #data
5796 <param name="a" value="b" type="text/html" xmlns="http://www.w3.org/1999/xhtml"/>
5797 #errors
5798 /param/@type;attribute not defined;m
5799
5800 #data
5801 <video xmlns="http://www.w3.org/1999/xhtml"/>
5802 #errors
5803 /video;no significant content;s
5804 /video;child element missing;source;m
5805
5806 #data
5807 <video src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
5808 #errors
5809 /video;no significant content;s
5810
5811 #data
5812 <video src="``http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
5813 #errors
5814 /video/@src;syntax error:iriref3987;m
5815 /video;no significant content;s
5816
5817 #data
5818 <video autoplay="" xmlns="http://www.w3.org/1999/xhtml"/>
5819 #errors
5820 /video;no significant content;s
5821 /video;child element missing;source;m
5822
5823 #data
5824 <video autoplay="autoplay" xmlns="http://www.w3.org/1999/xhtml"/>
5825 #errors
5826 /video;no significant content;s
5827 /video;child element missing;source;m
5828
5829 #data
5830 <video autoplay="true" xmlns="http://www.w3.org/1999/xhtml"/>
5831 #errors
5832 /video;no significant content;s
5833 /video/@autoplay;boolean:invalid;m
5834 /video;child element missing;source;m
5835
5836 #data
5837 <video autoplay="AUTOPlay" xmlns="http://www.w3.org/1999/xhtml"/>
5838 #errors
5839 /video;no significant content;s
5840 /video;child element missing;source;m
5841
5842 #data
5843 <video controls="" xmlns="http://www.w3.org/1999/xhtml"/>
5844 #errors
5845 /video;no significant content;s
5846 /video;child element missing;source;m
5847
5848 #data
5849 <video controls="controls" xmlns="http://www.w3.org/1999/xhtml"/>
5850 #errors
5851 /video;no significant content;s
5852 /video;child element missing;source;m
5853
5854 #data
5855 <video controls="Controls" xmlns="http://www.w3.org/1999/xhtml"/>
5856 #errors
5857 /video;no significant content;s
5858 /video;child element missing;source;m
5859
5860 #data
5861 <video controls="true" xmlns="http://www.w3.org/1999/xhtml"/>
5862 #errors
5863 /video/@controls;boolean:invalid;m
5864 /video;no significant content;s
5865 /video;child element missing;source;m
5866
5867 #data
5868 <video controls="control" xmlns="http://www.w3.org/1999/xhtml"/>
5869 #errors
5870 /video/@controls;boolean:invalid;m
5871 /video;no significant content;s
5872 /video;child element missing;source;m
5873
5874 #data
5875 <video control="" xmlns="http://www.w3.org/1999/xhtml"/>
5876 #errors
5877 /video/@control;attribute not defined;m
5878 /video;no significant content;s
5879 /video;child element missing;source;m
5880
5881 #data
5882 <video poster="" xmlns="http://www.w3.org/1999/xhtml"/>
5883 #errors
5884 /video;no significant content;s
5885 /video;child element missing;source;m
5886
5887 #data
5888 <video poster="abc" xmlns="http://www.w3.org/1999/xhtml"/>
5889 #errors
5890 /video;child element missing;source;m
5891 /video;no significant content;s
5892
5893 #data
5894 <video poster="[]" xmlns="http://www.w3.org/1999/xhtml"/>
5895 #errors
5896 /video/@poster;syntax error:iriref3987;m
5897 /video;no significant content;s
5898 /video;child element missing;source;m
5899
5900 #data
5901 <audio xmlns="http://www.w3.org/1999/xhtml"/>
5902 #errors
5903 /audio;no significant content;s
5904 /audio;child element missing;source;m
5905
5906 #data
5907 <audio src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
5908 #errors
5909 /audio;no significant content;s
5910
5911 #data
5912 <audio src="http://[test]/" xmlns="http://www.w3.org/1999/xhtml"/>
5913 #errors
5914 /audio/@src;syntax error:iriref3987;m
5915 /audio;no significant content;s
5916
5917 #data
5918 <audio autoplay="" xmlns="http://www.w3.org/1999/xhtml"/>
5919 #errors
5920 /audio;no significant content;s
5921 /audio;child element missing;source;m
5922
5923 #data
5924 <audio autoplay="autoplay" xmlns="http://www.w3.org/1999/xhtml"/>
5925 #errors
5926 /audio;no significant content;s
5927 /audio;child element missing;source;m
5928
5929 #data
5930 <audio autoplay="AUTOPLAY" xmlns="http://www.w3.org/1999/xhtml"/>
5931 #errors
5932 /audio;no significant content;s
5933 /audio;child element missing;source;m
5934
5935 #data
5936 <audio autoplay="true" xmlns="http://www.w3.org/1999/xhtml"/>
5937 #errors
5938 /audio/@autoplay;boolean:invalid;m
5939 /audio;no significant content;s
5940 /audio;child element missing;source;m
5941
5942 #data
5943 <audio controls="" xmlns="http://www.w3.org/1999/xhtml"/>
5944 #errors
5945 /audio;no significant content;s
5946 /audio;child element missing;source;m
5947
5948 #data
5949 <audio controls="controls" xmlns="http://www.w3.org/1999/xhtml"/>
5950 #errors
5951 /audio;no significant content;s
5952 /audio;child element missing;source;m
5953
5954 #data
5955 <audio controls="CONTROLS" xmlns="http://www.w3.org/1999/xhtml"/>
5956 #errors
5957 /audio;no significant content;s
5958 /audio;child element missing;source;m
5959
5960 #data
5961 <audio controls="true" xmlns="http://www.w3.org/1999/xhtml"/>
5962 #errors
5963 /audio/@controls;boolean:invalid;m
5964 /audio;no significant content;s
5965 /audio;child element missing;source;m
5966
5967 #data
5968 <source xmlns="http://www.w3.org/1999/xhtml"/>
5969 #errors
5970 /source;attribute missing;src;m
5971
5972 #data
5973 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
5974 #errors
5975
5976 #data
5977 <source src="%http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
5978 #errors
5979 /source/@src;syntax error:iriref3987;m
5980
5981 #data
5982 <source src="http://test/" type="" xmlns="http://www.w3.org/1999/xhtml"/>
5983 #errors
5984 /source/@type;IMT:syntax error;m
5985
5986 #data
5987 <source src="http://test/" type="video" xmlns="http://www.w3.org/1999/xhtml"/>
5988 #errors
5989 /source/@type;IMT:syntax error;m
5990
5991 #data
5992 <source src="http://test/" type="audio/mpeg"
5993 xmlns="http://www.w3.org/1999/xhtml"/>
5994 #errors
5995
5996 #data
5997 <source src="http://test/" type="video/3gpp2; codecs=sevc,s263"
5998 xmlns="http://www.w3.org/1999/xhtml"/>
5999 #errors
6000 /source/@type;IMT:syntax error;m
6001
6002 #data
6003 <source src="http://test/" type="video/3gpp2; codecs=&quot;sevc,s263&quot;"
6004 xmlns="http://www.w3.org/1999/xhtml"/>
6005 #errors
6006
6007 #data
6008 <source src="http://test/" type="video/3gpp2; codecs=&quot;sevc, s263&quot;"
6009 xmlns="http://www.w3.org/1999/xhtml"/>
6010 #errors
6011
6012 #data
6013 <source src="http://test/" type="video/3gpp2; codecs='sevc, s263'"
6014 xmlns="http://www.w3.org/1999/xhtml"/>
6015 #errors
6016 /source/@type;IMT:syntax error;m
6017
6018 #data
6019 <source src="http://test/" media="screen"
6020 xmlns="http://www.w3.org/1999/xhtml"/>
6021 #errors
6022 /source/@media;media query;u
6023
6024 #data
6025 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"
6026 pixelratio=""/>
6027 #errors
6028 /source/@pixelratio;float:syntax error;m
6029
6030 #data
6031 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"
6032 pixelratio="1"/>
6033 #errors
6034
6035 #data
6036 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"
6037 pixelratio="1.00"/>
6038 #errors
6039
6040 #data
6041 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"
6042 pixelratio="0.001"/>
6043 #errors
6044
6045 #data
6046 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"
6047 pixelratio="10.4"/>
6048 #errors
6049
6050 #data
6051 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"
6052 pixelratio="1."/>
6053 #errors
6054
6055 #data
6056 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"
6057 pixelratio=".1"/>
6058 #errors
6059
6060 #data
6061 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"
6062 pixelratio="+0.2"/>
6063 #errors
6064 /source/@pixelratio;float:syntax error;m
6065
6066 #data
6067 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"
6068 pixelratio="43 "/>
6069 #errors
6070 /source/@pixelratio;float:syntax error;m
6071
6072 #data
6073 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"
6074 pixelratio="aaaa"/>
6075 #errors
6076 /source/@pixelratio;float:syntax error;m
6077
6078 #data
6079 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"
6080 pixelratio="4 + 0.2"/>
6081 #errors
6082 /source/@pixelratio;float:syntax error;m
6083
6084 #data
6085 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"
6086 pixelratio="0..3"/>
6087 #errors
6088 /source/@pixelratio;float:syntax error;m
6089
6090 #data
6091 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"
6092 pixelratio="0.4."/>
6093 #errors
6094 /source/@pixelratio;float:syntax error;m
6095
6096 #data
6097 <source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"
6098 pixelratio="."/>
6099 #errors
6100 /source/@pixelratio;float:syntax error;m
6101
6102 #data
6103 <canvas xmlns="http://www.w3.org/1999/xhtml"/>
6104 #errors
6105 /canvas;no significant content;s
6106
6107 #data
6108 <canvas width="" xmlns="http://www.w3.org/1999/xhtml"/>
6109 #errors
6110 /canvas;no significant content;s
6111 /canvas/@width;nninteger:syntax error;m
6112
6113 #data
6114 <canvas width="1" xmlns="http://www.w3.org/1999/xhtml"/>
6115 #errors
6116 /canvas;no significant content;s
6117
6118 #data
6119 <canvas width="0" xmlns="http://www.w3.org/1999/xhtml"/>
6120 #errors
6121 /canvas;no significant content;s
6122
6123 #data
6124 <canvas width="100" xmlns="http://www.w3.org/1999/xhtml"/>
6125 #errors
6126 /canvas;no significant content;s
6127
6128 #data
6129 <canvas width="-1" xmlns="http://www.w3.org/1999/xhtml"/>
6130 #errors
6131 /canvas;no significant content;s
6132 /canvas/@width;nninteger:syntax error;m
6133
6134 #data
6135 <canvas width="saaa" xmlns="http://www.w3.org/1999/xhtml"/>
6136 #errors
6137 /canvas/@width;nninteger:syntax error;m
6138 /canvas;no significant content;s
6139
6140 #data
6141 <canvas width="1&#xA;" xmlns="http://www.w3.org/1999/xhtml"/>
6142 #errors
6143 /canvas/@width;nninteger:syntax error;m
6144 /canvas;no significant content;s
6145
6146 #data
6147 <canvas width="13344aa" xmlns="http://www.w3.org/1999/xhtml"/>
6148 #errors
6149 /canvas/@width;nninteger:syntax error;m
6150 /canvas;no significant content;s
6151
6152 #data
6153 <canvas height="" xmlns="http://www.w3.org/1999/xhtml"/>
6154 #errors
6155 /canvas/@height;nninteger:syntax error;m
6156 /canvas;no significant content;s
6157
6158 #data
6159 <canvas height="0" xmlns="http://www.w3.org/1999/xhtml"/>
6160 #errors
6161 /canvas;no significant content;s
6162
6163 #data
6164 <canvas height="1" xmlns="http://www.w3.org/1999/xhtml"/>
6165 #errors
6166 /canvas;no significant content;s
6167
6168 #data
6169 <canvas height="-2" xmlns="http://www.w3.org/1999/xhtml"/>
6170 #errors
6171 /canvas/@height;nninteger:syntax error;m
6172 /canvas;no significant content;s
6173
6174 #data
6175 <canvas height="1&#xA;" xmlns="http://www.w3.org/1999/xhtml"/>
6176 #errors
6177 /canvas/@height;nninteger:syntax error;m
6178 /canvas;no significant content;s
6179
6180 #data
6181 <canvas height="xxx" xmlns="http://www.w3.org/1999/xhtml"/>
6182 #errors
6183 /canvas/@height;nninteger:syntax error;m
6184 /canvas;no significant content;s
6185
6186 #data
6187 <canvas width="44" height="14" xmlns="http://www.w3.org/1999/xhtml"/>
6188 #errors
6189 /canvas;no significant content;s
6190
6191 #data
6192 <map xmlns="http://www.w3.org/1999/xhtml"/>
6193 #errors
6194 /map;attribute missing;name;m
6195 /map;no significant content;s
6196
6197 #data
6198 <map name="aa" xmlns="http://www.w3.org/1999/xhtml"/>
6199 #errors
6200 /map;no significant content;s
6201
6202 #data
6203 <map name="aa" xmlns="http://www.w3.org/1999/xhtml"/>
6204 #errors
6205 /map;no significant content;s
6206
6207 #data
6208 <div xmlns="http://www.w3.org/1999/xhtml">
6209 <map name="aa" id="aa"/>
6210 <p id="aa">x</p>
6211 </div>
6212 #errors
6213 /div/p/@id;duplicate ID;m
6214 /div/map;no significant content;s
6215
6216 #data
6217 <div xmlns="http://www.w3.org/1999/xhtml">
6218 <p id="aa">x</p>
6219 <map id="aa" name="aa"/>
6220 </div>
6221 #errors
6222 /div/map/@id;duplicate ID;m
6223 /div/map;no significant content;s
6224
6225 #data
6226 <map name="" xmlns="http://www.w3.org/1999/xhtml"/>
6227 #errors
6228 /map/@name;empty attribute value;m
6229 /map;no significant content;s
6230
6231 #data
6232 <area xmlns="http://www.w3.org/1999/xhtml"/>
6233 #errors
6234 /area;attribute missing;coords;m
6235
6236 #data
6237 <area href="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
6238 #errors
6239 /area;attribute missing;alt;m
6240 /area;attribute missing;coords;m
6241
6242 #data
6243 <area alt="" xmlns="http://www.w3.org/1999/xhtml"/>
6244 #errors
6245 /area/@alt;attribute not allowed;m
6246 /area;attribute missing;coords;m
6247
6248 #data
6249 <area href="http://test/" alt="" xmlns="http://www.w3.org/1999/xhtml"/>
6250 #errors
6251 /area;attribute missing;coords;m
6252
6253 #data
6254 <area href="http://test/" alt="" coords="1,2,3,4"
6255 xmlns="http://www.w3.org/1999/xhtml"/>
6256 #errors
6257
6258 #data
6259 <area href="%%http://test/" alt="" coords="1,2,3,4"
6260 xmlns="http://www.w3.org/1999/xhtml"/>
6261 #errors
6262 /area/@href;syntax error:iriref3987;m
6263
6264 #data
6265 <area href="http://test/" alt="" coords="1,2,3,4"
6266 hreflang=""
6267 xmlns="http://www.w3.org/1999/xhtml"/>
6268 #errors
6269 /area/@hreflang;langtag:language:nosemantics;m
6270
6271 #data
6272 <area href="http://test/" alt="" coords="1,2,3,4"
6273 hreflang="en"
6274 xmlns="http://www.w3.org/1999/xhtml"/>
6275 #errors
6276
6277 #data
6278 <area coords="1,2,3,4" hreflang="en"
6279 xmlns="http://www.w3.org/1999/xhtml"/>
6280 #errors
6281 /area/@hreflang;attribute not allowed;m
6282
6283 #data
6284 <area href="http://test/" alt="" coords="1,2,3,4"
6285 media="screen"
6286 xmlns="http://www.w3.org/1999/xhtml"/>
6287 #errors
6288 /area/@media;media query;u
6289
6290 #data
6291 <area coords="1,2,3,4" media="screen"
6292 xmlns="http://www.w3.org/1999/xhtml"/>
6293 #errors
6294 /area/@media;attribute not allowed;m
6295 /area/@media;media query;u
6296
6297 #data
6298 <area href="http://test/" coords="1,2,3,4" alt="" target=""
6299 xmlns="http://www.w3.org/1999/xhtml"/>
6300 #errors
6301 /area/@target;window name:empty;m
6302
6303 #data
6304 <area href="http://test/" coords="1,2,3,4" alt="" target="_"
6305 xmlns="http://www.w3.org/1999/xhtml"/>
6306 #errors
6307 /area/@target;window name:reserved;m
6308
6309 #data
6310 <area href="http://test/" coords="1,2,3,4" alt="" target="_self"
6311 xmlns="http://www.w3.org/1999/xhtml"/>
6312 #errors
6313
6314 #data
6315 <area href="http://test/" coords="1,2,3,4" alt="" target="_parent"
6316 xmlns="http://www.w3.org/1999/xhtml"/>
6317 #errors
6318
6319 #data
6320 <area href="http://test/" coords="1,2,3,4" alt="" target="_top"
6321 xmlns="http://www.w3.org/1999/xhtml"/>
6322 #errors
6323
6324 #data
6325 <area href="http://test/" coords="1,2,3,4" alt="" target="_blank"
6326 xmlns="http://www.w3.org/1999/xhtml"/>
6327 #errors
6328
6329 #data
6330 <area href="http://test/" coords="1,2,3,4" alt="" target="self"
6331 xmlns="http://www.w3.org/1999/xhtml"/>
6332 #errors
6333
6334 #data
6335 <area href="http://test/" coords="1,2,3,4" alt="" target="_any"
6336 xmlns="http://www.w3.org/1999/xhtml"/>
6337 #errors
6338 /area/@target;window name:reserved;m
6339
6340 #data
6341 <area coords="1,2,3,4" target="_self"
6342 xmlns="http://www.w3.org/1999/xhtml"/>
6343 #errors
6344 /area/@target;attribute not allowed;m
6345
6346 #data
6347 <area coords="1,2,3,4"
6348 xmlns="http://www.w3.org/1999/xhtml"/>
6349 #errors
6350
6351 #data
6352 <area shape="rect" coords="1,2,3,4"
6353 xmlns="http://www.w3.org/1999/xhtml"/>
6354 #errors
6355
6356 #data
6357 <area shape="RECT" coords="1,2,3,4"
6358 xmlns="http://www.w3.org/1999/xhtml"/>
6359 #errors
6360
6361 #data
6362 <area shape="rectangle" coords="1,2,3,4"
6363 xmlns="http://www.w3.org/1999/xhtml"/>
6364 #errors
6365 /area/@shape;enumerated:non-conforming;m
6366
6367 #data
6368 <area shape="rec" coords="1,2,3,4"
6369 xmlns="http://www.w3.org/1999/xhtml"/>
6370 #errors
6371 /area/@shape;enumerated:invalid;m
6372
6373 #data
6374 <area shape="default"
6375 xmlns="http://www.w3.org/1999/xhtml"/>
6376 #errors
6377
6378 #data
6379 <area shape="defaulT"
6380 xmlns="http://www.w3.org/1999/xhtml"/>
6381 #errors
6382
6383 #data
6384 <area shape="circ" coords="1,2,3"
6385 xmlns="http://www.w3.org/1999/xhtml"/>
6386 #errors
6387 /area/@shape;enumerated:non-conforming;m
6388
6389 #data
6390 <area shape="circle" coords="1,2,3"
6391 xmlns="http://www.w3.org/1999/xhtml"/>
6392 #errors
6393
6394 #data
6395 <area shape="poly" coords="1,2,3,4,5,6"
6396 xmlns="http://www.w3.org/1999/xhtml"/>
6397 #errors
6398
6399 #data
6400 <area shape="polygon" coords="1,2,3,4,5,6"
6401 xmlns="http://www.w3.org/1999/xhtml"/>
6402 #errors
6403 /area/@shape;enumerated:non-conforming;m
6404
6405 #data
6406 <area shape="XXX" coords="1,2,3,4"
6407 xmlns="http://www.w3.org/1999/xhtml"/>
6408 #errors
6409 /area/@shape;enumerated:invalid;m
6410
6411 #data
6412 <area shape="circle" coords=""
6413 xmlns="http://www.w3.org/1999/xhtml"/>
6414 #errors
6415 /area/@coords;coords:syntax error;m
6416
6417 #data
6418 <area shape="circle" coords="1"
6419 xmlns="http://www.w3.org/1999/xhtml"/>
6420 #errors
6421 /area/@coords;coords:number not 3;1;m
6422
6423 #data
6424 <area shape="circle" coords="1,2"
6425 xmlns="http://www.w3.org/1999/xhtml"/>
6426 #errors
6427 /area/@coords;coords:number not 3;2;m
6428
6429 #data
6430 <area shape="circle" coords="1,2,3,4"
6431 xmlns="http://www.w3.org/1999/xhtml"/>
6432 #errors
6433 /area/@coords;coords:number not 3;4;m
6434
6435 #data
6436 <area shape="circle" coords="1,2,3,4,5"
6437 xmlns="http://www.w3.org/1999/xhtml"/>
6438 #errors
6439 /area/@coords;coords:number not 3;5;m
6440
6441 #data
6442 <area shape="circle" coords="1,2,-3"
6443 xmlns="http://www.w3.org/1999/xhtml"/>
6444 #errors
6445 /area/@coords;coords:out of range;m
6446
6447 #data
6448 <area shape="circle" coords="1,2,0"
6449 xmlns="http://www.w3.org/1999/xhtml"/>
6450 #errors
6451
6452 #data
6453 <area shape="circle" coords="-1,-2,4"
6454 xmlns="http://www.w3.org/1999/xhtml"/>
6455 #errors
6456
6457 #data
6458 <area shape="circle" coords="0,0,0"
6459 xmlns="http://www.w3.org/1999/xhtml"/>
6460 #errors
6461
6462 #data
6463 <area shape="circle"
6464 xmlns="http://www.w3.org/1999/xhtml"/>
6465 #errors
6466 /area;attribute missing;coords;m
6467
6468 #data
6469 <area shape="default" coords="1"
6470 xmlns="http://www.w3.org/1999/xhtml"/>
6471 #errors
6472 /area/@coords;attribute not allowed;m
6473
6474 #data
6475 <area shape="poly" coords=""
6476 xmlns="http://www.w3.org/1999/xhtml"/>
6477 #errors
6478 /area/@coords;coords:syntax error;m
6479
6480 #data
6481 <area shape="poly" coords="1"
6482 xmlns="http://www.w3.org/1999/xhtml"/>
6483 #errors
6484 /area/@coords;coords:number lt 6;1;m
6485
6486 #data
6487 <area shape="poly" coords="1,2"
6488 xmlns="http://www.w3.org/1999/xhtml"/>
6489 #errors
6490 /area/@coords;coords:number lt 6;2;m
6491
6492 #data
6493 <area shape="poly" coords="1,2,3"
6494 xmlns="http://www.w3.org/1999/xhtml"/>
6495 #errors
6496 /area/@coords;coords:number lt 6;3;m
6497
6498 #data
6499 <area shape="poly" coords="1,2,3,4"
6500 xmlns="http://www.w3.org/1999/xhtml"/>
6501 #errors
6502 /area/@coords;coords:number lt 6;4;m
6503
6504 #data
6505 <area shape="poly" coords="1,2,3,4,5"
6506 xmlns="http://www.w3.org/1999/xhtml"/>
6507 #errors
6508 /area/@coords;coords:number lt 6;5;m
6509
6510 #data
6511 <area shape="poly" coords="1,2,3,4,5,6,7"
6512 xmlns="http://www.w3.org/1999/xhtml"/>
6513 #errors
6514 /area/@coords;coords:number not even;7;m
6515
6516 #data
6517 <area shape="poly" coords="-1,-23,55,455,232,0"
6518 xmlns="http://www.w3.org/1999/xhtml"/>
6519 #errors
6520
6521 #data
6522 <area shape="poly" coords="0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0"
6523 xmlns="http://www.w3.org/1999/xhtml"/>
6524 #errors
6525
6526 #data
6527 <area shape="poly"
6528 xmlns="http://www.w3.org/1999/xhtml"/>
6529 #errors
6530 /area;attribute missing;coords;m
6531
6532 #data
6533 <area shape="rect" coords=""
6534 xmlns="http://www.w3.org/1999/xhtml"/>
6535 #errors
6536 /area/@coords;coords:syntax error;m
6537
6538 #data
6539 <area shape="rect" coords="1"
6540 xmlns="http://www.w3.org/1999/xhtml"/>
6541 #errors
6542 /area/@coords;coords:number not 4;1;m
6543
6544 #data
6545 <area shape="rect" coords="1,2"
6546 xmlns="http://www.w3.org/1999/xhtml"/>
6547 #errors
6548 /area/@coords;coords:number not 4;2;m
6549
6550 #data
6551 <area shape="rect" coords="1,2,3"
6552 xmlns="http://www.w3.org/1999/xhtml"/>
6553 #errors
6554 /area/@coords;coords:number not 4;3;m
6555
6556 #data
6557 <area shape="rect" coords="1,2,3,4,5"
6558 xmlns="http://www.w3.org/1999/xhtml"/>
6559 #errors
6560 /area/@coords;coords:number not 4;5;m
6561
6562 #data
6563 <area shape="rect"
6564 xmlns="http://www.w3.org/1999/xhtml"/>
6565 #errors
6566 /area;attribute missing;coords;m
6567
6568 #data
6569 <area shape="rect" coords="0,0,1,1"
6570 xmlns="http://www.w3.org/1999/xhtml"/>
6571 #errors
6572
6573 #data
6574 <area shape="rect" coords="-1,-1,0,0"
6575 xmlns="http://www.w3.org/1999/xhtml"/>
6576 #errors
6577
6578 #data
6579 <area shape="rect" coords="-1,-1,6,6"
6580 xmlns="http://www.w3.org/1999/xhtml"/>
6581 #errors
6582
6583 #data
6584 <area shape="rect" coords="54,54,7876,466"
6585 xmlns="http://www.w3.org/1999/xhtml"/>
6586 #errors
6587
6588 #data
6589 <area shape="rect" coords="646,4,3,657"
6590 xmlns="http://www.w3.org/1999/xhtml"/>
6591 #errors
6592 /area/@coords;coords:out of range;m
6593
6594 #data
6595 <area shape="rect" coords="4,646,657,7"
6596 xmlns="http://www.w3.org/1999/xhtml"/>
6597 #errors
6598 /area/@coords;coords:out of range;m
6599
6600 #data
6601 <area shape="rect" coords="1,2,3,4"
6602 ping="a b"
6603 xmlns="http://www.w3.org/1999/xhtml"/>
6604 #errors
6605 /area/@ping;attribute not allowed;m
6606
6607 #data
6608 <area shape="rect" coords="1,2,3,4"
6609 rel="author"
6610 xmlns="http://www.w3.org/1999/xhtml"/>
6611 #errors
6612 /area/@rel;attribute not allowed;m
6613
6614 #data
6615 <area shape="rect" coords="1,2,3,4"
6616 type="text/css"
6617 xmlns="http://www.w3.org/1999/xhtml"/>
6618 #errors
6619 /area/@type;attribute not allowed;m
6620
6621 #data
6622 <area shape="rect" coords="1,2,3,4"
6623 href="http://test/" type="text" alt=""
6624 xmlns="http://www.w3.org/1999/xhtml"/>
6625 #errors
6626 /area/@type;IMT:syntax error;m
6627
6628 #data
6629 <area shape="rect" coords="1,2,3,4"
6630 href="http://test/" type="text/css" alt=""
6631 xmlns="http://www.w3.org/1999/xhtml"/>
6632 #errors
6633
6634 #data
6635 <area shape="rect" coords="1,2,3,4"
6636 href="http://test/" rel="author" alt=""
6637 xmlns="http://www.w3.org/1999/xhtml"/>
6638 #errors
6639
6640 #data
6641 <?xml version="1.1"?>
6642 <area shape="rect" coords="1,2,3,4"
6643 href="http://test/" rel="author&#x0b;" alt=""
6644 xmlns="http://www.w3.org/1999/xhtml"/>
6645 #errors
6646 /area/@rel;unknown link type;u
6647
6648 #data
6649 <?xml version="1.1"?>
6650 <area shape="rect" coords="1,2,3,4"
6651 href="http://test/" rel="&#x0b;author" alt=""
6652 xmlns="http://www.w3.org/1999/xhtml"/>
6653 #errors
6654 /area/@rel;unknown link type;u
6655
6656 #data
6657 <?xml version="1.1"?>
6658 <area shape="rect" coords="1,2,3,4"
6659 href="http://test/" rel="author&#x0b;license" alt=""
6660 xmlns="http://www.w3.org/1999/xhtml"/>
6661 #errors
6662 /area/@rel;unknown link type;u
6663
6664 #data
6665 <area shape="rect" coords="1,2,3,4"
6666 href="http://test/" rel="author author" alt=""
6667 xmlns="http://www.w3.org/1999/xhtml"/>
6668 #errors
6669 /area/@rel;duplicate token;m
6670
6671 #data
6672 <area shape="rect" coords="1,2,3,4"
6673 href="http://test/" rel="bookmark" alt=""
6674 xmlns="http://www.w3.org/1999/xhtml"/>
6675 #errors
6676
6677 #data
6678 <area shape="rect" coords="1,2,3,4"
6679 href="http://test/" rel="previous" alt=""
6680 xmlns="http://www.w3.org/1999/xhtml"/>
6681 #errors
6682 /area/@rel;link type:non-conforming;m
6683
6684 #data
6685 <area shape="rect" coords="1,2,3,4"
6686 href="http://test/" rel="edit" alt=""
6687 xmlns="http://www.w3.org/1999/xhtml"/>
6688 #errors
6689 /area/@rel;link type:proposed;s
6690
6691 #data
6692 <area shape="rect" coords="1,2,3,4"
6693 href="http://test/" rel="contact" alt=""
6694 xmlns="http://www.w3.org/1999/xhtml"/>
6695 #errors
6696 /area/@rel;link type:proposed;s
6697
6698 #data
6699 <area shape="rect" coords="1,2,3,4"
6700 href="http://test/" rel="script" alt=""
6701 xmlns="http://www.w3.org/1999/xhtml"/>
6702 #errors
6703 /area/@rel;link type:non-conforming;m
6704
6705 #data
6706 <area shape="rect" coords="1,2,3,4"
6707 href="http://test/" rel="icon" alt=""
6708 xmlns="http://www.w3.org/1999/xhtml"/>
6709 #errors
6710 /area/@rel;link type:bad context;m
6711
6712 #data
6713 <area shape="rect" coords="1,2,3,4"
6714 href="http://test/" rel="example-link-type" alt=""
6715 xmlns="http://www.w3.org/1999/xhtml"/>
6716 #errors
6717 /area/@rel;unknown link type;u
6718
6719 #data
6720 <area shape="rect" coords="1,2,3,4"
6721 href="http://test/" ping="a b" alt=""
6722 xmlns="http://www.w3.org/1999/xhtml"/>
6723 #errors
6724
6725 #data
6726 <area shape="rect" coords="1,2,3,4"
6727 href="http://test/" ping="a [b]" alt=""
6728 xmlns="http://www.w3.org/1999/xhtml"/>
6729 #errors
6730 /area/@ping;syntax error:iriref3987;m
6731
6732 #data
6733 <area shape="rect" coords="1,2,3,4"
6734 href="http://test/" ping="a [b] [@c]" alt=""
6735 xmlns="http://www.w3.org/1999/xhtml"/>
6736 #errors
6737 /area/@ping;syntax error:iriref3987;m
6738 /area/@ping;syntax error:iriref3987;m
6739
6740 #data
6741 <map name="m" xmlns="http://www.w3.org/1999/xhtml">
6742 <area shape="rect" coords="1,2,3,4" href="" alt=""/>
6743 x<area shape="rect" coords="5,6,7,8" href="" alt=""/>
6744 </map>
6745 #errors
6746 /map/area/@alt;empty area alt;m
6747 /map/area/@alt;empty area alt;m
6748
6749 #data
6750 <map name="m" xmlns="http://www.w3.org/1999/xhtml">
6751 <area shape="rect" coords="1,2,3,4" href="" alt=""/>
6752 <area shape="rect" coords="5,6,7,8" href="" alt="x"/>
6753 x</map>
6754 #errors
6755
6756 #data
6757 <map name="m" xmlns="http://www.w3.org/1999/xhtml">
6758 <area shape="rect" coords="1,2,3,4" href="" alt="x"/>
6759 <area shape="rect" coords="5,6,7,8" href="" alt=""/>
6760 x</map>
6761 #errors
6762
6763 #data
6764 <map name="m" xmlns="http://www.w3.org/1999/xhtml">
6765 <area shape="rect" coords="1,2,3,4" href="" alt=""/>
6766 <area shape="rect" coords="5,6,7,8" href="" alt=""/>
6767 <area shape="rect" coords="9,10,11,12" href="" alt="x"/>
6768 x</map>
6769 #errors
6770
6771 #data
6772 <map name="m" xmlns="http://www.w3.org/1999/xhtml">
6773 <area shape="rect" coords="1,2,3,4" href="a" alt="x"/>
6774 <area shape="rect" coords="5,6,7,8" href="" alt=""/>
6775 x</map>
6776 #errors
6777 /map/area/@alt;empty area alt;m
6778
6779 #data
6780 <map name="m" xmlns="http://www.w3.org/1999/xhtml">
6781 <area shape="rect" coords="1,2,3,4" href="a" alt=""/>
6782 <area shape="rect" coords="5,6,7,8" href="a" alt=""/>
6783 x</map>
6784 #errors
6785 /map/area/@alt;empty area alt;m
6786 /map/area/@alt;empty area alt;m
6787
6788 #data
6789 <map name="m" xmlns="http://www.w3.org/1999/xhtml">
6790 <area shape="rect" coords="1,2,3,4" href="b" alt="a"/>
6791 <area shape="rect" coords="5,6,7,8" href="b" alt=""/>
6792 x</map>
6793 #errors
6794
6795 #data
6796 <map name="m" xmlns="http://www.w3.org/1999/xhtml">
6797 <area shape="rect" coords="1,2,3,4" href="" alt=""/>
6798 <map name="n">
6799 <area shape="rect" coords="5,6,7,8" href="" alt="x"/>x
6800 </map>
6801 </map>
6802 #errors
6803
6804 #data
6805 <map name="m" xmlns="http://www.w3.org/1999/xhtml">
6806 <area shape="rect" coords="1,2,3,4" href="" alt="x"/>
6807 <map name="n">
6808 <area shape="rect" coords="5,6,7,8" href="" alt=""/>x
6809 </map>
6810 </map>
6811 #errors
6812 /map/map/area/@alt;empty area alt;m
6813
6814 #data
6815 <area shape="default" rev="" xmlns="http://www.w3.org/1999/xhtml"/>
6816 #errors
6817 /area/@rev;attribute not defined;m
6818
6819 #data
6820 <area shape="default" nohref="" xmlns="http://www.w3.org/1999/xhtml"/>
6821 #errors
6822 /area/@nohref;attribute not defined;m
6823
6824 #data
6825 <area shape="default" nohref="nohref" xmlns="http://www.w3.org/1999/xhtml"/>
6826 #errors
6827 /area/@nohref;attribute not defined;m
6828
6829 #data
6830 <area shape="default" nohref="noHREF" xmlns="http://www.w3.org/1999/xhtml"/>
6831 #errors
6832 /area/@nohref;attribute not defined;m
6833
6834 #data
6835 <area shape="default" nohref="http://example/" xmlns="http://www.w3.org/1999/xhtml"/>
6836 #errors
6837 /area/@nohref;attribute not defined;m
6838 /area/@nohref;boolean:invalid;m
6839
6840 #data
6841 <area shape="default" charset="us-ascii" xmlns="http://www.w3.org/1999/xhtml"/>
6842 #errors
6843 /area/@charset;attribute not defined;m
6844
6845 #data
6846 <table xmlns="http://www.w3.org/1999/xhtml"/>
6847 #errors
6848
6849 #data
6850 <table xmlns="http://www.w3.org/1999/xhtml" summary=""/>
6851 #errors
6852 /table/@summary;attribute not defined;m
6853
6854 #data
6855 <table xmlns="http://www.w3.org/1999/xhtml" summary="xxxx"/>
6856 #errors
6857 /table/@summary;attribute not defined;m
6858
6859 #data
6860 <table border="" xmlns="http://www.w3.org/1999/xhtml"/>
6861 #errors
6862 /table/@border;attribute not defined;m
6863 /table/@border;nninteger:syntax error;m
6864
6865 #data
6866 <table border="1" xmlns="http://www.w3.org/1999/xhtml"/>
6867 #errors
6868 /table/@border;attribute not defined;m
6869
6870 #data
6871 <table frame="border" xmlns="http://www.w3.org/1999/xhtml"/>
6872 #errors
6873 /table/@frame;attribute not defined;m
6874
6875 #data
6876 <table frame="below" xmlns="http://www.w3.org/1999/xhtml"/>
6877 #errors
6878 /table/@frame;attribute not defined;m
6879
6880 #data
6881 <table frame="box" xmlns="http://www.w3.org/1999/xhtml"/>
6882 #errors
6883 /table/@frame;attribute not defined;m
6884
6885 #data
6886 <table frame="vside" xmlns="http://www.w3.org/1999/xhtml"/>
6887 #errors
6888 /table/@frame;attribute not defined;m
6889 /table/@frame;enumerated:invalid;m
6890
6891 #data
6892 <table rules="none" xmlns="http://www.w3.org/1999/xhtml"/>
6893 #errors
6894 /table/@rules;attribute not defined;m
6895
6896 #data
6897 <table rules="groups" xmlns="http://www.w3.org/1999/xhtml"/>
6898 #errors
6899 /table/@rules;attribute not defined;m
6900
6901 #data
6902 <table rules="all" xmlns="http://www.w3.org/1999/xhtml"/>
6903 #errors
6904 /table/@rules;attribute not defined;m
6905
6906 #data
6907 <table rules="group" xmlns="http://www.w3.org/1999/xhtml"/>
6908 #errors
6909 /table/@rules;attribute not defined;m
6910 /table/@rules;enumerated:invalid;m
6911
6912 #data
6913 <table cellpadding="1" xmlns="http://www.w3.org/1999/xhtml"/>
6914 #errors
6915 /table/@cellpadding;attribute not defined;m
6916
6917 #data
6918 <table cellpadding="0" xmlns="http://www.w3.org/1999/xhtml"/>
6919 #errors
6920 /table/@cellpadding;attribute not defined;m
6921
6922 #data
6923 <table cellpadding="1%" xmlns="http://www.w3.org/1999/xhtml"/>
6924 #errors
6925 /table/@cellpadding;attribute not defined;m
6926
6927 #data
6928 <table cellpadding="1000%" xmlns="http://www.w3.org/1999/xhtml"/>
6929 #errors
6930 /table/@cellpadding;attribute not defined;m
6931
6932 #data
6933 <table cellpadding="1px" xmlns="http://www.w3.org/1999/xhtml"/>
6934 #errors
6935 /table/@cellpadding;attribute not defined;m
6936 /table/@cellpadding;length:syntax error;m
6937
6938 #data
6939 <table cellpadding="1 " xmlns="http://www.w3.org/1999/xhtml"/>
6940 #errors
6941 /table/@cellpadding;attribute not defined;m
6942 /table/@cellpadding;length:syntax error;m
6943
6944 #data
6945 <table cellpadding=" 4" xmlns="http://www.w3.org/1999/xhtml"/>
6946 #errors
6947 /table/@cellpadding;attribute not defined;m
6948 /table/@cellpadding;length:syntax error;m
6949
6950 #data
6951 <table cellpadding="" xmlns="http://www.w3.org/1999/xhtml"/>
6952 #errors
6953 /table/@cellpadding;attribute not defined;m
6954 /table/@cellpadding;length:syntax error;m
6955
6956 #data
6957 <table cellpadding="1,45" xmlns="http://www.w3.org/1999/xhtml"/>
6958 #errors
6959 /table/@cellpadding;attribute not defined;m
6960 /table/@cellpadding;length:syntax error;m
6961
6962 #data
6963 <table cellpadding="1*" xmlns="http://www.w3.org/1999/xhtml"/>
6964 #errors
6965 /table/@cellpadding;attribute not defined;m
6966 /table/@cellpadding;length:syntax error;m
6967
6968 #data
6969 <table cellpadding="+1" xmlns="http://www.w3.org/1999/xhtml"/>
6970 #errors
6971 /table/@cellpadding;attribute not defined;m
6972 /table/@cellpadding;length:syntax error;m
6973
6974 #data
6975 <table cellpadding="1.0" xmlns="http://www.w3.org/1999/xhtml"/>
6976 #errors
6977 /table/@cellpadding;attribute not defined;m
6978 /table/@cellpadding;length:syntax error;m
6979
6980 #data
6981 <table cellpadding="-0" xmlns="http://www.w3.org/1999/xhtml"/>
6982 #errors
6983 /table/@cellpadding;attribute not defined;m
6984 /table/@cellpadding;length:syntax error;m
6985
6986 #data
6987 <table cellspacing="1" xmlns="http://www.w3.org/1999/xhtml"/>
6988 #errors
6989 /table/@cellspacing;attribute not defined;m
6990
6991 #data
6992 <table cellspacing="0" xmlns="http://www.w3.org/1999/xhtml"/>
6993 #errors
6994 /table/@cellspacing;attribute not defined;m
6995
6996 #data
6997 <table cellspacing="1%" xmlns="http://www.w3.org/1999/xhtml"/>
6998 #errors
6999 /table/@cellspacing;attribute not defined;m
7000
7001 #data
7002 <table cellspacing="1000%" xmlns="http://www.w3.org/1999/xhtml"/>
7003 #errors
7004 /table/@cellspacing;attribute not defined;m
7005
7006 #data
7007 <table cellspacing="1px" xmlns="http://www.w3.org/1999/xhtml"/>
7008 #errors
7009 /table/@cellspacing;attribute not defined;m
7010 /table/@cellspacing;length:syntax error;m
7011
7012 #data
7013 <table cellspacing="1 " xmlns="http://www.w3.org/1999/xhtml"/>
7014 #errors
7015 /table/@cellspacing;attribute not defined;m
7016 /table/@cellspacing;length:syntax error;m
7017
7018 #data
7019 <table cellspacing=" 4" xmlns="http://www.w3.org/1999/xhtml"/>
7020 #errors
7021 /table/@cellspacing;attribute not defined;m
7022 /table/@cellspacing;length:syntax error;m
7023
7024 #data
7025 <table cellspacing="" xmlns="http://www.w3.org/1999/xhtml"/>
7026 #errors
7027 /table/@cellspacing;attribute not defined;m
7028 /table/@cellspacing;length:syntax error;m
7029
7030 #data
7031 <table cellspacing="1,45" xmlns="http://www.w3.org/1999/xhtml"/>
7032 #errors
7033 /table/@cellspacing;attribute not defined;m
7034 /table/@cellspacing;length:syntax error;m
7035
7036 #data
7037 <table cellspacing="1*" xmlns="http://www.w3.org/1999/xhtml"/>
7038 #errors
7039 /table/@cellspacing;attribute not defined;m
7040 /table/@cellspacing;length:syntax error;m
7041
7042 #data
7043 <table cellspacing="+1" xmlns="http://www.w3.org/1999/xhtml"/>
7044 #errors
7045 /table/@cellspacing;attribute not defined;m
7046 /table/@cellspacing;length:syntax error;m
7047
7048 #data
7049 <table cellspacing="1.0" xmlns="http://www.w3.org/1999/xhtml"/>
7050 #errors
7051 /table/@cellspacing;attribute not defined;m
7052 /table/@cellspacing;length:syntax error;m
7053
7054 #data
7055 <table cellspacing="-0" xmlns="http://www.w3.org/1999/xhtml"/>
7056 #errors
7057 /table/@cellspacing;attribute not defined;m
7058 /table/@cellspacing;length:syntax error;m
7059
7060 #data
7061 <caption align="top" xmlns="http://www.w3.org/1999/xhtml"/>
7062 #errors
7063 /caption/@align;attribute not defined;m
7064 /caption;no significant content;s
7065
7066 #data
7067 <caption align="bottom" xmlns="http://www.w3.org/1999/xhtml">x</caption>
7068 #errors
7069 /caption/@align;attribute not defined;m
7070
7071 #data
7072 <caption align="left" xmlns="http://www.w3.org/1999/xhtml">x</caption>
7073 #errors
7074 /caption/@align;attribute not defined;m
7075
7076 #data
7077 <caption align="right" xmlns="http://www.w3.org/1999/xhtml">x</caption>
7078 #errors
7079 /caption/@align;attribute not defined;m
7080
7081 #data
7082 <caption align="middle" xmlns="http://www.w3.org/1999/xhtml">x</caption>
7083 #errors
7084 /caption/@align;attribute not defined;m
7085 /caption/@align;enumerated:invalid;m
7086
7087 #data
7088 <caption align="center" xmlns="http://www.w3.org/1999/xhtml">x</caption>
7089 #errors
7090 /caption/@align;attribute not defined;m
7091 /caption/@align;enumerated:invalid;m
7092
7093 #data
7094 <caption align="justify" xmlns="http://www.w3.org/1999/xhtml">x</caption>
7095 #errors
7096 /caption/@align;attribute not defined;m
7097 /caption/@align;enumerated:invalid;m
7098
7099 #data
7100 <caption align="" xmlns="http://www.w3.org/1999/xhtml">x</caption>
7101 #errors
7102 /caption/@align;attribute not defined;m
7103 /caption/@align;enumerated:invalid;m
7104
7105 #data
7106 <colgroup xmlns="http://www.w3.org/1999/xhtml"/>
7107 #errors
7108
7109 #data
7110 <colgroup span="" xmlns="http://www.w3.org/1999/xhtml"/>
7111 #errors
7112 /colgroup/@span;nninteger:syntax error;m
7113
7114 #data
7115 <colgroup span="1" xmlns="http://www.w3.org/1999/xhtml"/>
7116 #errors
7117
7118 #data
7119 <colgroup span="0000000000001" xmlns="http://www.w3.org/1999/xhtml"/>
7120 #errors
7121
7122 #data
7123 <colgroup span="1000000000000" xmlns="http://www.w3.org/1999/xhtml"/>
7124 #errors
7125
7126 #data
7127 <colgroup span="0" xmlns="http://www.w3.org/1999/xhtml"/>
7128 #errors
7129 /colgroup/@span;nninteger:out of range;m
7130
7131 #data
7132 <colgroup span="-1" xmlns="http://www.w3.org/1999/xhtml"/>
7133 #errors
7134 /colgroup/@span;nninteger:syntax error;m
7135
7136 #data
7137 <colgroup span="+1" xmlns="http://www.w3.org/1999/xhtml"/>
7138 #errors
7139 /colgroup/@span;nninteger:syntax error;m
7140
7141 #data
7142 <colgroup span="111.1" xmlns="http://www.w3.org/1999/xhtml"/>
7143 #errors
7144 /colgroup/@span;nninteger:syntax error;m
7145
7146 #data
7147 <colgroup span="haergrghra" xmlns="http://www.w3.org/1999/xhtml"/>
7148 #errors
7149 /colgroup/@span;nninteger:syntax error;m
7150
7151 #data
7152 <colgroup charoff="1" xmlns="http://www.w3.org/1999/xhtml"/>
7153 #errors
7154 /colgroup/@charoff;attribute not defined;m
7155
7156 #data
7157 <colgroup charoff="0%" xmlns="http://www.w3.org/1999/xhtml"/>
7158 #errors
7159 /colgroup/@charoff;attribute not defined;m
7160
7161 #data
7162 <colgroup charoff="1px" xmlns="http://www.w3.org/1999/xhtml"/>
7163 #errors
7164 /colgroup/@charoff;attribute not defined;m
7165 /colgroup/@charoff;length:syntax error;m
7166
7167 #data
7168 <col xmlns="http://www.w3.org/1999/xhtml"/>
7169 #errors
7170
7171 #data
7172 <col span="" xmlns="http://www.w3.org/1999/xhtml"/>
7173 #errors
7174 /col/@span;nninteger:syntax error;m
7175
7176 #data
7177 <col span="0" xmlns="http://www.w3.org/1999/xhtml"/>
7178 #errors
7179 /col/@span;nninteger:out of range;m
7180
7181 #data
7182 <col span="1" xmlns="http://www.w3.org/1999/xhtml"/>
7183 #errors
7184
7185 #data
7186 <col span="10" xmlns="http://www.w3.org/1999/xhtml"/>
7187 #errors
7188
7189 #data
7190 <col span="-1" xmlns="http://www.w3.org/1999/xhtml"/>
7191 #errors
7192 /col/@span;nninteger:syntax error;m
7193
7194 #data
7195 <col charoff="1" xmlns="http://www.w3.org/1999/xhtml"/>
7196 #errors
7197 /col/@charoff;attribute not defined;m
7198
7199 #data
7200 <col charoff="0%" xmlns="http://www.w3.org/1999/xhtml"/>
7201 #errors
7202 /col/@charoff;attribute not defined;m
7203
7204 #data
7205 <col charoff="1px" xmlns="http://www.w3.org/1999/xhtml"/>
7206 #errors
7207 /col/@charoff;attribute not defined;m
7208 /col/@charoff;length:syntax error;m
7209
7210 #data
7211 <thead charoff="1" xmlns="http://www.w3.org/1999/xhtml"/>
7212 #errors
7213 /thead/@charoff;attribute not defined;m
7214
7215 #data
7216 <thead charoff="0%" xmlns="http://www.w3.org/1999/xhtml"/>
7217 #errors
7218 /thead/@charoff;attribute not defined;m
7219
7220 #data
7221 <thead charoff="1px" xmlns="http://www.w3.org/1999/xhtml"/>
7222 #errors
7223 /thead/@charoff;attribute not defined;m
7224 /thead/@charoff;length:syntax error;m
7225
7226 #data
7227 <tbody charoff="1" xmlns="http://www.w3.org/1999/xhtml"/>
7228 #errors
7229 /tbody/@charoff;attribute not defined;m
7230
7231 #data
7232 <tbody charoff="0%" xmlns="http://www.w3.org/1999/xhtml"/>
7233 #errors
7234 /tbody/@charoff;attribute not defined;m
7235
7236 #data
7237 <tbody charoff="1px" xmlns="http://www.w3.org/1999/xhtml"/>
7238 #errors
7239 /tbody/@charoff;attribute not defined;m
7240 /tbody/@charoff;length:syntax error;m
7241
7242 #data
7243 <tfoot charoff="1" xmlns="http://www.w3.org/1999/xhtml"/>
7244 #errors
7245 /tfoot/@charoff;attribute not defined;m
7246
7247 #data
7248 <tfoot charoff="0%" xmlns="http://www.w3.org/1999/xhtml"/>
7249 #errors
7250 /tfoot/@charoff;attribute not defined;m
7251
7252 #data
7253 <tfoot charoff="1px" xmlns="http://www.w3.org/1999/xhtml"/>
7254 #errors
7255 /tfoot/@charoff;attribute not defined;m
7256 /tfoot/@charoff;length:syntax error;m
7257
7258 #data
7259 <tr bgcolor="blue" xmlns="http://www.w3.org/1999/xhtml"><td>x</td></tr>
7260 #errors
7261 /tr/@bgcolor;attribute not defined;m
7262
7263 #data
7264 <tr charoff="1" xmlns="http://www.w3.org/1999/xhtml"/>
7265 #errors
7266 /tr/@charoff;attribute not defined;m
7267
7268 #data
7269 <tr charoff="0%" xmlns="http://www.w3.org/1999/xhtml"/>
7270 #errors
7271 /tr/@charoff;attribute not defined;m
7272
7273 #data
7274 <tr charoff="1px" xmlns="http://www.w3.org/1999/xhtml"/>
7275 #errors
7276 /tr/@charoff;attribute not defined;m
7277 /tr/@charoff;length:syntax error;m
7278
7279 #data
7280 <td colspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
7281 #errors
7282 /td;no significant content;s
7283
7284 #data
7285 <td colspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
7286 #errors
7287 /td/@colspan;nninteger:out of range;m
7288 /td;no significant content;s
7289
7290 #data
7291 <td rowspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
7292 #errors
7293 /td;no significant content;s
7294
7295 #data
7296 <td rowspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
7297 #errors
7298 /td/@rowspan;nninteger:out of range;m
7299 /td;no significant content;s
7300
7301 #data
7302 <td charoff="1" xmlns="http://www.w3.org/1999/xhtml">x</td>
7303 #errors
7304 /td/@charoff;attribute not defined;m
7305
7306 #data
7307 <td charoff="0%" xmlns="http://www.w3.org/1999/xhtml">x</td>
7308 #errors
7309 /td/@charoff;attribute not defined;m
7310
7311 #data
7312 <td charoff="1px" xmlns="http://www.w3.org/1999/xhtml">x</td>
7313 #errors
7314 /td/@charoff;attribute not defined;m
7315 /td/@charoff;length:syntax error;m
7316
7317 #data
7318 <th charoff="1" xmlns="http://www.w3.org/1999/xhtml">x</th>
7319 #errors
7320 /th/@charoff;attribute not defined;m
7321
7322 #data
7323 <th charoff="0%" xmlns="http://www.w3.org/1999/xhtml">x</th>
7324 #errors
7325 /th/@charoff;attribute not defined;m
7326
7327 #data
7328 <th charoff="1px" xmlns="http://www.w3.org/1999/xhtml">x</th>
7329 #errors
7330 /th/@charoff;attribute not defined;m
7331 /th/@charoff;length:syntax error;m
7332
7333 #data
7334 <th colspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
7335 #errors
7336 /th;no significant content;s
7337
7338 #data
7339 <th colspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
7340 #errors
7341 /th;no significant content;s
7342 /th/@colspan;nninteger:out of range;m
7343
7344 #data
7345 <th rowspan="1" xmlns="http://www.w3.org/1999/xhtml"/>
7346 #errors
7347 /th;no significant content;s
7348
7349 #data
7350 <th rowspan="0" xmlns="http://www.w3.org/1999/xhtml"/>
7351 #errors
7352 /th/@rowspan;nninteger:out of range;m
7353 /th;no significant content;s
7354
7355 #data
7356 <th scope="" xmlns="http://www.w3.org/1999/xhtml"/>
7357 #errors
7358 /th/@scope;enumerated:invalid;m
7359 /th;no significant content;s
7360
7361 #data
7362 <th scope="row" xmlns="http://www.w3.org/1999/xhtml"/>
7363 #errors
7364 /th;no significant content;s
7365
7366 #data
7367 <th scope="col" xmlns="http://www.w3.org/1999/xhtml"/>
7368 #errors
7369 /th;no significant content;s
7370
7371 #data
7372 <th scope="Col" xmlns="http://www.w3.org/1999/xhtml"/>
7373 #errors
7374 /th;no significant content;s
7375
7376 #data
7377 <th scope="rowgroup" xmlns="http://www.w3.org/1999/xhtml"/>
7378 #errors
7379 /th;no significant content;s
7380
7381 #data
7382 <th scope="colgroup" xmlns="http://www.w3.org/1999/xhtml"/>
7383 #errors
7384 /th;no significant content;s
7385
7386 #data
7387 <td scope="row" xmlns="http://www.w3.org/1999/xhtml"/>
7388 #errors
7389 /td/@scope;attribute not defined;m
7390 /td;no significant content;s
7391
7392 #data
7393 <td scope="rowgroup" xmlns="http://www.w3.org/1999/xhtml"/>
7394 #errors
7395 /td/@scope;attribute not defined;m
7396 /td;no significant content;s
7397
7398 #data
7399 <td scope="" xmlns="http://www.w3.org/1999/xhtml"/>
7400 #errors
7401 /td/@scope;attribute not defined;m
7402 /td/@scope;enumerated:invalid;m
7403 /td;no significant content;s
7404
7405 #data
7406 <td nowrap="" xmlns="http://www.w3.org/1999/xhtml">x</td>
7407 #errors
7408 /td/@nowrap;attribute not defined;m
7409
7410 #data
7411 <td nowrap="nowrap" xmlns="http://www.w3.org/1999/xhtml">x</td>
7412 #errors
7413 /td/@nowrap;attribute not defined;m
7414
7415 #data
7416 <td nowrap="nowrap" xmlns="http://www.w3.org/1999/xhtml">x</td>
7417 #errors
7418 /td/@nowrap;attribute not defined;m
7419
7420 #data
7421 <td nowrap="NoWrap" xmlns="http://www.w3.org/1999/xhtml">x</td>
7422 #errors
7423 /td/@nowrap;attribute not defined;m
7424
7425 #data
7426 <td nowrap="yes" xmlns="http://www.w3.org/1999/xhtml">x</td>
7427 #errors
7428 /td/@nowrap;attribute not defined;m
7429 /td/@nowrap;boolean:invalid;m
7430
7431 #data
7432 <th nowrap="" xmlns="http://www.w3.org/1999/xhtml">x</th>
7433 #errors
7434 /th/@nowrap;attribute not defined;m
7435
7436 #data
7437 <th nowrap="nowrap" xmlns="http://www.w3.org/1999/xhtml">x</th>
7438 #errors
7439 /th/@nowrap;attribute not defined;m
7440
7441 #data
7442 <th nowrap="nowrap" xmlns="http://www.w3.org/1999/xhtml">x</th>
7443 #errors
7444 /th/@nowrap;attribute not defined;m
7445
7446 #data
7447 <th nowrap="NOwrap" xmlns="http://www.w3.org/1999/xhtml">x</th>
7448 #errors
7449 /th/@nowrap;attribute not defined;m
7450
7451 #data
7452 <th nowrap="yes" xmlns="http://www.w3.org/1999/xhtml">x</th>
7453 #errors
7454 /th/@nowrap;attribute not defined;m
7455 /th/@nowrap;boolean:invalid;m
7456
7457 #data
7458 <td abbr="" xmlns="http://www.w3.org/1999/xhtml">x</td>
7459 #errors
7460 /td/@abbr;attribute not defined;m
7461
7462 #data
7463 <th abbr="" xmlns="http://www.w3.org/1999/xhtml">x</th>
7464 #errors
7465 /th/@abbr;attribute not defined;m
7466
7467 #data
7468 <td axis="" xmlns="http://www.w3.org/1999/xhtml">x</td>
7469 #errors
7470 /td/@axis;attribute not defined;m
7471
7472 #data
7473 <th axis="" xmlns="http://www.w3.org/1999/xhtml">x</th>
7474 #errors
7475 /th/@axis;attribute not defined;m
7476
7477 #data
7478 <td bgcolor="" xmlns="http://www.w3.org/1999/xhtml">x</td>
7479 #errors
7480 /td/@bgcolor;attribute not defined;m
7481 /td/@bgcolor;color:syntax error;m
7482
7483 #data
7484 <th bgcolor="" xmlns="http://www.w3.org/1999/xhtml">x</th>
7485 #errors
7486 /th/@bgcolor;attribute not defined;m
7487 /th/@bgcolor;color:syntax error;m
7488
7489 #data
7490 <td bgcolor="blue" xmlns="http://www.w3.org/1999/xhtml">x</td>
7491 #errors
7492 /td/@bgcolor;attribute not defined;m
7493
7494 #data
7495 <th bgcolor="blue" xmlns="http://www.w3.org/1999/xhtml">x</th>
7496 #errors
7497 /th/@bgcolor;attribute not defined;m
7498
7499 #data
7500 <tbody align="" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></tbody>
7501 #errors
7502 /tbody/@align;attribute not defined;m
7503 /tbody/@align;enumerated:invalid;m
7504
7505 #data
7506 <tbody align="left" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></tbody>
7507 #errors
7508 /tbody/@align;attribute not defined;m
7509
7510 #data
7511 <thead align="right" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></thead>
7512 #errors
7513 /thead/@align;attribute not defined;m
7514
7515 #data
7516 <tfoot align="center" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></tfoot>
7517 #errors
7518 /tfoot/@align;attribute not defined;m
7519
7520 #data
7521 <col align="justify" xmlns="http://www.w3.org/1999/xhtml"/>
7522 #errors
7523 /col/@align;attribute not defined;m
7524
7525 #data
7526 <colgroup align="char" xmlns="http://www.w3.org/1999/xhtml"/>
7527 #errors
7528 /colgroup/@align;attribute not defined;m
7529
7530 #data
7531 <tr align="centre" xmlns="http://www.w3.org/1999/xhtml"><th>x</th></tr>
7532 #errors
7533 /tr/@align;attribute not defined;m
7534 /tr/@align;enumerated:invalid;m
7535
7536 #data
7537 <th align="top" xmlns="http://www.w3.org/1999/xhtml">x</th>
7538 #errors
7539 /th/@align;attribute not defined;m
7540 /th/@align;enumerated:invalid;m
7541
7542 #data
7543 <td align="bottom" xmlns="http://www.w3.org/1999/xhtml">x</td>
7544 #errors
7545 /td/@align;attribute not defined;m
7546 /td/@align;enumerated:invalid;m
7547
7548 #data
7549 <tbody valign="" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></tbody>
7550 #errors
7551 /tbody/@valign;attribute not defined;m
7552 /tbody/@valign;enumerated:invalid;m
7553
7554 #data
7555 <thead valign="top" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></thead>
7556 #errors
7557 /thead/@valign;attribute not defined;m
7558
7559 #data
7560 <tfoot valign="middle" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></tfoot>
7561 #errors
7562 /tfoot/@valign;attribute not defined;m
7563
7564 #data
7565 <tr valign="bottom" xmlns="http://www.w3.org/1999/xhtml"><td>x</td></tr>
7566 #errors
7567 /tr/@valign;attribute not defined;m
7568
7569 #data
7570 <th valign="baseline" xmlns="http://www.w3.org/1999/xhtml">x</th>
7571 #errors
7572 /th/@valign;attribute not defined;m
7573
7574 #data
7575 <td valign="center" xmlns="http://www.w3.org/1999/xhtml">x</td>
7576 #errors
7577 /td/@valign;attribute not defined;m
7578 /td/@valign;enumerated:invalid;m
7579
7580 #data
7581 <col valign="center" xmlns="http://www.w3.org/1999/xhtml"/>
7582 #errors
7583 /col/@valign;attribute not defined;m
7584 /col/@valign;enumerated:invalid;m
7585
7586 #data
7587 <colgroup valign="text-bottom" xmlns="http://www.w3.org/1999/xhtml"/>
7588 #errors
7589 /colgroup/@valign;attribute not defined;m
7590 /colgroup/@valign;enumerated:invalid;m
7591
7592 #data
7593 <tbody char="" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></tbody>
7594 #errors
7595 /tbody/@char;attribute not defined;m
7596 /tbody/@char;char:syntax error;m
7597
7598 #data
7599 <thead char=" " xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></thead>
7600 #errors
7601 /thead/@char;attribute not defined;m
7602
7603 #data
7604 <tfoot char="x" xmlns="http://www.w3.org/1999/xhtml"><tr><td>x</td></tr></tfoot>
7605 #errors
7606 /tfoot/@char;attribute not defined;m
7607
7608 #data
7609 <colgroup char="aa" xmlns="http://www.w3.org/1999/xhtml"/>
7610 #errors
7611 /colgroup/@char;attribute not defined;m
7612 /colgroup/@char;char:syntax error;m
7613
7614 #data
7615 <col char="&#x4e00;" xmlns="http://www.w3.org/1999/xhtml"/>
7616 #errors
7617 /col/@char;attribute not defined;m
7618
7619 #data
7620 <tr char=" x" xmlns="http://www.w3.org/1999/xhtml"><td>x</td></tr>
7621 #errors
7622 /tr/@char;attribute not defined;m
7623 /tr/@char;char:syntax error;m
7624
7625 #data
7626 <th char="." xmlns="http://www.w3.org/1999/xhtml">x</th>
7627 #errors
7628 /th/@char;attribute not defined;m
7629
7630 #data
7631 <td char="char" xmlns="http://www.w3.org/1999/xhtml">x</td>
7632 #errors
7633 /td/@char;attribute not defined;m
7634 /td/@char;char:syntax error;m
7635
7636 #data
7637 <table xmlns="http://www.w3.org/1999/xhtml">
7638 <tr><td headers="a">x</td><th id="a">x</th></tr>
7639 </table>
7640 #errors
7641
7642 #data
7643 <table xmlns="http://www.w3.org/1999/xhtml">
7644 <tr><td headers=" a a ">x</td><th id="a">x</th></tr>
7645 </table>
7646 #errors
7647 /table/tr/td/@headers;duplicate token;m
7648
7649 #data
7650 <table xmlns="http://www.w3.org/1999/xhtml">
7651 <tr><td headers=" b ">x</td><th id="a">x</th></tr>
7652 </table>
7653 #errors
7654 /table/tr/td/@headers;no referenced header cell;m
7655
7656 #data
7657 <table xmlns="http://www.w3.org/1999/xhtml">
7658 <tr><td headers=" b c ">x</td><th id="a">x</th></tr>
7659 </table>
7660 #errors
7661 /table/tr/td/@headers;no referenced header cell;m
7662 /table/tr/td/@headers;no referenced header cell;m
7663
7664 #data
7665 <table xmlns="http://www.w3.org/1999/xhtml">
7666 <tr><td headers=" b">x</td><th id="a">x</th><td id="b">y</td></tr>
7667 </table>
7668 #errors
7669 /table/tr/td/@headers;no referenced header cell;m
7670
7671 #data
7672 <td header="c" xmlns="http://www.w3.org/1999/xhtml">x</td>
7673 #errors
7674 /td/@header;attribute not defined;m
7675
7676 #data
7677 <?xml version="1.1"?>
7678 <table xmlns="http://www.w3.org/1999/xhtml">
7679 <tr><td headers="a&#x000b;">x</td><th id="a">x</th></tr>
7680 </table>
7681 #errors
7682 /table/tr/td/@headers;no referenced header cell;m
7683
7684 #data
7685 <?xml version="1.1"?>
7686 <table xmlns="http://www.w3.org/1999/xhtml">
7687 <tr><td headers="&#x000b;a">x</td><th id="a">x</th></tr>
7688 </table>
7689 #errors
7690 /table/tr/td/@headers;no referenced header cell;m
7691
7692 #data
7693 <?xml version="1.1"?>
7694 <table xmlns="http://www.w3.org/1999/xhtml">
7695 <tr><td headers="a&#x000b;b">x</td><th id="a">x</th><th id="b">y</th></tr>
7696 </table>
7697 #errors
7698 /table/tr/td/@headers;no referenced header cell;m
7699
7700 #data
7701 <form xmlns="http://www.w3.org/1999/xhtml"
7702 accept-charset="">x</form>
7703 #errors
7704
7705 #data
7706 <form xmlns="http://www.w3.org/1999/xhtml"
7707 accept-charset=" ">x</form>
7708 #errors
7709
7710 #data
7711 <form xmlns="http://www.w3.org/1999/xhtml"
7712 accept-charset="euc-jp">x</form>
7713 #errors
7714
7715 #data
7716 <form xmlns="http://www.w3.org/1999/xhtml"
7717 accept-charset="euc-jp us-ascii">x</form>
7718 #errors
7719
7720 #data
7721 <form xmlns="http://www.w3.org/1999/xhtml"
7722 accept-charset="euc-jp&#x09;us-ascii">x</form>
7723 #errors
7724
7725 #data
7726 <form xmlns="http://www.w3.org/1999/xhtml"
7727 accept-charset="euc-jp&#x0a;us-ascii">x</form>
7728 #errors
7729
7730 #data
7731 <?xml version="1.1"?>
7732 <form xmlns="http://www.w3.org/1999/xhtml"
7733 accept-charset="euc-jp&#x0c;us-ascii">x</form>
7734 #errors
7735
7736 #data
7737 <form xmlns="http://www.w3.org/1999/xhtml"
7738 accept-charset="euc-jp&#x0d;us-ascii">x</form>
7739 #errors
7740
7741 #data
7742 <form xmlns="http://www.w3.org/1999/xhtml"
7743 accept-charset="euc-jp, us-ascii">x</form>
7744 #errors
7745 /form/@accept-charset;charset:not registered;w
7746
7747 #data
7748 <form xmlns="http://www.w3.org/1999/xhtml"
7749 accept-charset=" euc-JP ">x</form>
7750 #errors
7751
7752 #data
7753 <form xmlns="http://www.w3.org/1999/xhtml"
7754 accept-charset=" eucjp ">x</form>
7755 #errors
7756 /form/@accept-charset;charset:not registered;w
7757
7758 #data
7759 <form xmlns="http://www.w3.org/1999/xhtml"
7760 accept-charset="x-euc-jp">x</form>
7761 #errors
7762 /form/@accept-charset;charset:private;w
7763 /form/@accept-charset;charset:not preferred;m
7764
7765 #data
7766 <form xmlns="http://www.w3.org/1999/xhtml"
7767 accept-charset="us-ascii x-euc-jp">x</form>
7768 #errors
7769 /form/@accept-charset;charset:private;w
7770 /form/@accept-charset;charset:not preferred;m
7771
7772 #data
7773 <form xmlns="http://www.w3.org/1999/xhtml"
7774 accept-charset="ascii">x</form>
7775 #errors
7776 /form/@accept-charset;charset:not preferred;m
7777
7778 #data
7779 <form xmlns="http://www.w3.org/1999/xhtml"
7780 accept-charset="iso-2022-jp">x</form>
7781 #errors
7782 /form/@accept-charset;charset:not ascii compat;m
7783
7784 #data
7785 <?xml version="1.1"?>
7786 <form xmlns="http://www.w3.org/1999/xhtml"
7787 accept-charset="euc-jp&#x000b;">x</form>
7788 #errors
7789 /form/@accept-charset;charset:not registered;w
7790 /form/@accept-charset;charset:syntax error;m
7791
7792 #data
7793 <?xml version="1.1"?>
7794 <form xmlns="http://www.w3.org/1999/xhtml"
7795 accept-charset="&#x000b;euc-jp">x</form>
7796 #errors
7797 /form/@accept-charset;charset:not registered;w
7798 /form/@accept-charset;charset:syntax error;m
7799
7800 #data
7801 <?xml version="1.1"?>
7802 <form xmlns="http://www.w3.org/1999/xhtml"
7803 accept-charset="euc-jp&#x000b;us-ascii">x</form>
7804 #errors
7805 /form/@accept-charset;charset:not registered;w
7806 /form/@accept-charset;charset:syntax error;m
7807
7808 #data
7809 <form xmlns="http://www.w3.org/1999/xhtml"
7810 name="">x</form>
7811 #errors
7812 /form/@name;empty form name;m
7813
7814 #data
7815 <div xmlns="http://www.w3.org/1999/xhtml">
7816 <form name="">x</form>
7817 <form name="">y</form>
7818 </div>
7819 #errors
7820 /div/form/@name;empty form name;m
7821 /div/form/@name;empty form name;m
7822
7823 #data
7824 <form xmlns="http://www.w3.org/1999/xhtml"
7825 name="xxx">x</form>
7826 #errors
7827
7828 #data
7829 <form xmlns="http://www.w3.org/1999/xhtml"
7830 name="abc def">x</form>
7831 #errors
7832
7833 #data
7834 <form xmlns="http://www.w3.org/1999/xhtml"
7835 name=" a ">x</form>
7836 #errors
7837
7838 #data
7839 <div xmlns="http://www.w3.org/1999/xhtml">
7840 <form name="abc">x</form>
7841 <form name="def">y</form>
7842 </div>
7843 #errors
7844
7845 #data
7846 <div xmlns="http://www.w3.org/1999/xhtml">
7847 <form name="a">x</form>
7848 <form name="a ">y</form>
7849 </div>
7850 #errors
7851
7852 #data
7853 <div xmlns="http://www.w3.org/1999/xhtml">
7854 <form name="a">x</form>
7855 <form name=" a">y</form>
7856 </div>
7857 #errors
7858
7859 #data
7860 <div xmlns="http://www.w3.org/1999/xhtml">
7861 <form name="a b">x</form>
7862 <form name="b">y</form>
7863 </div>
7864 #errors
7865
7866 #data
7867 <div xmlns="http://www.w3.org/1999/xhtml">
7868 <form name="abc">x</form>
7869 <form name="ABC">y</form>
7870 </div>
7871 #errors
7872
7873 #data
7874 <div xmlns="http://www.w3.org/1999/xhtml">
7875 <form name="a">x</form>
7876 <form name="a">y</form>
7877 </div>
7878 #errors
7879 /div/form/@name;duplicate form name;m
7880
7881 #data
7882 <div xmlns="http://www.w3.org/1999/xhtml">
7883 <form name="a">x
7884 <form name="a">y</form>
7885 </form>
7886 </div>
7887 #errors
7888 /div/form/form;element not allowed:minus;m
7889 /div/form/form/@name;duplicate form name;m
7890
7891 #data
7892 <form xmlns="http://www.w3.org/1999/xhtml"
7893 name="a" id="b">x</form>
7894 #errors
7895
7896 #data
7897 <form xmlns="http://www.w3.org/1999/xhtml"
7898 name="a" id="a">x</form>
7899 #errors
7900
7901 #data
7902 <form xmlns="http://www.w3.org/1999/xhtml"
7903 name="a">x<a name="a">u</a></form>
7904 #errors
7905 /form/a/@name;attribute not defined;m
7906
7907 #data
7908 <form xmlns="http://www.w3.org/1999/xhtml" form="a" id="a">x</form>
7909 #errors
7910 /form/@form;attribute not defined;m
7911
7912 #data
7913 <fieldset xmlns="http://www.w3.org/1999/xhtml" form="a">
7914 <legend>y</legend>
7915 <form id="a">x</form>
7916 </fieldset>
7917 #errors
7918
7919 #data
7920 <div xmlns="http://www.w3.org/1999/xhtml">
7921 <form id="a">x</form>
7922 <fieldset form="a"><legend>y</legend>x</fieldset>
7923 </div>
7924 #errors
7925
7926 #data
7927 <div xmlns="http://www.w3.org/1999/xhtml">
7928 <fieldset form="a"><legend>y</legend>x</fieldset>
7929 <form id="a">x</form>
7930 </div>
7931 #errors
7932
7933 #data
7934 <div xmlns="http://www.w3.org/1999/xhtml">
7935 <fieldset form="a"><legend>ty</legend>x</fieldset>
7936 <form xml:id="a">x</form>
7937 </div>
7938 #errors
7939
7940 #data
7941 <div xmlns="http://www.w3.org/1999/xhtml">
7942 <form id="x">
7943 <fieldset form="x"><legend>y</legend>x</fieldset>
7944 </form>
7945 </div>
7946 #errors
7947
7948 #data
7949 <fieldset form="x" xmlns="http://www.w3.org/1999/xhtml">
7950 <legend>y</legend>y</fieldset>
7951 #errors
7952 /fieldset/@form;no referenced form;m
7953
7954 #data
7955 <div xmlns="http://www.w3.org/1999/xhtml">
7956 <form id="a">x</form>
7957 <form id="b">y</form>
7958 <fieldset form="a b"><legend>y</legend>z</fieldset>
7959 </div>
7960 #errors
7961 /div/fieldset/@form;no referenced form;m
7962
7963 #data
7964 <div xmlns="http://www.w3.org/1999/xhtml">
7965 <form id="a">x</form>
7966 <fieldset form="a "><legend>y</legend>z</fieldset>
7967 </div>
7968 #errors
7969 /div/fieldset/@form;no referenced form;m
7970
7971 #data
7972 <div xmlns="http://www.w3.org/1999/xhtml">
7973 <div id="a">x</div>
7974 <fieldset form="a"><legend>y</legend>z</fieldset>
7975 </div>
7976 #errors
7977 /div/fieldset/@form;no referenced form;m
7978
7979 #data
7980 <div xmlns="http://www.w3.org/1999/xhtml">
7981 <div id="a">b</div>
7982 <form id="a">x</form>
7983 <fieldset form="a"><legend>y</legend>z</fieldset>
7984 </div>
7985 #errors
7986 /div/form/@id;duplicate ID;m
7987 /div/fieldset/@form;no referenced form;m
7988
7989 #data
7990 <div xmlns="http://www.w3.org/1999/xhtml">
7991 <form id="a">x</form>
7992 <div id="a">y</div>
7993 <fieldset form="a"><legend>y</legend>z</fieldset>
7994 </div>
7995 #errors
7996 /div/div/@id;duplicate ID;m
7997
7998 #data
7999 <label xmlns="http://www.w3.org/1999/xhtml" for="a">x</label>
8000 #errors
8001 /label/@for;no referenced control;m
8002
8003 #data
8004 <div xmlns="http://www.w3.org/1999/xhtml">
8005 <label for="a">x</label><input id="a"/>
8006 </div>
8007 #errors
8008
8009 #data
8010 <div xmlns="http://www.w3.org/1999/xhtml">
8011 <input id="a"/><label for="a">x</label>
8012 </div>
8013 #errors
8014
8015 #data
8016 <div xmlns="http://www.w3.org/1999/xhtml">
8017 <label for="a"><input id="a"/>x</label>
8018 </div>
8019 #errors
8020
8021 #data
8022 <div xmlns="http://www.w3.org/1999/xhtml">
8023 <label for="a">y</label><input id="a"/><label for="a">x</label>
8024 </div>
8025 #errors
8026
8027 #data
8028 <div xmlns="http://www.w3.org/1999/xhtml">
8029 <input id="a"/><label for="a ">x</label>
8030 </div>
8031 #errors
8032 /div/label/@for;no referenced control;m
8033
8034 #data
8035 <div xmlns="http://www.w3.org/1999/xhtml">
8036 <input id="a"/><label for="A">x</label>
8037 </div>
8038 #errors
8039 /div/label/@for;no referenced control;m
8040
8041 #data
8042 <div xmlns="http://www.w3.org/1999/xhtml">
8043 <input id="a"/><label for="a b">x</label>
8044 </div>
8045 #errors
8046 /div/label/@for;no referenced control;m
8047
8048 #data
8049 <div xmlns="http://www.w3.org/1999/xhtml">
8050 <span id="a">x</span><label for="a">x</label>
8051 </div>
8052 #errors
8053 /div/label/@for;no referenced control;m
8054
8055 #data
8056 <div xmlns="http://www.w3.org/1999/xhtml">
8057 <span id="a">x</span><input id="a"/><label for="a">x</label>
8058 </div>
8059 #errors
8060 /div/label/@for;no referenced control;m
8061 /div/input/@id;duplicate ID;m
8062
8063 #data
8064 <div xmlns="http://www.w3.org/1999/xhtml">
8065 <input id="a"/><input id="a"/><label for="a">x</label>
8066 </div>
8067 #errors
8068 /div/input/@id;duplicate ID;m
8069
8070 #data
8071 <div xmlns="http://www.w3.org/1999/xhtml">
8072 <input id="a"/><label for="a">x</label><span id="a">x</span>
8073 </div>
8074 #errors
8075 /div/span/@id;duplicate ID;m
8076
8077 #data
8078 <div xmlns="http://www.w3.org/1999/xhtml">
8079 <input xml:id="a"/><label for="a">x</label>
8080 </div>
8081 #errors
8082
8083 #data
8084 <div xmlns="http://www.w3.org/1999/xhtml">
8085 <input xml:id=" a"/><label for="a">x</label>
8086 </div>
8087 #errors
8088
8089 #data
8090 <div xmlns="http://www.w3.org/1999/xhtml">
8091 <a id="a">x</a><label for="a">x</label>
8092 </div>
8093 #errors
8094 /div/label/@for;no referenced control;m
8095
8096 #data
8097 <div xmlns="http://www.w3.org/1999/xhtml">
8098 <label id="a">y</label><label for="a">x</label>
8099 </div>
8100 #errors
8101 /div/label/@for;no referenced control;m
8102
8103 #data
8104 <div xmlns="http://www.w3.org/1999/xhtml">
8105 <datalist id="a">x</datalist><label for="a">x</label>
8106 </div>
8107 #errors
8108 /div/label/@for;no referenced control;m
8109
8110 #data
8111 <label xmlns="http://www.w3.org/1999/xhtml" form="a">x<input/></label>
8112 #errors
8113 /label/@form;no referenced form;m
8114
8115 #data
8116 <div xmlns="http://www.w3.org/1999/xhtml">
8117 <label form="b">y<input/></label>
8118 <form id="b">x</form>
8119 </div>
8120 #errors
8121
8122 #data
8123 <input xmlns="http://www.w3.org/1999/xhtml"
8124 accept-charset=""/>
8125 #errors
8126 /input/@accept-charset;attribute not defined;m
8127
8128 #data
8129 <input xmlns="http://www.w3.org/1999/xhtml"
8130 accept-charset="x-euc-jp"/>
8131 #errors
8132 /input/@accept-charset;attribute not defined;m
8133 /input/@accept-charset;charset:private;w
8134 /input/@accept-charset;charset:not preferred;m
8135
8136 #data
8137 <input xmlns="http://www.w3.org/1999/xhtml"
8138 accept-charset="us-ascii iso-2022-jp"/>
8139 #errors
8140 /input/@accept-charset;attribute not defined;m
8141 /input/@accept-charset;charset:not ascii compat;m
8142
8143 #data
8144 <div xmlns="http://www.w3.org/1999/xhtml"><input form="a"/>x</div>
8145 #errors
8146 /div/input/@form;no referenced form;m
8147
8148 #data
8149 <div xmlns="http://www.w3.org/1999/xhtml">
8150 <input form="b"/>
8151 <form id="b">x</form>
8152 </div>
8153 #errors
8154
8155 #data
8156 <button xmlns="http://www.w3.org/1999/xhtml" form="a">x</button>
8157 #errors
8158 /button/@form;no referenced form;m
8159
8160 #data
8161 <div xmlns="http://www.w3.org/1999/xhtml">
8162 <button form="b">y</button>
8163 <form id="b">x</form>
8164 </div>
8165 #errors
8166
8167 #data
8168 <select xmlns="http://www.w3.org/1999/xhtml" form="a"></select>
8169 #errors
8170 /select/@form;no referenced form;m
8171
8172 #data
8173 <div xmlns="http://www.w3.org/1999/xhtml">
8174 <select form="b"></select>
8175 <form id="b">x</form>
8176 </div>
8177 #errors
8178
8179 #data
8180 <datalist xmlns="http://www.w3.org/1999/xhtml" form="a">x</datalist>
8181 #errors
8182 /datalist/@form;attribute not defined;m
8183
8184 #data
8185 <div xmlns="http://www.w3.org/1999/xhtml">
8186 <datalist form="b">y</datalist>
8187 <form id="b">x</form>
8188 </div>
8189 #errors
8190 /div/datalist/@form;attribute not defined;m
8191
8192 #data
8193 <select xmlns="http://www.w3.org/1999/xhtml"><optgroup form="a"/></select>
8194 #errors
8195 /select/optgroup/@form;attribute not defined;m
8196
8197 #data
8198 <div xmlns="http://www.w3.org/1999/xhtml">
8199 <select><optgroup form="b"/></select>
8200 <form id="b">x</form>
8201 </div>
8202 #errors
8203 /div/select/optgroup/@form;attribute not defined;m
8204
8205 #data
8206 <select xmlns="http://www.w3.org/1999/xhtml"><option form="a">x</option></select>
8207 #errors
8208 /select/option/@form;attribute not defined;m
8209
8210 #data
8211 <div xmlns="http://www.w3.org/1999/xhtml">
8212 <select><option form="b">y</option></select>
8213 <form id="b">x</form>
8214 </div>
8215 #errors
8216 /div/select/option/@form;attribute not defined;m
8217
8218 #data
8219 <textarea xmlns="http://www.w3.org/1999/xhtml" form="a">x</textarea>
8220 #errors
8221 /textarea/@form;no referenced form;m
8222
8223 #data
8224 <div xmlns="http://www.w3.org/1999/xhtml">
8225 <textarea form="b">y</textarea>
8226 <form id="b">x</form>
8227 </div>
8228 #errors
8229
8230 #data
8231 <output xmlns="http://www.w3.org/1999/xhtml" form="a">x</output>
8232 #errors
8233 /output/@form;no referenced form;m
8234
8235 #data
8236 <div xmlns="http://www.w3.org/1999/xhtml">
8237 <output form="b">y</output>
8238 <form id="b">x</form>
8239 </div>
8240 #errors
8241
8242 #data
8243 <script xmlns="http://www.w3.org/1999/xhtml"/>
8244 #errors
8245 /script;SUBDOC
8246
8247 #data
8248 <script type="" xmlns="http://www.w3.org/1999/xhtml"/>
8249 #errors
8250 /script/@type;IMT:syntax error;m
8251 /script;SUBDOC
8252
8253 #data
8254 <script type="text/javascript" xmlns="http://www.w3.org/1999/xhtml"/>
8255 #errors
8256 /script/@type;IMT:obsolete subtype;w
8257 /script;SUBDOC
8258
8259 #data
8260 <script type="text/javascript;e4x=1" xmlns="http://www.w3.org/1999/xhtml"/>
8261 #errors
8262 /script/@type;IMT:obsolete subtype;w
8263 /script/@type;IMT:parameter not allowed;m
8264 /script;SUBDOC
8265
8266 #data
8267 <script type="text/JavaScript;E4X=1" xmlns="http://www.w3.org/1999/xhtml"/>
8268 #errors
8269 /script/@type;IMT:obsolete subtype;w
8270 /script/@type;IMT:parameter not allowed;m
8271 /script;SUBDOC
8272
8273 #data
8274 <script type="text/javascript;e4x=&quot;1&quot;"
8275 xmlns="http://www.w3.org/1999/xhtml"/>
8276 #errors
8277 /script/@type;IMT:obsolete subtype;w
8278 /script/@type;IMT:parameter not allowed;m
8279 /script;SUBDOC
8280
8281 #data
8282 <script type="text/javascript;e4x=&quot;\1&quot;"
8283 xmlns="http://www.w3.org/1999/xhtml"/>
8284 #errors
8285 /script/@type;IMT:obsolete subtype;w
8286 /script/@type;IMT:parameter not allowed;m
8287 /script;SUBDOC
8288
8289 #data
8290 <script type="text/javascript; ~=a"
8291 xmlns="http://www.w3.org/1999/xhtml"/>
8292 #errors
8293 /script/@type;IMT:obsolete subtype;w
8294 /script/@type;IMT:attribute syntax error;m
8295 /script/@type;IMT:parameter not allowed;m
8296 /script;SUBDOC
8297
8298 #data
8299 <script type="text~/javascript"
8300 xmlns="http://www.w3.org/1999/xhtml"/>
8301 #errors
8302 /script/@type;IMT:unregistered type;m
8303 /script/@type;IMT:type syntax error;m
8304 /script;SUBDOC
8305
8306 #data
8307 <script type="text/javascript~"
8308 xmlns="http://www.w3.org/1999/xhtml"/>
8309 #errors
8310 /script/@type;IMT:unknown subtype;u
8311 /script/@type;IMT:subtype syntax error;m
8312 /script;SUBDOC
8313
8314 #data
8315 <script src="http://test/" type="text/javascript"
8316 xmlns="http://www.w3.org/1999/xhtml"/>
8317 #errors
8318 /script/@type;IMT:obsolete subtype;w
8319
8320 #data
8321 <script src="http://test/%" type="text/javascript"
8322 xmlns="http://www.w3.org/1999/xhtml"/>
8323 #errors
8324 /script/@src;syntax error:iriref3987;m
8325 /script/@type;IMT:obsolete subtype;w
8326
8327 #data
8328 <script defer="" xmlns="http://www.w3.org/1999/xhtml"/>
8329 #errors
8330 /script;SUBDOC
8331
8332 #data
8333 <script src="http://test/" defer=""
8334 xmlns="http://www.w3.org/1999/xhtml"/>
8335 #errors
8336
8337 #data
8338 <script defer="defer" xmlns="http://www.w3.org/1999/xhtml"/>
8339 #errors
8340 /script;SUBDOC
8341
8342 #data
8343 <script src="http://test/" defer="defer"
8344 xmlns="http://www.w3.org/1999/xhtml"/>
8345 #errors
8346
8347 #data
8348 <script defer="DEFER" xmlns="http://www.w3.org/1999/xhtml"/>
8349 #errors
8350 /script;SUBDOC
8351
8352 #data
8353 <script defer="true" xmlns="http://www.w3.org/1999/xhtml"/>
8354 #errors
8355 /script/@defer;boolean:invalid;m
8356 /script;SUBDOC
8357
8358 #data
8359 <script src="http://test/" defer="true"
8360 xmlns="http://www.w3.org/1999/xhtml"/>
8361 #errors
8362 /script/@defer;boolean:invalid;m
8363
8364 #data
8365 <script async="" xmlns="http://www.w3.org/1999/xhtml"/>
8366 #errors
8367 /script;SUBDOC
8368
8369 #data
8370 <script src="http://test/" async=""
8371 xmlns="http://www.w3.org/1999/xhtml"/>
8372 #errors
8373
8374 #data
8375 <script async="async" xmlns="http://www.w3.org/1999/xhtml"/>
8376 #errors
8377 /script;SUBDOC
8378
8379 #data
8380 <script src="http://test/" async="async"
8381 xmlns="http://www.w3.org/1999/xhtml"/>
8382 #errors
8383
8384 #data
8385 <script async="true" xmlns="http://www.w3.org/1999/xhtml"/>
8386 #errors
8387 /script/@async;boolean:invalid;m
8388 /script;SUBDOC
8389
8390 #data
8391 <script src="http://test/" async="true"
8392 xmlns="http://www.w3.org/1999/xhtml"/>
8393 #errors
8394 /script/@async;boolean:invalid;m
8395
8396 #data
8397 <script src="http://test/" async="aSync"
8398 xmlns="http://www.w3.org/1999/xhtml"/>
8399 #errors
8400
8401 #data
8402 <script defer="" async="" xmlns="http://www.w3.org/1999/xhtml"/>
8403 #errors
8404 /script;SUBDOC
8405
8406 #data
8407 <script defer="defer" async="async" xmlns="http://www.w3.org/1999/xhtml"/>
8408 #errors
8409 /script;SUBDOC
8410
8411 #data
8412 <script src="" defer="" async="" xmlns="http://www.w3.org/1999/xhtml"/>
8413 #errors
8414
8415 #data
8416 <script language="javascript" xmlns="http://www.w3.org/1999/xhtml"/>
8417 #errors
8418 /script/@language;attribute not defined;m
8419 /script;SUBDOC
8420
8421 #data
8422 <script langauge="javascript" xmlns="http://www.w3.org/1999/xhtml"/>
8423 #errors
8424 /script/@langauge;attribute not defined;m
8425 /script;SUBDOC
8426
8427 #data
8428 <script langage="javascript" xmlns="http://www.w3.org/1999/xhtml"/>
8429 #errors
8430 /script/@langage;attribute not defined;m
8431 /script;SUBDOC
8432
8433 #data
8434 <script languege="javascript" xmlns="http://www.w3.org/1999/xhtml"/>
8435 #errors
8436 /script/@languege;attribute not defined;m
8437 /script;SUBDOC
8438
8439 #data
8440 <script language="JavaScript" xmlns="http://www.w3.org/1999/xhtml"/>
8441 #errors
8442 /script/@language;attribute not defined;m
8443 /script;SUBDOC
8444
8445 #data
8446 <script language="jscript" xmlns="http://www.w3.org/1999/xhtml"/>
8447 #errors
8448 /script/@language;attribute not defined;m
8449 /script;SUBDOC
8450
8451 #data
8452 <script language="javascript1.2" xmlns="http://www.w3.org/1999/xhtml"/>
8453 #errors
8454 /script/@language;attribute not defined;m
8455 /script;SUBDOC
8456
8457 #data
8458 <script language="vbscript" xmlns="http://www.w3.org/1999/xhtml"/>
8459 #errors
8460 /script/@language;attribute not defined;m
8461 /script;SUBDOC
8462
8463 #data
8464 <script language="XML" xmlns="http://www.w3.org/1999/xhtml"/>
8465 #errors
8466 /script/@language;attribute not defined;m
8467 /script;XML script lang;text/xml;u
8468
8469 #data
8470 <script charset="us-ascii" xmlns="http://www.w3.org/1999/xhtml"/>
8471 #errors
8472 /script/@charset;attribute not allowed;m
8473 /script;SUBDOC
8474
8475 #data
8476 <script src="" charset="" xmlns="http://www.w3.org/1999/xhtml"/>
8477 #errors
8478 /script/@charset;charset:syntax error;m
8479 /script/@charset;charset:not registered;w
8480
8481 #data
8482 <script src="" charset="us-ascii" xmlns="http://www.w3.org/1999/xhtml"/>
8483 #errors
8484
8485 #data
8486 <event-source xmlns="http://www.w3.org/1999/xhtml"/>
8487 #errors
8488 /event-source;element not defined;m
8489
8490 #data
8491 <event-source src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
8492 #errors
8493 /event-source;element not defined;m
8494 /event-source/@src;attribute not defined;m
8495
8496 #data
8497 <event-source src="http://test/`" xmlns="http://www.w3.org/1999/xhtml"/>
8498 #errors
8499 /event-source/@src;syntax error:iriref3987;m
8500 /event-source;element not defined;m
8501 /event-source/@src;attribute not defined;m
8502
8503 #data
8504 <eventsource xmlns="http://www.w3.org/1999/xhtml"/>
8505 #errors
8506
8507 #data
8508 <eventsource src="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
8509 #errors
8510
8511 #data
8512 <eventsource src="http://test/`" xmlns="http://www.w3.org/1999/xhtml"/>
8513 #errors
8514 /eventsource/@src;syntax error:iriref3987;m
8515
8516 #data
8517 <details xmlns="http://www.w3.org/1999/xhtml"/>
8518 #errors
8519 /details;no significant content;s
8520 /details;child element missing;legend;m
8521
8522 #data
8523 <details open="" xmlns="http://www.w3.org/1999/xhtml"/>
8524 #errors
8525 /details;no significant content;s
8526 /details;child element missing;legend;m
8527
8528 #data
8529 <details open="open" xmlns="http://www.w3.org/1999/xhtml"/>
8530 #errors
8531 /details;no significant content;s
8532 /details;child element missing;legend;m
8533
8534 #data
8535 <details open="OPEN" xmlns="http://www.w3.org/1999/xhtml"/>
8536 #errors
8537 /details;no significant content;s
8538 /details;child element missing;legend;m
8539
8540 #data
8541 <details open="true" xmlns="http://www.w3.org/1999/xhtml"/>
8542 #errors
8543 /details/@open;boolean:invalid;m
8544 /details;no significant content;s
8545 /details;child element missing;legend;m
8546
8547 #data
8548 <datagrid xmlns="http://www.w3.org/1999/xhtml"/>
8549 #errors
8550
8551 #data
8552 <datagrid disabled="" xmlns="http://www.w3.org/1999/xhtml"/>
8553 #errors
8554
8555 #data
8556 <datagrid disabled="disabled" xmlns="http://www.w3.org/1999/xhtml"/>
8557 #errors
8558
8559 #data
8560 <datagrid disabled="Disabled" xmlns="http://www.w3.org/1999/xhtml"/>
8561 #errors
8562
8563 #data
8564 <datagrid disabled="true" xmlns="http://www.w3.org/1999/xhtml"/>
8565 #errors
8566 /datagrid/@disabled;boolean:invalid;m
8567
8568 #data
8569 <datagrid multiple="" xmlns="http://www.w3.org/1999/xhtml"/>
8570 #errors
8571
8572 #data
8573 <datagrid multiple="multiple" xmlns="http://www.w3.org/1999/xhtml"/>
8574 #errors
8575
8576 #data
8577 <datagrid multiple="MULTIPLE" xmlns="http://www.w3.org/1999/xhtml"/>
8578 #errors
8579
8580 #data
8581 <datagrid multiple="true" xmlns="http://www.w3.org/1999/xhtml"/>
8582 #errors
8583 /datagrid/@multiple;boolean:invalid;m
8584
8585 #data
8586 <command xmlns="http://www.w3.org/1999/xhtml"/>
8587 #errors
8588
8589 #data
8590 <command default="" xmlns="http://www.w3.org/1999/xhtml"/>
8591 #errors
8592
8593 #data
8594 <command default="default" xmlns="http://www.w3.org/1999/xhtml"/>
8595 #errors
8596
8597 #data
8598 <command default="DEFAULT" xmlns="http://www.w3.org/1999/xhtml"/>
8599 #errors
8600
8601 #data
8602 <command default="true" xmlns="http://www.w3.org/1999/xhtml"/>
8603 #errors
8604 /command/@default;boolean:invalid;m
8605
8606 #data
8607 <command checked="" xmlns="http://www.w3.org/1999/xhtml"/>
8608 #errors
8609
8610 #data
8611 <command checked="checked" xmlns="http://www.w3.org/1999/xhtml"/>
8612 #errors
8613
8614 #data
8615 <command checked="Checked" xmlns="http://www.w3.org/1999/xhtml"/>
8616 #errors
8617
8618 #data
8619 <command checked="true" xmlns="http://www.w3.org/1999/xhtml"/>
8620 #errors
8621 /command/@checked;boolean:invalid;m
8622
8623 #data
8624 <command hidden="" xmlns="http://www.w3.org/1999/xhtml"/>
8625 #errors
8626
8627 #data
8628 <command hidden="hidden" xmlns="http://www.w3.org/1999/xhtml"/>
8629 #errors
8630
8631 #data
8632 <command hidden="HIDDEN" xmlns="http://www.w3.org/1999/xhtml"/>
8633 #errors
8634
8635 #data
8636 <command hidden="true" xmlns="http://www.w3.org/1999/xhtml"/>
8637 #errors
8638 /command/@hidden;boolean:invalid;m
8639
8640 #data
8641 <command disabled="" xmlns="http://www.w3.org/1999/xhtml"/>
8642 #errors
8643
8644 #data
8645 <command disabled="disabled" xmlns="http://www.w3.org/1999/xhtml"/>
8646 #errors
8647
8648 #data
8649 <command disabled="Disabled" xmlns="http://www.w3.org/1999/xhtml"/>
8650 #errors
8651
8652 #data
8653 <command disabled="true" xmlns="http://www.w3.org/1999/xhtml"/>
8654 #errors
8655 /command/@disabled;boolean:invalid;m
8656
8657 #data
8658 <command label="" xmlns="http://www.w3.org/1999/xhtml"/>
8659 #errors
8660
8661 #data
8662 <command label=" " xmlns="http://www.w3.org/1999/xhtml"/>
8663 #errors
8664
8665 #data
8666 <command label="aaa" xmlns="http://www.w3.org/1999/xhtml"/>
8667 #errors
8668
8669 #data
8670 <command label="label" xmlns="http://www.w3.org/1999/xhtml"/>
8671 #errors
8672
8673 #data
8674 <command label="&#x4E00;" xmlns="http://www.w3.org/1999/xhtml"/>
8675 #errors
8676
8677 #data
8678 <command label="&#xA;" xmlns="http://www.w3.org/1999/xhtml"/>
8679 #errors
8680
8681 #data
8682 <command title="" xmlns="http://www.w3.org/1999/xhtml"/>
8683 #errors
8684
8685 #data
8686 <command title="aaa" xmlns="http://www.w3.org/1999/xhtml"/>
8687 #errors
8688
8689 #data
8690 <command radiogroup="" xmlns="http://www.w3.org/1999/xhtml"/>
8691 #errors
8692
8693 #data
8694 <command radiogroup="aa" xmlns="http://www.w3.org/1999/xhtml"/>
8695 #errors
8696
8697 #data
8698 <command type="" xmlns="http://www.w3.org/1999/xhtml"/>
8699 #errors
8700 /command/@type;invalid attribute value;m
8701
8702 #data
8703 <command type=" " xmlns="http://www.w3.org/1999/xhtml"/>
8704 #errors
8705 /command/@type;invalid attribute value;m
8706
8707 #data
8708 <command type="default" xmlns="http://www.w3.org/1999/xhtml"/>
8709 #errors
8710 /command/@type;invalid attribute value;m
8711
8712 #data
8713 <command type="command" xmlns="http://www.w3.org/1999/xhtml"/>
8714 #errors
8715
8716 #data
8717 <command type="Command" xmlns="http://www.w3.org/1999/xhtml"/>
8718 #errors
8719 /command/@type;invalid attribute value;m
8720
8721 #data
8722 <command type=" command" xmlns="http://www.w3.org/1999/xhtml"/>
8723 #errors
8724 /command/@type;invalid attribute value;m
8725
8726 #data
8727 <command type="command " xmlns="http://www.w3.org/1999/xhtml"/>
8728 #errors
8729 /command/@type;invalid attribute value;m
8730
8731 #data
8732 <command type="commandline" xmlns="http://www.w3.org/1999/xhtml"/>
8733 #errors
8734 /command/@type;invalid attribute value;m
8735
8736 #data
8737 <command type="checkbox" xmlns="http://www.w3.org/1999/xhtml"/>
8738 #errors
8739
8740 #data
8741 <command type="check" xmlns="http://www.w3.org/1999/xhtml"/>
8742 #errors
8743 /command/@type;invalid attribute value;m
8744
8745 #data
8746 <command type="radio" xmlns="http://www.w3.org/1999/xhtml"/>
8747 #errors
8748
8749 #data
8750 <command type="radiobutton" xmlns="http://www.w3.org/1999/xhtml"/>
8751 #errors
8752 /command/@type;invalid attribute value;m
8753
8754 #data
8755 <command icon="" xmlns="http://www.w3.org/1999/xhtml"/>
8756 #errors
8757
8758 #data
8759 <command icon="http://test/" xmlns="http://www.w3.org/1999/xhtml"/>
8760 #errors
8761
8762 #data
8763 <command icon="http://test/#test" xmlns="http://www.w3.org/1999/xhtml"/>
8764 #errors
8765
8766 #data
8767 <command icon="test" xmlns="http://www.w3.org/1999/xhtml"/>
8768 #errors
8769
8770 #data
8771 <command icon="[]" xmlns="http://www.w3.org/1999/xhtml"/>
8772 #errors
8773 /command/@icon;syntax error:iriref3987;m
8774
8775 #data
8776 <command icon="a b" xmlns="http://www.w3.org/1999/xhtml"/>
8777 #errors
8778 /command/@icon;syntax error:iriref3987;m
8779
8780 #data
8781 <bb type="" xmlns="http://www.w3.org/1999/xhtml"></bb>
8782 #errors
8783 /bb;no significant content;s
8784 /bb/@type;enumerated:invalid;m
8785
8786 #data
8787 <bb type="type" xmlns="http://www.w3.org/1999/xhtml"></bb>
8788 #errors
8789 /bb;no significant content;s
8790 /bb/@type;enumerated:invalid;m
8791
8792 #data
8793 <bb type="null" xmlns="http://www.w3.org/1999/xhtml"></bb>
8794 #errors
8795 /bb;no significant content;s
8796 /bb/@type;enumerated:invalid;m
8797
8798 #data
8799 <bb type="makeapp" xmlns="http://www.w3.org/1999/xhtml"></bb>
8800 #errors
8801 /bb;no significant content;s
8802
8803 #data
8804 <bb type="make application" xmlns="http://www.w3.org/1999/xhtml"></bb>
8805 #errors
8806 /bb/@type;enumerated:invalid;m
8807 /bb;no significant content;s
8808
8809 #data
8810 <bb type="MakeApp" xmlns="http://www.w3.org/1999/xhtml"></bb>
8811 #errors
8812 /bb;no significant content;s
8813
8814 #data
8815 <bb type=" makeapp " xmlns="http://www.w3.org/1999/xhtml"></bb>
8816 #errors
8817 /bb/@type;enumerated:invalid;m
8818 /bb;no significant content;s
8819
8820 #data
8821 <bb type="button" xmlns="http://www.w3.org/1999/xhtml"></bb>
8822 #errors
8823 /bb/@type;enumerated:invalid;m
8824 /bb;no significant content;s
8825
8826 #data
8827 <menu xmlns="http://www.w3.org/1999/xhtml"/>
8828 #errors
8829 /menu;no significant content;s
8830
8831 #data
8832 <menu label="" xmlns="http://www.w3.org/1999/xhtml"/>
8833 #errors
8834 /menu;no significant content;s
8835
8836 #data
8837 <menu label=" " xmlns="http://www.w3.org/1999/xhtml"/>
8838 #errors
8839 /menu;no significant content;s
8840
8841 #data
8842 <menu label="aa" xmlns="http://www.w3.org/1999/xhtml"/>
8843 #errors
8844 /menu;no significant content;s
8845
8846 #data
8847 <menu type="" xmlns="http://www.w3.org/1999/xhtml"/>
8848 #errors
8849 /menu/@type;enumerated:invalid;m
8850 /menu;no significant content;s
8851
8852 #data
8853 <menu type="type" xmlns="http://www.w3.org/1999/xhtml"/>
8854 #errors
8855 /menu;no significant content;s
8856 /menu/@type;enumerated:invalid;m
8857
8858 #data
8859 <menu type="toolbar" xmlns="http://www.w3.org/1999/xhtml"/>
8860 #errors
8861 /menu;no significant content;s
8862
8863 #data
8864 <menu type="Toolbar" xmlns="http://www.w3.org/1999/xhtml"/>
8865 #errors
8866 /menu;no significant content;s
8867
8868 #data
8869 <menu type=" toolbar" xmlns="http://www.w3.org/1999/xhtml"/>
8870 #errors
8871 /menu/@type;enumerated:invalid;m
8872 /menu;no significant content;s
8873
8874 #data
8875 <menu type="context" xmlns="http://www.w3.org/1999/xhtml"/>
8876 #errors
8877 /menu;no significant content;s
8878
8879 #data
8880 <menu type="conteXt" xmlns="http://www.w3.org/1999/xhtml"/>
8881 #errors
8882 /menu;no significant content;s
8883
8884 #data
8885 <menu type="context " xmlns="http://www.w3.org/1999/xhtml"/>
8886 #errors
8887 /menu/@type;enumerated:invalid;m
8888 /menu;no significant content;s
8889
8890 #data
8891 <menu autosubmit="" xmlns="http://www.w3.org/1999/xhtml"/>
8892 #errors
8893 /menu;no significant content;s
8894 /menu/@autosubmit;attribute not defined;m
8895
8896 #data
8897 <menu autosubmit="autosubmit" xmlns="http://www.w3.org/1999/xhtml"/>
8898 #errors
8899 /menu;no significant content;s
8900 /menu/@autosubmit;attribute not defined;m
8901
8902 #data
8903 <menu autosubmit="yes" xmlns="http://www.w3.org/1999/xhtml"/>
8904 #errors
8905 /menu/@autosubmit;boolean:invalid;m
8906 /menu;no significant content;s
8907 /menu/@autosubmit;attribute not defined;m
8908
8909 #data
8910 <menu autosubmit="AUTOSubmit" xmlns="http://www.w3.org/1999/xhtml"/>
8911 #errors
8912 /menu;no significant content;s
8913 /menu/@autosubmit;attribute not defined;m
8914
8915 #data
8916 <menu autosubmit="AutoSubmit" xmlns="http://www.w3.org/1999/xhtml"/>
8917 #errors
8918 /menu;no significant content;s
8919 /menu/@autosubmit;attribute not defined;m
8920
8921 #data
8922 <p contextmenu="" xmlns="http://www.w3.org/1999/xhtml"/>
8923 #errors
8924 /p/@contextmenu;no referenced menu;m
8925 /p;no significant content;s
8926
8927 #data
8928 <p contextmenu="aaa" xmlns="http://www.w3.org/1999/xhtml"/>
8929 #errors
8930 /p/@contextmenu;no referenced menu;m
8931 /p;no significant content;s
8932
8933 #data
8934 <div xmlns="http://www.w3.org/1999/xhtml">
8935 <p contextmenu=""/><menu id=""/>
8936 </div>
8937 #errors
8938 /div/menu/@id;empty attribute value;m
8939 /div;no significant content;s
8940 /div/p;no significant content;s
8941 /div/menu;no significant content;s
8942 /div/p/@contextmenu;no referenced menu;m
8943
8944 #data
8945 <div xmlns="http://www.w3.org/1999/xhtml">
8946 <p contextmenu="a"/><menu id="a"/>
8947 </div>
8948 #errors
8949 /div;no significant content;s
8950 /div/p;no significant content;s
8951 /div/menu;no significant content;s
8952
8953 #data
8954 <div xmlns="http://www.w3.org/1999/xhtml">
8955 <p contextmenu="a"/><menu id="A"/>
8956 </div>
8957 #errors
8958 /div/p/@contextmenu;no referenced menu;m
8959 /div;no significant content;s
8960 /div/p;no significant content;s
8961 /div/menu;no significant content;s
8962
8963 #data
8964 <div xmlns="http://www.w3.org/1999/xhtml">
8965 <menu id="a"/><p contextmenu="a"/>
8966 </div>
8967 #errors
8968 /div;no significant content;s
8969 /div/menu;no significant content;s
8970 /div/p;no significant content;s
8971
8972 #data
8973 <div contextmenu="a" xmlns="http://www.w3.org/1999/xhtml">
8974 <menu id="a"/>
8975 </div>
8976 #errors
8977 /div;no significant content;s
8978 /div/menu;no significant content;s
8979
8980 #data
8981 <menu id="a" xmlns="http://www.w3.org/1999/xhtml">
8982 <span contextmenu="a"/>
8983 </menu>
8984 #errors
8985 /menu;no significant content;s
8986 /menu/span;no significant content;s
8987
8988 #data
8989 <div xmlns="http://www.w3.org/1999/xhtml">
8990 <p contextmenu="a a"/><menu id="a a"/>
8991 </div>
8992 #errors
8993 /div/menu/@id;space in ID;m
8994 /div;no significant content;s
8995 /div/p;no significant content;s
8996 /div/menu;no significant content;s
8997
8998 #data
8999 <div xmlns="http://www.w3.org/1999/xhtml">
9000 <p contextmenu="a a"/><menu id="a"/>
9001 </div>
9002 #errors
9003 /div/p/@contextmenu;no referenced menu;m
9004 /div;no significant content;s
9005 /div/p;no significant content;s
9006 /div/menu;no significant content;s
9007
9008 #data
9009 <div xmlns="http://www.w3.org/1999/xhtml">
9010 <p contextmenu="a a"/><menu id="a a"/>
9011 </div>
9012 #errors
9013 /div/p/@contextmenu;no referenced menu;m
9014 /div/menu/@id;space in ID;m
9015 /div;no significant content;s
9016 /div/p;no significant content;s
9017 /div/menu;no significant content;s
9018
9019 #data
9020 <div xmlns="http://www.w3.org/1999/xhtml">
9021 <p contextmenu="a"/><ul id="a"/>
9022 </div>
9023 #errors
9024 /div/p/@contextmenu;no referenced menu;m
9025 /div;no significant content;s
9026 /div/p;no significant content;s
9027
9028 #data
9029 <rule xmlns="http://www.w3.org/1999/xhtml" mode=""/>
9030 #errors
9031
9032 #data
9033 <rule xmlns="http://www.w3.org/1999/xhtml" mode=" "/>
9034 #errors
9035
9036 #data
9037 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a"/>
9038 #errors
9039
9040 #data
9041 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a b"/>
9042 #errors
9043
9044 #data
9045 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a b"/>
9046 #errors
9047
9048 #data
9049 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a A"/>
9050 #errors
9051
9052 #data
9053 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a a"/>
9054 #errors
9055 /rule/@mode;duplicate token;m
9056
9057 #data
9058 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a&#x9;a&#xA;"/>
9059 #errors
9060 /rule/@mode;duplicate token;m
9061
9062 #data
9063 <?xml version="1.1"?>
9064 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a&#x0b;a"/>
9065 #errors
9066
9067 #data
9068 <?xml version="1.1"?>
9069 <rule xmlns="http://www.w3.org/1999/xhtml" mode="a a&#x0b;"/>
9070 #errors
9071
9072 #data
9073 <?xml version="1.1"?>
9074 <rule xmlns="http://www.w3.org/1999/xhtml" mode="&#x0b;a a"/>
9075 #errors
9076
9077 #data
9078 <rule xmlns="http://www.w3.org/1999/xhtml" condition=""/>
9079 #errors
9080 /rule/@condition;no sss;m
9081
9082 #data
9083 <rule xmlns="http://www.w3.org/1999/xhtml" condition=" "/>
9084 #errors
9085 /rule/@condition;no sss;m
9086
9087 #data
9088 <rule xmlns="http://www.w3.org/1999/xhtml" condition="a"/>
9089 #errors
9090
9091 #data
9092 <rule xmlns="http://www.w3.org/1999/xhtml" condition="a b "/>
9093 #errors
9094
9095 #data
9096 <rule xmlns="http://www.w3.org/1999/xhtml" condition="a, b"/>
9097 #errors
9098
9099 #data
9100 <rule xmlns="http://www.w3.org/1999/xhtml" condition="a|b"/>
9101 #errors
9102 /rule/@condition;namespace prefix:not declared;m
9103
9104 #data
9105 <rule xmlns="http://www.w3.org/1999/xhtml" condition="a["/>
9106 #errors
9107 /rule/@condition;no attr name;m
9108
9109 #data
9110 <rule xmlns="http://www.w3.org/1999/xhtml" condition="*/**/*"/>
9111 #errors
9112 /rule/@condition;no combinator;m
9113
9114 #data
9115 <rule xmlns="http://www.w3.org/1999/xhtml" filter=""/>
9116 #errors
9117 /rule/@filter;attribute not defined;m
9118
9119 #data
9120 <nest xmlns="http://www.w3.org/1999/xhtml" mode=""/>
9121 #errors
9122 /nest/@mode;mode:syntax error;m
9123
9124 #data
9125 <nest xmlns="http://www.w3.org/1999/xhtml" mode=" "/>
9126 #errors
9127 /nest/@mode;mode:syntax error;m
9128
9129 #data
9130 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a"/>
9131 #errors
9132
9133 #data
9134 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a "/>
9135 #errors
9136 /nest/@mode;mode:syntax error;m
9137
9138 #data
9139 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a b"/>
9140 #errors
9141 /nest/@mode;mode:syntax error;m
9142
9143 #data
9144 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a&#x9;a&#xA;"/>
9145 #errors
9146 /nest/@mode;mode:syntax error;m
9147
9148 #data
9149 <nest xmlns="http://www.w3.org/1999/xhtml" mode="&#x3000;"/>
9150 #errors
9151
9152 #data
9153 <?xml version="1.1"?>
9154 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a&#x0b;"/>
9155 #errors
9156
9157 #data
9158 <?xml version="1.1"?>
9159 <nest xmlns="http://www.w3.org/1999/xhtml" mode="&#x0b;a"/>
9160 #errors
9161
9162 #data
9163 <?xml version="1.1"?>
9164 <nest xmlns="http://www.w3.org/1999/xhtml" mode="a&#x0b;a"/>
9165 #errors
9166
9167 #data
9168 <nest xmlns="http://www.w3.org/1999/xhtml" filter=""/>
9169 #errors
9170 /nest/@filter;no sss;m
9171
9172 #data
9173 <nest xmlns="http://www.w3.org/1999/xhtml" filter=" "/>
9174 #errors
9175 /nest/@filter;no sss;m
9176
9177 #data
9178 <nest xmlns="http://www.w3.org/1999/xhtml" filter="a b"/>
9179 #errors
9180
9181 #data
9182 <nest xmlns="http://www.w3.org/1999/xhtml" filter="a + b"/>
9183 #errors
9184
9185 #data
9186 <nest xmlns="http://www.w3.org/1999/xhtml" filter="a.b#c[d]"/>
9187 #errors
9188
9189 #data
9190 <nest xmlns="http://www.w3.org/1999/xhtml" filter="a|b"/>
9191 #errors
9192 /nest/@filter;namespace prefix:not declared;m
9193
9194 #data
9195 <nest xmlns="http://www.w3.org/1999/xhtml" condition="a|b"/>
9196 #errors
9197 /nest/@condition;attribute not defined;m
9198
9199 #data
9200 <div xmlns="http://www.w3.org/1999/xhtml"
9201 template="#a">x
9202 <datatemplate id="a">
9203 </datatemplate>
9204 </div>
9205 #errors
9206
9207 #data
9208 <div xmlns="http://www.w3.org/1999/xhtml">
9209 <datatemplate id="a"></datatemplate>
9210 <p template="#a">x</p>
9211 </div>
9212 #errors
9213
9214 #data
9215 <div xmlns="http://www.w3.org/1999/xhtml">
9216 <p template="#a">x</p>
9217 <datatemplate id="a"/>
9218 </div>
9219 #errors
9220
9221 #data
9222 <div xmlns="http://www.w3.org/1999/xhtml">
9223 <div template="#a">x<datatemplate id="a"></datatemplate></div>
9224 </div>
9225 #errors
9226
9227 #data
9228 <div xmlns="http://www.w3.org/1999/xhtml">
9229 <p template="#a">x</p>
9230 <p id="a">y</p>
9231 </div>
9232 #errors
9233 /div/p/@template;template:not template;m
9234
9235 #data
9236 <div xmlns="http://www.w3.org/1999/xhtml">
9237 <p template="#">x</p>
9238 </div>
9239 #errors
9240 /div/p/@template;template:not template;m
9241
9242 #data
9243 <div xmlns="http://www.w3.org/1999/xhtml">
9244 <p template="">x</p>
9245 </div>
9246 #errors
9247 /div/p/@template;template:not template;m
9248
9249 #data
9250 <div xmlns="http://www.w3.org/1999/xhtml">
9251 <p template="#no-such-template">x</p>
9252 </div>
9253 #errors
9254 /div/p/@template;template:not template;m
9255
9256 #data
9257 <div xmlns="http://www.w3.org/1999/xhtml">
9258 <p template="#">x</p>
9259 <datatemplate id=""/>
9260 </div>
9261 #errors
9262 /div/p/@template;template:not template;m
9263 /div/datatemplate/@id;empty attribute value;m
9264
9265 #data
9266 <div xmlns="http://www.w3.org/1999/xhtml"
9267 template="external-template">x</div>
9268 #errors
9269
9270 #data
9271 <div xmlns="http://www.w3.org/1999/xhtml"
9272 template="external-inline-template#temlate">x</div>
9273 #errors
9274
9275 #data
9276 <div xmlns="http://www.w3.org/1999/xhtml">
9277 <p id="itself" template="#itself">x</p>
9278 </div>
9279 #errors
9280 /div/p/@template;template:not template;m
9281
9282 #data
9283 <div xmlns="http://www.w3.org/1999/xhtml">
9284 <datatemplate id="itself" template="#itself"/>x
9285 </div>
9286 #errors
9287 /div/datatemplate/@template;fragment points itself;m
9288
9289 #data
9290 <div xmlns="http://www.w3.org/1999/xhtml">
9291 <div id="a">x</div>
9292 <div template="#t" ref="#a">y</div>
9293 <datatemplate id="t"/>
9294 </div>
9295 #errors
9296
9297 #data
9298 <div xmlns="http://www.w3.org/1999/xhtml">
9299 <div template="#t" ref="#a">y</div>
9300 <div id="a">x</div>
9301 <datatemplate id="t"/>
9302 </div>
9303 #errors
9304
9305 #data
9306 <div xmlns="http://www.w3.org/1999/xhtml">
9307 <div template="#t" ref="#">y</div>
9308 <div id="">x</div>
9309 <datatemplate id="t"/>
9310 </div>
9311 #errors
9312 /div/div/@id;empty attribute value;m
9313
9314 #data
9315 <div xmlns="http://www.w3.org/1999/xhtml">
9316 <div template="#t" ref="#">y</div>
9317 <datatemplate id="t"/>
9318 </div>
9319 #errors
9320
9321 #data
9322 <div xmlns="http://www.w3.org/1999/xhtml">
9323 <div template="#t" ref="#no-such-element">y</div>
9324 <datatemplate id="t"/>
9325 </div>
9326 #errors
9327 /div/div/@ref;fragment points nothing;m
9328
9329 #data
9330 <div xmlns="http://www.w3.org/1999/xhtml">
9331 <div template="#t" ref="external-html">y</div>
9332 <datatemplate id="t"/>
9333 </div>
9334 #errors
9335
9336 #data
9337 <div xmlns="http://www.w3.org/1999/xhtml">
9338 <div template="#t" ref="external-html#element">y</div>
9339 <datatemplate id="t"/>
9340 </div>
9341 #errors
9342
9343 #data
9344 <div xmlns="http://www.w3.org/1999/xhtml">
9345 <div template="#t" ref="">y</div>
9346 <datatemplate id="t"/>
9347 </div>
9348 #errors
9349
9350 #data
9351 <div xmlns="http://www.w3.org/1999/xhtml">
9352 <div template="#t" id="itself" ref="#itself">y</div>
9353 <datatemplate id="t"/>
9354 </div>
9355 #errors
9356 /div/div/@ref;fragment points itself;m
9357
9358 #data
9359 <div xmlns="http://www.w3.org/1999/xhtml" ref="x">x</div>
9360 #errors
9361 /div/@ref;attribute not allowed;m
9362
9363 #data
9364 <div xmlns="http://www.w3.org/1999/xhtml"
9365 registrationmark="">x</div>
9366 #errors
9367 /div/@registrationmark;attribute not allowed;m
9368
9369 #data
9370 <rule xmlns="http://www.w3.org/1999/xhtml"
9371 registrationmark="">x</rule>
9372 #errors
9373 /rule/@registrationmark;attribute not allowed;m
9374
9375 #data
9376 <rule xmlns="http://www.w3.org/1999/xhtml">
9377 <div registrationmark="">x</div>
9378 </rule>
9379 #errors
9380
9381 #data
9382 <rule xmlns="http://www.w3.org/1999/xhtml">
9383 <div registrationmark="xxxx">x</div>
9384 </rule>
9385 #errors
9386
9387 #data
9388 <rule xmlns="http://www.w3.org/1999/xhtml">
9389 <div registrationmark="a b c">x</div>
9390 </rule>
9391 #errors
9392
9393 #data
9394 <rule xmlns="http://www.w3.org/1999/xhtml">
9395 <div registrationmark="a">x</div>
9396 <div registrationmark="a">x</div>
9397 </rule>
9398 #errors
9399
9400 #data
9401 <rule xmlns="http://www.w3.org/1999/xhtml">
9402 <rule>
9403 <div registrationmark="a">x</div>
9404 </rule>
9405 </rule>
9406 #errors
9407
9408 #data
9409 <rule xmlns="http://www.w3.org/1999/xhtml">
9410 <rule>
9411 </rule>
9412 <div registrationmark="a">x</div>
9413 </rule>
9414 #errors
9415
9416 #data
9417 <datatemplate xmlns="http://www.w3.org/1999/xhtml">
9418 <rule>
9419 </rule>
9420 <div registrationmark="a">x</div>
9421 </datatemplate>
9422 #errors
9423 /datatemplate/div;element not allowed:datatemplate;m
9424 /datatemplate/div/@registrationmark;attribute not allowed;m
9425
9426 #data
9427 <rule xmlns="http://www.w3.org/1999/xhtml">
9428 <div>
9429 <div registrationmark="a">x</div>
9430 </div>
9431 </rule>
9432 #errors
9433
9434 #data
9435 <rule xmlns="http://www.w3.org/1999/xhtml">
9436 <div>x
9437 <nest registrationmark="a"/>
9438 </div>
9439 </rule>
9440 #errors
9441 /rule/div/nest/@registrationmark;attribute not allowed;m
9442
9443 #data
9444 <rule xmlns="http://www.w3.org/1999/xhtml">
9445 <div>
9446 <rule registrationmark="">
9447 x
9448 </rule>
9449 </div>
9450 </rule>
9451 #errors
9452 /rule/div/rule;element not allowed:flow;m
9453
9454 #data
9455 <rule xmlns="http://www.w3.org/1999/xhtml">
9456 <div registartionmark="a">x</div>
9457 </rule>
9458 #errors
9459 /rule/div/@registartionmark;attribute not defined;m
9460
9461 #data
9462 <div align="" xmlns="http://www.w3.org/1999/xhtml">x</div>
9463 #errors
9464 /div/@align;attribute not defined;m
9465 /div/@align;enumerated:invalid;m
9466
9467 #data
9468 <div align="Left" xmlns="http://www.w3.org/1999/xhtml">x</div>
9469 #errors
9470 /div/@align;attribute not defined;m
9471
9472 #data
9473 <div align="center" xmlns="http://www.w3.org/1999/xhtml"/>
9474 #errors
9475 /div/@align;attribute not defined;m
9476 /div;no significant content;s
9477
9478 #data
9479 <div align="right" xmlns="http://www.w3.org/1999/xhtml">x</div>
9480 #errors
9481 /div/@align;attribute not defined;m
9482
9483 #data
9484 <div align="justify" xmlns="http://www.w3.org/1999/xhtml">x</div>
9485 #errors
9486 /div/@align;attribute not defined;m
9487
9488 #data
9489 <div align="xxx" xmlns="http://www.w3.org/1999/xhtml">x</div>
9490 #errors
9491 /div/@align;attribute not defined;m
9492 /div/@align;enumerated:invalid;m
9493
9494 #data
9495 <div align=" left" xmlns="http://www.w3.org/1999/xhtml">x</div>
9496 #errors
9497 /div/@align;attribute not defined;m
9498 /div/@align;enumerated:invalid;m
9499
9500 #data
9501 <a accesskey="" xmlns="http://www.w3.org/1999/xhtml">x</a>
9502 #errors
9503 /a/@accesskey;char:syntax error;m
9504 /a/@accesskey;attribute not defined;m
9505
9506 #data
9507 <a accesskey="a" xmlns="http://www.w3.org/1999/xhtml">x</a>
9508 #errors
9509 /a/@accesskey;attribute not defined;m
9510
9511 #data
9512 <a accesskey=" " xmlns="http://www.w3.org/1999/xhtml">x</a>
9513 #errors
9514 /a/@accesskey;attribute not defined;m
9515
9516 #data
9517 <a accesskey="xx" xmlns="http://www.w3.org/1999/xhtml">x</a>
9518 #errors
9519 /a/@accesskey;char:syntax error;m
9520 /a/@accesskey;attribute not defined;m
9521
9522 #data
9523 <area href="" shape="default" alt="" accesskey="" xmlns="http://www.w3.org/1999/xhtml"/>
9524 #errors
9525 /area/@accesskey;char:syntax error;m
9526 /area/@accesskey;attribute not defined;m
9527
9528 #data
9529 <area href="" shape="default" alt="" accesskey="a" xmlns="http://www.w3.org/1999/xhtml"/>
9530 #errors
9531 /area/@accesskey;attribute not defined;m
9532
9533 #data
9534 <area href="" shape="default" alt="" accesskey=" " xmlns="http://www.w3.org/1999/xhtml"/>
9535 #errors
9536 /area/@accesskey;attribute not defined;m
9537
9538 #data
9539 <area href="" shape="default" alt="" accesskey="xx" xmlns="http://www.w3.org/1999/xhtml"/>
9540 #errors
9541 /area/@accesskey;char:syntax error;m
9542 /area/@accesskey;attribute not defined;m
9543
9544 #data
9545 <input accesskey="" xmlns="http://www.w3.org/1999/xhtml"/>
9546 #errors
9547 /input/@accesskey;char:syntax error;m
9548 /input/@accesskey;attribute not defined;m
9549
9550 #data
9551 <input accesskey="x" xmlns="http://www.w3.org/1999/xhtml"/>
9552 #errors
9553 /input/@accesskey;attribute not defined;m
9554
9555 #data
9556 <button accesskey="" xmlns="http://www.w3.org/1999/xhtml">x</button>
9557 #errors
9558 /button/@accesskey;char:syntax error;m
9559 /button/@accesskey;attribute not defined;m
9560
9561 #data
9562 <button accesskey="x" xmlns="http://www.w3.org/1999/xhtml">x</button>
9563 #errors
9564 /button/@accesskey;attribute not defined;m
9565
9566 #data
9567 <label accesskey="" xmlns="http://www.w3.org/1999/xhtml"><input/>x</label>
9568 #errors
9569 /label/@accesskey;char:syntax error;m
9570
9571 #data
9572 <label accesskey="x" xmlns="http://www.w3.org/1999/xhtml"><input/>x</label>
9573 #errors
9574
9575 #data
9576 <select accesskey="" xmlns="http://www.w3.org/1999/xhtml"/>
9577 #errors
9578 /select/@accesskey;char:syntax error;m
9579
9580 #data
9581 <select accesskey="x" xmlns="http://www.w3.org/1999/xhtml"/>
9582 #errors
9583
9584 #data
9585 <textarea accesskey="" xmlns="http://www.w3.org/1999/xhtml"/>
9586 #errors
9587 /textarea/@accesskey;char:syntax error;m
9588 /textarea/@accesskey;attribute not defined;m
9589
9590 #data
9591 <textarea accesskey="x" xmlns="http://www.w3.org/1999/xhtml"/>
9592 #errors
9593 /textarea/@accesskey;attribute not defined;m
9594
9595
9596 #data
9597 <legend accesskey="" xmlns="http://www.w3.org/1999/xhtml">x</legend>
9598 #errors
9599 /legend/@accesskey;char:syntax error;m
9600 /legend/@accesskey;attribute not defined;m
9601
9602 #data
9603 <legend accesskey="x" xmlns="http://www.w3.org/1999/xhtml">x</legend>
9604 #errors
9605 /legend/@accesskey;attribute not defined;m
9606
9607 #data
9608 <p repeat="" xmlns="http://www.w3.org/1999/xhtml">x</p>
9609 #errors
9610 /p/@repeat;repeat:syntax error;m
9611
9612 #data
9613 <p repeat="template" xmlns="http://www.w3.org/1999/xhtml">x</p>
9614 #errors
9615
9616 #data
9617 <p repeat="0" xmlns="http://www.w3.org/1999/xhtml">x</p>
9618 #errors
9619
9620 #data
9621 <p repeat="1" xmlns="http://www.w3.org/1999/xhtml">x</p>
9622 #errors
9623
9624 #data
9625 <p repeat="00001" xmlns="http://www.w3.org/1999/xhtml">x</p>
9626 #errors
9627
9628 #data
9629 <p repeat="-1" xmlns="http://www.w3.org/1999/xhtml">x</p>
9630 #errors
9631
9632 #data
9633 <p repeat="-00001" xmlns="http://www.w3.org/1999/xhtml">x</p>
9634 #errors
9635
9636 #data
9637 <p repeat="-1255" xmlns="http://www.w3.org/1999/xhtml">x</p>
9638 #errors
9639
9640 #data
9641 <p repeat="template " xmlns="http://www.w3.org/1999/xhtml">x</p>
9642 #errors
9643 /p/@repeat;repeat:syntax error;m
9644
9645 #data
9646 <p repeat="templatE" xmlns="http://www.w3.org/1999/xhtml">x</p>
9647 #errors
9648 /p/@repeat;repeat:syntax error;m
9649
9650 #data
9651 <p repeat=" template" xmlns="http://www.w3.org/1999/xhtml">x</p>
9652 #errors
9653 /p/@repeat;repeat:syntax error;m
9654
9655 #data
9656 <p repeat="0.000" xmlns="http://www.w3.org/1999/xhtml">x</p>
9657 #errors
9658 /p/@repeat;repeat:syntax error;m
9659
9660 #data
9661 <p repeat=".12" xmlns="http://www.w3.org/1999/xhtml">x</p>
9662 #errors
9663 /p/@repeat;repeat:syntax error;m
9664
9665 #data
9666 <p repeat="120 " xmlns="http://www.w3.org/1999/xhtml">x</p>
9667 #errors
9668 /p/@repeat;repeat:syntax error;m
9669
9670 #data
9671 <p repeat="+21434" xmlns="http://www.w3.org/1999/xhtml">x</p>
9672 #errors
9673 /p/@repeat;repeat:syntax error;m
9674
9675 #data
9676 <p repeat="template-text" xmlns="http://www.w3.org/1999/xhtml">x</p>
9677 #errors
9678 /p/@repeat;repeat:syntax error;m
9679
9680 #data
9681 <div xmlns="http://www.w3.org/1999/xhtml">
9682 <p repeat="1" repeat-template="t">x</p>
9683 <p id="t" repeat="template">x</p>
9684 </div>
9685 #errors
9686
9687 #data
9688 <div xmlns="http://www.w3.org/1999/xhtml">
9689 <p id="t" repeat="template">x</p>
9690 <p repeat="1" repeat-template="t">x</p>
9691 </div>
9692 #errors
9693
9694 #data
9695 <p repeate="template" xmlns="http://www.w3.org/1999/xhtml">x</p>
9696 #errors
9697 /p/@repeate;attribute not defined;m
9698
9699 #data
9700 <p repet="template" xmlns="http://www.w3.org/1999/xhtml">x</p>
9701 #errors
9702 /p/@repet;attribute not defined;m
9703
9704 #data
9705 <p repea="template" xmlns="http://www.w3.org/1999/xhtml">x</p>
9706 #errors
9707 /p/@repea;attribute not defined;m
9708
9709 #data
9710 <input type="add" xmlns="http://www.w3.org/1999/xhtml"/>
9711 #errors
9712
9713 #data
9714 <button type="add" xmlns="http://www.w3.org/1999/xhtml">x</button>
9715 #errors
9716
9717 #data
9718 <input type="remove" xmlns="http://www.w3.org/1999/xhtml"/>
9719 #errors
9720
9721 #data
9722 <input type="delete" xmlns="http://www.w3.org/1999/xhtml"/>
9723 #errors
9724 /input/@type;enumerated:invalid;m
9725
9726 #data
9727 <button type="remove" xmlns="http://www.w3.org/1999/xhtml">x</button>
9728 #errors
9729
9730 #data
9731 <button type="delete" xmlns="http://www.w3.org/1999/xhtml">x</button>
9732 #errors
9733 /button/@type;enumerated:invalid;m
9734
9735 #data
9736 <input type="move-up" xmlns="http://www.w3.org/1999/xhtml"/>
9737 #errors
9738
9739 #data
9740 <button type="move-up" xmlns="http://www.w3.org/1999/xhtml">x</button>
9741 #errors
9742
9743 #data
9744 <input type="move-down" xmlns="http://www.w3.org/1999/xhtml"/>
9745 #errors
9746
9747 #data
9748 <button type="move-down" xmlns="http://www.w3.org/1999/xhtml">x</button>
9749 #errors
9750
9751 #data
9752 <div xmlns="http://www.w3.org/1999/xhtml">
9753 <input type="add" template="t"/>
9754 <p repeat="template" id="t">x</p>
9755 </div>
9756 #errors
9757
9758 #data
9759 <div xmlns="http://www.w3.org/1999/xhtml">
9760 <button type="add" template="t">x</button>
9761 <p repeat="template" id="t">x</p>
9762 </div>
9763 #errors
9764
9765 #data
9766 <p repeat="template" repeat-min="" xmlns="http://www.w3.org/1999/xhtml">x</p>
9767 #errors
9768 /p/@repeat-min;nninteger:syntax error;m
9769
9770 #data
9771 <p repeat="template" repeat-min="0" xmlns="http://www.w3.org/1999/xhtml">x</p>
9772 #errors
9773
9774 #data
9775 <p repeat="template" repeat-min="1" xmlns="http://www.w3.org/1999/xhtml">x</p>
9776 #errors
9777
9778 #data
9779 <p repeat="template" repeat-min="01" xmlns="http://www.w3.org/1999/xhtml">x</p>
9780 #errors
9781
9782 #data
9783 <p repeat="template" repeat-min="template" xmlns="http://www.w3.org/1999/xhtml">x</p>
9784 #errors
9785 /p/@repeat-min;nninteger:syntax error;m
9786
9787 #data
9788 <p repeat="template" repeat-min="-12" xmlns="http://www.w3.org/1999/xhtml">x</p>
9789 #errors
9790 /p/@repeat-min;nninteger:syntax error;m
9791
9792 #data
9793 <p repeat="template" repeat-min="+0" xmlns="http://www.w3.org/1999/xhtml">x</p>
9794 #errors
9795 /p/@repeat-min;nninteger:syntax error;m
9796
9797 #data
9798 <p repeat="template" repeat-min="1 " xmlns="http://www.w3.org/1999/xhtml">x</p>
9799 #errors
9800 /p/@repeat-min;nninteger:syntax error;m
9801
9802 #data
9803 <p repeat="template" repeat-min="infinite" xmlns="http://www.w3.org/1999/xhtml">x</p>
9804 #errors
9805 /p/@repeat-min;nninteger:syntax error;m
9806
9807 #data
9808 <p repeat="template" repeat-max="" xmlns="http://www.w3.org/1999/xhtml">x</p>
9809 #errors
9810 /p/@repeat-max;nninteger:syntax error;m
9811
9812 #data
9813 <p repeat="template" repeat-max="0" xmlns="http://www.w3.org/1999/xhtml">x</p>
9814 #errors
9815
9816 #data
9817 <p repeat="template" repeat-max="1" xmlns="http://www.w3.org/1999/xhtml">x</p>
9818 #errors
9819
9820 #data
9821 <p repeat="template" repeat-max="01" xmlns="http://www.w3.org/1999/xhtml">x</p>
9822 #errors
9823
9824 #data
9825 <p repeat="template" repeat-max="template" xmlns="http://www.w3.org/1999/xhtml">x</p>
9826 #errors
9827 /p/@repeat-max;nninteger:syntax error;m
9828
9829 #data
9830 <p repeat="template" repeat-max="-12" xmlns="http://www.w3.org/1999/xhtml">x</p>
9831 #errors
9832 /p/@repeat-max;nninteger:syntax error;m
9833
9834 #data
9835 <p repeat="template" repeat-max="+0" xmlns="http://www.w3.org/1999/xhtml">x</p>
9836 #errors
9837 /p/@repeat-max;nninteger:syntax error;m
9838
9839 #data
9840 <p repeat="template" repeat-max="1 " xmlns="http://www.w3.org/1999/xhtml">x</p>
9841 #errors
9842 /p/@repeat-max;nninteger:syntax error;m
9843
9844 #data
9845 <p repeat="template" repeat-max="infinite" xmlns="http://www.w3.org/1999/xhtml">x</p>
9846 #errors
9847 /p/@repeat-max;nninteger:syntax error;m
9848
9849 #data
9850 <p repeat="template" repeat-start="" xmlns="http://www.w3.org/1999/xhtml">x</p>
9851 #errors
9852 /p/@repeat-start;nninteger:syntax error;m
9853
9854 #data
9855 <p repeat="template" repeat-start="0" xmlns="http://www.w3.org/1999/xhtml">x</p>
9856 #errors
9857
9858 #data
9859 <p repeat="template" repeat-start="1" xmlns="http://www.w3.org/1999/xhtml">x</p>
9860 #errors
9861
9862 #data
9863 <p repeat="template" repeat-start="01" xmlns="http://www.w3.org/1999/xhtml">x</p>
9864 #errors
9865
9866 #data
9867 <p repeat="template" repeat-start="template" xmlns="http://www.w3.org/1999/xhtml">x</p>
9868 #errors
9869 /p/@repeat-start;nninteger:syntax error;m
9870
9871 #data
9872 <p repeat="template" repeat-start="-12" xmlns="http://www.w3.org/1999/xhtml">x</p>
9873 #errors
9874 /p/@repeat-start;nninteger:syntax error;m
9875
9876 #data
9877 <p repeat="template" repeat-start="+0" xmlns="http://www.w3.org/1999/xhtml">x</p>
9878 #errors
9879 /p/@repeat-start;nninteger:syntax error;m
9880
9881 #data
9882 <p repeat="template" repeat-start="1 " xmlns="http://www.w3.org/1999/xhtml">x</p>
9883 #errors
9884 /p/@repeat-start;nninteger:syntax error;m
9885
9886 #data
9887 <p repeat="template" repeat-start="infinite" xmlns="http://www.w3.org/1999/xhtml">x</p>
9888 #errors
9889 /p/@repeat-start;nninteger:syntax error;m
9890
9891 #data
9892 <x html:repeat="x" xmlns:html="http://www.w3.org/1999/xhtml"/>
9893 #errors
9894 /x;unknown element;u
9895 /x/@repeat;repeat:syntax error;m
9896
9897 #data
9898 <x html:repeat-start="x" xmlns:html="http://www.w3.org/1999/xhtml"/>
9899 #errors
9900 /x;unknown element;u
9901 /x/@repeat-start;nninteger:syntax error;m
9902
9903 #data
9904 <x html:repeat-min="x" xmlns:html="http://www.w3.org/1999/xhtml"/>
9905 #errors
9906 /x;unknown element;u
9907 /x/@repeat-min;nninteger:syntax error;m
9908
9909 #data
9910 <x html:repeat-max="x" xmlns:html="http://www.w3.org/1999/xhtml"/>
9911 #errors
9912 /x;unknown element;u
9913 /x/@repeat-max;nninteger:syntax error;m
9914
9915 #data
9916 <x html:repeat-template="x" xmlns:html="http://www.w3.org/1999/xhtml"><p repeat="template" id="x" xmlns="http://www.w3.org/1999/xhtml">x</p></x>
9917 #errors
9918 /x;unknown element;u
9919
9920 #data
9921 <p xmlns="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml"
9922 html:repeat="template">x</p>
9923 #errors
9924 /p/@repeat;attribute not allowed;m
9925
9926 #data
9927 <p xmlns="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml"
9928 html:repeat-min="1" repeat="template">x</p>
9929 #errors
9930 /p/@repeat-min;attribute not allowed;m
9931
9932 #data
9933 <p xmlns="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml"
9934 html:repeat-max="5" repeat="template">x</p>
9935 #errors
9936 /p/@repeat-max;attribute not allowed;m
9937
9938 #data
9939 <p xmlns="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml"
9940 html:repeat-start="0" repeat="template">x</p>
9941 #errors
9942 /p/@repeat-start;attribute not allowed;m
9943
9944 #data
9945 <p xmlns="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml"
9946 html:repeat-template="t"><q repeat="template" id="t">x</q></p>
9947 #errors
9948 /p/@repeat-template;attribute not allowed;m

[email protected]
ViewVC Help
Powered by ViewVC 1.1.24