/[suikacvs]/markup/html/whatpm/t/tree-construction/tests1.dat
Suika

Contents of /markup/html/whatpm/t/tree-construction/tests1.dat

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.8 - (show annotations) (download)
Sun Apr 13 06:44:27 2008 UTC (18 years, 3 months ago) by wakaba
Branch: MAIN
Changes since 1.7: +0 -7 lines
++ whatpm/t/ChangeLog	13 Apr 2008 06:43:36 -0000
	* HTML-tokenizer.t, HTML-tree.t, Makefile: Support for html5lib
	new test files.

2008-04-13  Wakaba  <wakaba@suika.fam.cx>

++ whatpm/Whatpm/ChangeLog	13 Apr 2008 06:44:17 -0000
	* mkentitylist.pl: Support for new HTML5 entity table format (the
	definition for |AElig;| was missing).

2008-04-13  Wakaba  <wakaba@suika.fam.cx>

1 #data
2 Test
3 #errors
4 Line: 1 Col: 4 Unexpected non-space characters. Expected DOCTYPE.
5 #document
6 | <html>
7 | <head>
8 | <body>
9 | "Test"
10
11 #data
12 <p>One<p>Two
13 #errors
14 Line: 1 Col: 3 Unexpected start tag (p). Expected DOCTYPE.
15 #document
16 | <html>
17 | <head>
18 | <body>
19 | <p>
20 | "One"
21 | <p>
22 | "Two"
23
24 #data
25 Line1<br>Line2<br>Line3<br>Line4
26 #errors
27 Line: 1 Col: 5 Unexpected non-space characters. Expected DOCTYPE.
28 #document
29 | <html>
30 | <head>
31 | <body>
32 | "Line1"
33 | <br>
34 | "Line2"
35 | <br>
36 | "Line3"
37 | <br>
38 | "Line4"
39
40 #data
41 <html>
42 #errors
43 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE.
44 #document
45 | <html>
46 | <head>
47 | <body>
48
49 #data
50 <head>
51 #errors
52 Line: 1 Col: 6 Unexpected start tag (head). Expected DOCTYPE.
53 #document
54 | <html>
55 | <head>
56 | <body>
57
58 #data
59 <body>
60 #errors
61 Line: 1 Col: 6 Unexpected start tag (body). Expected DOCTYPE.
62 #document
63 | <html>
64 | <head>
65 | <body>
66
67 #data
68 <html><head>
69 #errors
70 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE.
71 #document
72 | <html>
73 | <head>
74 | <body>
75
76 #data
77 <html><head></head>
78 #errors
79 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE.
80 #document
81 | <html>
82 | <head>
83 | <body>
84
85 #data
86 <html><head></head><body>
87 #errors
88 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE.
89 #document
90 | <html>
91 | <head>
92 | <body>
93
94 #data
95 <html><head></head><body></body>
96 #errors
97 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE.
98 #document
99 | <html>
100 | <head>
101 | <body>
102
103 #data
104 <html><head><body></body></html>
105 #errors
106 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE.
107 #document
108 | <html>
109 | <head>
110 | <body>
111
112 #data
113 <html><head></body></html>
114 #errors
115 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE.
116 #document
117 | <html>
118 | <head>
119 | <body>
120
121 #data
122 <html><head><body></html>
123 #errors
124 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE.
125 #document
126 | <html>
127 | <head>
128 | <body>
129
130 #data
131 <html><body></html>
132 #errors
133 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE.
134 #document
135 | <html>
136 | <head>
137 | <body>
138
139 #data
140 <body></html>
141 #errors
142 Line: 1 Col: 6 Unexpected start tag (body). Expected DOCTYPE.
143 #document
144 | <html>
145 | <head>
146 | <body>
147
148 #data
149 <head></html>
150 #errors
151 Line: 1 Col: 6 Unexpected start tag (head). Expected DOCTYPE.
152 #document
153 | <html>
154 | <head>
155 | <body>
156
157 #data
158 </head>
159 #errors
160 Line: 1 Col: 7 Unexpected end tag (head). Expected DOCTYPE.
161 #document
162 | <html>
163 | <head>
164 | <body>
165
166 #data
167 </body>
168 #errors
169 Line: 1 Col: 7 Unexpected end tag (body). Expected DOCTYPE.
170 #document
171 | <html>
172 | <head>
173 | <body>
174
175 #data
176 </html>
177 #errors
178 Line: 1 Col: 7 Unexpected end tag (html). Expected DOCTYPE.
179 #document
180 | <html>
181 | <head>
182 | <body>
183
184 #data
185 <b><table><td><i></table>
186 #errors
187 Line: 1 Col: 3 Unexpected start tag (b). Expected DOCTYPE.
188 Line: 1 Col: 14 Unexpected table cell start tag (td) in the table body phase.
189 Line: 1 Col: 25 Got table cell end tag (td) while required end tags are missing.
190 Line: 1 Col: 25 Expected closing tag. Unexpected end of file.
191 #document
192 | <html>
193 | <head>
194 | <body>
195 | <b>
196 | <table>
197 | <tbody>
198 | <tr>
199 | <td>
200 | <i>
201
202 #data
203 <b><table><td></b><i></table>X
204 #errors
205 Line: 1 Col: 3 Unexpected start tag (b). Expected DOCTYPE.
206 Line: 1 Col: 14 Unexpected table cell start tag (td) in the table body phase.
207 Line: 1 Col: 18 End tag (b) violates step 1, paragraph 1 of the adoption agency algorithm.
208 Line: 1 Col: 29 Got table cell end tag (td) while required end tags are missing.
209 Line: 1 Col: 30 Expected closing tag. Unexpected end of file.
210 #document
211 | <html>
212 | <head>
213 | <body>
214 | <b>
215 | <table>
216 | <tbody>
217 | <tr>
218 | <td>
219 | <i>
220 | "X"
221
222 #data
223 <h1>Hello<h2>World
224 #errors
225 Line: 1 Col: 4 Unexpected start tag (h1). Expected DOCTYPE.
226 Line: 1 Col: 18 Expected closing tag. Unexpected end of file.
227 #document
228 | <html>
229 | <head>
230 | <body>
231 | <h1>
232 | "Hello"
233 | <h2>
234 | "World"
235
236 #data
237 <a><p>X<a>Y</a>Z</p></a>
238 #errors
239 Line: 1 Col: 3 Unexpected start tag (a). Expected DOCTYPE.
240 Line: 1 Col: 10 Unexpected start tag (a) implies end tag (a).
241 Line: 1 Col: 10 End tag (a) violates step 1, paragraph 3 of the adoption agency algorithm.
242 Line: 1 Col: 24 End tag (a) violates step 1, paragraph 1 of the adoption agency algorithm.
243 #document
244 | <html>
245 | <head>
246 | <body>
247 | <a>
248 | <p>
249 | <a>
250 | "X"
251 | <a>
252 | "Y"
253 | "Z"
254
255 #data
256 <b><button></b></button></b>
257 #errors
258 Line: 1 Col: 3 Unexpected start tag (b). Expected DOCTYPE.
259 Line: 1 Col: 15 End tag (b) violates step 1, paragraph 1 of the adoption agency algorithm.
260 #document
261 | <html>
262 | <head>
263 | <body>
264 | <b>
265 | <button>
266
267 #data
268 <p><b><div><marquee></p></b></div>X
269 #errors
270 Line: 1 Col: 3 Unexpected start tag (p). Expected DOCTYPE.
271 Line: 1 Col: 11 Unexpected end tag (p). Ignored.
272 Line: 1 Col: 24 Unexpected end tag (p). Ignored.
273 Line: 1 Col: 28 End tag (b) violates step 1, paragraph 1 of the adoption agency algorithm.
274 Line: 1 Col: 34 End tag (div) seen too early. Expected other end tag.
275 Line: 1 Col: 35 Expected closing tag. Unexpected end of file.
276 #document
277 | <html>
278 | <head>
279 | <body>
280 | <p>
281 | <b>
282 | <div>
283 | <b>
284 | <marquee>
285 | <p>
286 | "X"
287
288 #data
289 <script><div></script></div><title><p></title><p><p>
290 #errors
291 Line: 1 Col: 8 Unexpected start tag (script). Expected DOCTYPE.
292 Line: 1 Col: 28 Unexpected end tag (div). Ignored.
293 #document
294 | <html>
295 | <head>
296 | <script>
297 | "<div>"
298 | <title>
299 | "<p>"
300 | <body>
301 | <p>
302 | <p>
303
304 #data
305 <!--><div>--<!-->
306 #errors
307 Line: 1 Col: 5 Incorrect comment.
308 Line: 1 Col: 10 Unexpected start tag (div). Expected DOCTYPE.
309 Line: 1 Col: 17 Incorrect comment.
310 Line: 1 Col: 17 Expected closing tag. Unexpected end of file.
311 #document
312 | <!-- -->
313 | <html>
314 | <head>
315 | <body>
316 | <div>
317 | "--"
318 | <!-- -->
319
320 #data
321 <p><hr></p>
322 #errors
323 Line: 1 Col: 3 Unexpected start tag (p). Expected DOCTYPE.
324 Line: 1 Col: 11 Unexpected end tag (p). Ignored.
325 #document
326 | <html>
327 | <head>
328 | <body>
329 | <p>
330 | <hr>
331 | <p>
332
333 #data
334 <select><b><option><select><option></b></select>X
335 #errors
336 Line: 1 Col: 8 Unexpected start tag (select). Expected DOCTYPE.
337 Line: 1 Col: 11 Unexpected start tag token (b) in the select phase. Ignored.
338 Line: 1 Col: 27 Unexpected select start tag in the select phase implies select start tag.
339 Line: 1 Col: 35 Unexpected start tag option. Ignored.
340 Line: 1 Col: 39 End tag (b) violates step 1, paragraph 1 of the adoption agency algorithm.
341 Line: 1 Col: 48 Unexpected end tag (select). Ignored.
342 #document
343 | <html>
344 | <head>
345 | <body>
346 | <select>
347 | <option>
348 | "X"
349
350 #data
351 <a><table><td><a><table></table><a></tr><a></table><b>X</b>C<a>Y
352 #errors
353 Line: 1 Col: 3 Unexpected start tag (a). Expected DOCTYPE.
354 Line: 1 Col: 14 Unexpected table cell start tag (td) in the table body phase.
355 Line: 1 Col: 35 Unexpected start tag (a) implies end tag (a).
356 Line: 1 Col: 40 Got table cell end tag (td) while required end tags are missing.
357 Line: 1 Col: 43 Unexpected start tag (a) in table context caused voodoo mode.
358 Line: 1 Col: 43 Unexpected start tag (a) implies end tag (a).
359 Line: 1 Col: 43 End tag (a) violates step 1, paragraph 1 of the adoption agency algorithm.
360 Line: 1 Col: 63 Unexpected start tag (a) implies end tag (a).
361 Line: 1 Col: 64 Expected closing tag. Unexpected end of file.
362 #document
363 | <html>
364 | <head>
365 | <body>
366 | <a>
367 | <a>
368 | <table>
369 | <tbody>
370 | <tr>
371 | <td>
372 | <a>
373 | <table>
374 | <a>
375 | <a>
376 | <b>
377 | "X"
378 | "C"
379 | <a>
380 | "Y"
381
382 #data
383 <a X>0<b>1<a Y>2
384 #errors
385 Line: 1 Col: 5 Unexpected start tag (a). Expected DOCTYPE.
386 Line: 1 Col: 15 Unexpected start tag (a) implies end tag (a).
387 Line: 1 Col: 15 End tag (a) violates step 1, paragraph 3 of the adoption agency algorithm.
388 Line: 1 Col: 16 Expected closing tag. Unexpected end of file.
389 #document
390 | <html>
391 | <head>
392 | <body>
393 | <a>
394 | x=""
395 | "0"
396 | <b>
397 | "1"
398 | <b>
399 | <a>
400 | y=""
401 | "2"
402
403 #data
404 <!-----><font><div>hello<table>excite!<b>me!<th><i>please!</tr><!--X-->
405 #errors
406 Line: 1 Col: 7 Unexpected '-' after '--' found in comment.
407 Line: 1 Col: 14 Unexpected start tag (font). Expected DOCTYPE.
408 Line: 1 Col: 38 Unexpected non-space characters in table context caused voodoo mode.
409 Line: 1 Col: 48 Unexpected table cell start tag (th) in the table body phase.
410 Line: 1 Col: 63 Got table cell end tag (th) while required end tags are missing.
411 Line: 1 Col: 71 Expected closing tag. Unexpected end of file.
412 #document
413 | <!-- - -->
414 | <html>
415 | <head>
416 | <body>
417 | <font>
418 | <div>
419 | "helloexcite!"
420 | <b>
421 | "me!"
422 | <table>
423 | <tbody>
424 | <tr>
425 | <th>
426 | <i>
427 | "please!"
428 | <!-- X -->
429
430 #data
431 <!DOCTYPE html><li>hello<li>world<ul>how<li>do</ul>you</body><!--do-->
432 #errors
433 Line: 1 Col: 61 Unexpected end tag (li). Missing end tag (body).
434 #document
435 | <!DOCTYPE html>
436 | <html>
437 | <head>
438 | <body>
439 | <li>
440 | "hello"
441 | <li>
442 | "world"
443 | <ul>
444 | "how"
445 | <li>
446 | "do"
447 | "you"
448 | <!-- do -->
449
450 #data
451 <!DOCTYPE html>A<option>B<optgroup>C<select>D</option>E
452 #errors
453 Line: 1 Col: 24 Unexpected start tag option. Ignored.
454 Line: 1 Col: 35 Unexpected start tag optgroup. Ignored.
455 Line: 1 Col: 54 Unexpected end tag (option) in the select phase. Ignored.
456 Line: 1 Col: 55 Expected closing tag. Unexpected end of file.
457 #document
458 | <!DOCTYPE html>
459 | <html>
460 | <head>
461 | <body>
462 | "ABC"
463 | <select>
464 | "DE"
465
466 #data
467 <
468 #errors
469 Line: 1 Col: 1 Expected tag name. Got something else instead
470 Line: 1 Col: 1 Unexpected non-space characters. Expected DOCTYPE.
471 #document
472 | <html>
473 | <head>
474 | <body>
475 | "<"
476
477 #data
478 <#
479 #errors
480 Line: 1 Col: 1 Expected tag name. Got something else instead
481 Line: 1 Col: 1 Unexpected non-space characters. Expected DOCTYPE.
482 #document
483 | <html>
484 | <head>
485 | <body>
486 | "<#"
487
488 #data
489 </
490 #errors
491 Line: 1 Col: 2 Expected closing tag. Unexpected end of file.
492 Line: 1 Col: 2 Unexpected non-space characters. Expected DOCTYPE.
493 #document
494 | <html>
495 | <head>
496 | <body>
497 | "</"
498
499 #data
500 </#
501 #errors
502 Line: 1 Col: 2 Expected closing tag. Unexpected character '#' found.
503 Line: 1 Col: 3 Unexpected End of file. Expected DOCTYPE.
504 #document
505 | <!-- # -->
506 | <html>
507 | <head>
508 | <body>
509
510 #data
511 <?
512 #errors
513 Line: 1 Col: 1 Expected tag name. Got '?' instead. (HTML doesn't support processing instructions.)
514 Line: 1 Col: 2 Unexpected End of file. Expected DOCTYPE.
515 #document
516 | <!-- ? -->
517 | <html>
518 | <head>
519 | <body>
520
521 #data
522 <?#
523 #errors
524 Line: 1 Col: 1 Expected tag name. Got '?' instead. (HTML doesn't support processing instructions.)
525 Line: 1 Col: 3 Unexpected End of file. Expected DOCTYPE.
526 #document
527 | <!-- ?# -->
528 | <html>
529 | <head>
530 | <body>
531
532 #data
533 <!
534 #errors
535 Line: 1 Col: 2 Expected '--' or 'DOCTYPE'. Not found.
536 Line: 1 Col: 2 Unexpected End of file. Expected DOCTYPE.
537 #document
538 | <!-- -->
539 | <html>
540 | <head>
541 | <body>
542
543 #data
544 <!#
545 #errors
546 Line: 1 Col: 3 Expected '--' or 'DOCTYPE'. Not found.
547 Line: 1 Col: 3 Unexpected End of file. Expected DOCTYPE.
548 #document
549 | <!-- # -->
550 | <html>
551 | <head>
552 | <body>
553
554 #data
555 <?COMMENT?>
556 #errors
557 Line: 1 Col: 1 Expected tag name. Got '?' instead. (HTML doesn't support processing instructions.)
558 Line: 1 Col: 11 Unexpected End of file. Expected DOCTYPE.
559 #document
560 | <!-- ?COMMENT? -->
561 | <html>
562 | <head>
563 | <body>
564
565 #data
566 <!COMMENT>
567 #errors
568 Line: 1 Col: 2 Expected '--' or 'DOCTYPE'. Not found.
569 Line: 1 Col: 10 Unexpected End of file. Expected DOCTYPE.
570 #document
571 | <!-- COMMENT -->
572 | <html>
573 | <head>
574 | <body>
575
576 #data
577 </ COMMENT >
578 #errors
579 Line: 1 Col: 2 Expected closing tag. Unexpected character ' ' found.
580 Line: 1 Col: 12 Unexpected End of file. Expected DOCTYPE.
581 #document
582 | <!-- COMMENT -->
583 | <html>
584 | <head>
585 | <body>
586
587 #data
588 <?COM--MENT?>
589 #errors
590 Line: 1 Col: 1 Expected tag name. Got '?' instead. (HTML doesn't support processing instructions.)
591 Line: 1 Col: 13 Unexpected End of file. Expected DOCTYPE.
592 #document
593 | <!-- ?COM--MENT? -->
594 | <html>
595 | <head>
596 | <body>
597
598 #data
599 <!COM--MENT>
600 #errors
601 Line: 1 Col: 2 Expected '--' or 'DOCTYPE'. Not found.
602 Line: 1 Col: 12 Unexpected End of file. Expected DOCTYPE.
603 #document
604 | <!-- COM--MENT -->
605 | <html>
606 | <head>
607 | <body>
608
609 #data
610 </ COM--MENT >
611 #errors
612 Line: 1 Col: 2 Expected closing tag. Unexpected character ' ' found.
613 Line: 1 Col: 14 Unexpected End of file. Expected DOCTYPE.
614 #document
615 | <!-- COM--MENT -->
616 | <html>
617 | <head>
618 | <body>
619
620 #data
621 <!DOCTYPE html><style> EOF
622 #errors
623 Line: 1 Col: 26 Unexpected end of file. Expected end tag (style).
624 #document
625 | <!DOCTYPE html>
626 | <html>
627 | <head>
628 | <style>
629 | " EOF"
630 | <body>
631
632 #data
633 <!DOCTYPE html><script> <!-- </script> --> </script> EOF
634 #errors
635 #document
636 | <!DOCTYPE html>
637 | <html>
638 | <head>
639 | <script>
640 | " <!-- </script> --> "
641 | " "
642 | <body>
643 | "EOF"
644
645 #data
646 <b><p></b>TEST
647 #errors
648 Line: 1 Col: 3 Unexpected start tag (b). Expected DOCTYPE.
649 Line: 1 Col: 10 End tag (b) violates step 1, paragraph 3 of the adoption agency algorithm.
650 #document
651 | <html>
652 | <head>
653 | <body>
654 | <b>
655 | <p>
656 | <b>
657 | "TEST"
658
659 #data
660 <p id=a><b><p id=b></b>TEST
661 #errors
662 Line: 1 Col: 8 Unexpected start tag (p). Expected DOCTYPE.
663 Line: 1 Col: 19 Unexpected end tag (p). Ignored.
664 Line: 1 Col: 23 End tag (b) violates step 1, paragraph 2 of the adoption agency algorithm.
665 #document
666 | <html>
667 | <head>
668 | <body>
669 | <p>
670 | id="a"
671 | <b>
672 | <p>
673 | id="b"
674 | "TEST"
675
676 #data
677 <b id=a><p><b id=b></p></b>TEST
678 #errors
679 Line: 1 Col: 8 Unexpected start tag (b). Expected DOCTYPE.
680 Line: 1 Col: 23 Unexpected end tag (p). Ignored.
681 Line: 1 Col: 27 End tag (b) violates step 1, paragraph 2 of the adoption agency algorithm.
682 Line: 1 Col: 31 Expected closing tag. Unexpected end of file.
683 #document
684 | <html>
685 | <head>
686 | <body>
687 | <b>
688 | id="a"
689 | <p>
690 | <b>
691 | id="b"
692 | "TEST"
693
694 #data
695 <!DOCTYPE html><title>U-test</title><body><div><p>Test<u></p></div></body>
696 #errors
697 Line: 1 Col: 61 Unexpected end tag (p). Ignored.
698 #document
699 | <!DOCTYPE html>
700 | <html>
701 | <head>
702 | <title>
703 | "U-test"
704 | <body>
705 | <div>
706 | <p>
707 | "Test"
708 | <u>
709
710 #data
711 <!DOCTYPE html><font><table></font></table></font>
712 #errors
713 Line: 1 Col: 35 Unexpected end tag (font) in table context caused voodoo mode.
714 Line: 1 Col: 35 End tag (font) violates step 1, paragraph 1 of the adoption agency algorithm.
715 #document
716 | <!DOCTYPE html>
717 | <html>
718 | <head>
719 | <body>
720 | <font>
721 | <table>
722
723 #data
724 <font><p>hello<b>cruel</font>world
725 #errors
726 Line: 1 Col: 6 Unexpected start tag (font). Expected DOCTYPE.
727 Line: 1 Col: 29 End tag (font) violates step 1, paragraph 3 of the adoption agency algorithm.
728 Line: 1 Col: 29 End tag (font) violates step 1, paragraph 3 of the adoption agency algorithm.
729 Line: 1 Col: 34 Expected closing tag. Unexpected end of file.
730 #document
731 | <html>
732 | <head>
733 | <body>
734 | <font>
735 | <p>
736 | <font>
737 | "hello"
738 | <b>
739 | "cruel"
740 | <b>
741 | "world"
742
743 #data
744 <b>Test</i>Test
745 #errors
746 Line: 1 Col: 3 Unexpected start tag (b). Expected DOCTYPE.
747 Line: 1 Col: 11 End tag (i) violates step 1, paragraph 1 of the adoption agency algorithm.
748 Line: 1 Col: 15 Expected closing tag. Unexpected end of file.
749 #document
750 | <html>
751 | <head>
752 | <body>
753 | <b>
754 | "TestTest"
755
756 #data
757 <b>A<cite>B<div>C
758 #errors
759 Line: 1 Col: 3 Unexpected start tag (b). Expected DOCTYPE.
760 Line: 1 Col: 17 Expected closing tag. Unexpected end of file.
761 #document
762 | <html>
763 | <head>
764 | <body>
765 | <b>
766 | "A"
767 | <cite>
768 | "B"
769 | <div>
770 | "C"
771
772 #data
773 <b>A<cite>B<div>C</cite>D
774 #errors
775 Line: 1 Col: 3 Unexpected start tag (b). Expected DOCTYPE.
776 Line: 1 Col: 24 Unexpected end tag (cite). Ignored.
777 Line: 1 Col: 25 Expected closing tag. Unexpected end of file.
778 #document
779 | <html>
780 | <head>
781 | <body>
782 | <b>
783 | "A"
784 | <cite>
785 | "B"
786 | <div>
787 | "CD"
788
789 #data
790 <b>A<cite>B<div>C</b>D
791 #errors
792 Line: 1 Col: 3 Unexpected start tag (b). Expected DOCTYPE.
793 Line: 1 Col: 21 End tag (b) violates step 1, paragraph 3 of the adoption agency algorithm.
794 Line: 1 Col: 22 Expected closing tag. Unexpected end of file.
795 #document
796 | <html>
797 | <head>
798 | <body>
799 | <b>
800 | "A"
801 | <cite>
802 | "B"
803 | <div>
804 | <b>
805 | "C"
806 | "D"
807
808 #data
809 <cite><b><cite><i><cite><i><cite><i><div>X</b>TEST
810 #errors
811 Line: 1 Col: 6 Unexpected start tag (cite). Expected DOCTYPE.
812 Line: 1 Col: 46 End tag (b) violates step 1, paragraph 3 of the adoption agency algorithm.
813 Line: 1 Col: 50 Expected closing tag. Unexpected end of file.
814 #document
815 | <html>
816 | <head>
817 | <body>
818 | <cite>
819 | <b>
820 | <cite>
821 | <i>
822 | <cite>
823 | <i>
824 | <cite>
825 | <i>
826 | <i>
827 | <i>
828 | <div>
829 | <b>
830 | "X"
831 | "TEST"
832
833 #data
834
835 #errors
836 Line: 1 Col: 0 Unexpected End of file. Expected DOCTYPE.
837 #document
838 | <html>
839 | <head>
840 | <body>
841
842 #data
843 <DIV>
844 #errors
845 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE.
846 Line: 1 Col: 5 Expected closing tag. Unexpected end of file.
847 #document
848 | <html>
849 | <head>
850 | <body>
851 | <div>
852
853 #data
854 <DIV> abc
855 #errors
856 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE.
857 Line: 1 Col: 9 Expected closing tag. Unexpected end of file.
858 #document
859 | <html>
860 | <head>
861 | <body>
862 | <div>
863 | " abc"
864
865 #data
866 <DIV> abc <B>
867 #errors
868 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE.
869 Line: 1 Col: 13 Expected closing tag. Unexpected end of file.
870 #document
871 | <html>
872 | <head>
873 | <body>
874 | <div>
875 | " abc "
876 | <b>
877
878 #data
879 <DIV> abc <B> def
880 #errors
881 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE.
882 Line: 1 Col: 17 Expected closing tag. Unexpected end of file.
883 #document
884 | <html>
885 | <head>
886 | <body>
887 | <div>
888 | " abc "
889 | <b>
890 | " def"
891
892 #data
893 <DIV> abc <B> def <I>
894 #errors
895 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE.
896 Line: 1 Col: 21 Expected closing tag. Unexpected end of file.
897 #document
898 | <html>
899 | <head>
900 | <body>
901 | <div>
902 | " abc "
903 | <b>
904 | " def "
905 | <i>
906
907 #data
908 <DIV> abc <B> def <I> ghi
909 #errors
910 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE.
911 Line: 1 Col: 25 Expected closing tag. Unexpected end of file.
912 #document
913 | <html>
914 | <head>
915 | <body>
916 | <div>
917 | " abc "
918 | <b>
919 | " def "
920 | <i>
921 | " ghi"
922
923 #data
924 <DIV> abc <B> def <I> ghi <P>
925 #errors
926 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE.
927 Line: 1 Col: 29 Expected closing tag. Unexpected end of file.
928 #document
929 | <html>
930 | <head>
931 | <body>
932 | <div>
933 | " abc "
934 | <b>
935 | " def "
936 | <i>
937 | " ghi "
938 | <p>
939
940 #data
941 <DIV> abc <B> def <I> ghi <P> jkl
942 #errors
943 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE.
944 Line: 1 Col: 33 Expected closing tag. Unexpected end of file.
945 #document
946 | <html>
947 | <head>
948 | <body>
949 | <div>
950 | " abc "
951 | <b>
952 | " def "
953 | <i>
954 | " ghi "
955 | <p>
956 | " jkl"
957
958 #data
959 <DIV> abc <B> def <I> ghi <P> jkl </B>
960 #errors
961 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE.
962 Line: 1 Col: 38 End tag (b) violates step 1, paragraph 3 of the adoption agency algorithm.
963 Line: 1 Col: 38 Expected closing tag. Unexpected end of file.
964 #document
965 | <html>
966 | <head>
967 | <body>
968 | <div>
969 | " abc "
970 | <b>
971 | " def "
972 | <i>
973 | " ghi "
974 | <i>
975 | <p>
976 | <b>
977 | " jkl "
978
979 #data
980 <DIV> abc <B> def <I> ghi <P> jkl </B> mno
981 #errors
982 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE.
983 Line: 1 Col: 38 End tag (b) violates step 1, paragraph 3 of the adoption agency algorithm.
984 Line: 1 Col: 42 Expected closing tag. Unexpected end of file.
985 #document
986 | <html>
987 | <head>
988 | <body>
989 | <div>
990 | " abc "
991 | <b>
992 | " def "
993 | <i>
994 | " ghi "
995 | <i>
996 | <p>
997 | <b>
998 | " jkl "
999 | " mno"
1000
1001 #data
1002 <DIV> abc <B> def <I> ghi <P> jkl </B> mno </I>
1003 #errors
1004 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE.
1005 Line: 1 Col: 38 End tag (b) violates step 1, paragraph 3 of the adoption agency algorithm.
1006 Line: 1 Col: 47 End tag (i) violates step 1, paragraph 3 of the adoption agency algorithm.
1007 Line: 1 Col: 47 Expected closing tag. Unexpected end of file.
1008 #document
1009 | <html>
1010 | <head>
1011 | <body>
1012 | <div>
1013 | " abc "
1014 | <b>
1015 | " def "
1016 | <i>
1017 | " ghi "
1018 | <i>
1019 | <p>
1020 | <i>
1021 | <b>
1022 | " jkl "
1023 | " mno "
1024
1025 #data
1026 <DIV> abc <B> def <I> ghi <P> jkl </B> mno </I> pqr
1027 #errors
1028 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE.
1029 Line: 1 Col: 38 End tag (b) violates step 1, paragraph 3 of the adoption agency algorithm.
1030 Line: 1 Col: 47 End tag (i) violates step 1, paragraph 3 of the adoption agency algorithm.
1031 Line: 1 Col: 51 Expected closing tag. Unexpected end of file.
1032 #document
1033 | <html>
1034 | <head>
1035 | <body>
1036 | <div>
1037 | " abc "
1038 | <b>
1039 | " def "
1040 | <i>
1041 | " ghi "
1042 | <i>
1043 | <p>
1044 | <i>
1045 | <b>
1046 | " jkl "
1047 | " mno "
1048 | " pqr"
1049
1050 #data
1051 <DIV> abc <B> def <I> ghi <P> jkl </B> mno </I> pqr </P>
1052 #errors
1053 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE.
1054 Line: 1 Col: 38 End tag (b) violates step 1, paragraph 3 of the adoption agency algorithm.
1055 Line: 1 Col: 47 End tag (i) violates step 1, paragraph 3 of the adoption agency algorithm.
1056 Line: 1 Col: 56 Expected closing tag. Unexpected end of file.
1057 #document
1058 | <html>
1059 | <head>
1060 | <body>
1061 | <div>
1062 | " abc "
1063 | <b>
1064 | " def "
1065 | <i>
1066 | " ghi "
1067 | <i>
1068 | <p>
1069 | <i>
1070 | <b>
1071 | " jkl "
1072 | " mno "
1073 | " pqr "
1074
1075 #data
1076 <DIV> abc <B> def <I> ghi <P> jkl </B> mno </I> pqr </P> stu
1077 #errors
1078 Line: 1 Col: 5 Unexpected start tag (div). Expected DOCTYPE.
1079 Line: 1 Col: 38 End tag (b) violates step 1, paragraph 3 of the adoption agency algorithm.
1080 Line: 1 Col: 47 End tag (i) violates step 1, paragraph 3 of the adoption agency algorithm.
1081 Line: 1 Col: 60 Expected closing tag. Unexpected end of file.
1082 #document
1083 | <html>
1084 | <head>
1085 | <body>
1086 | <div>
1087 | " abc "
1088 | <b>
1089 | " def "
1090 | <i>
1091 | " ghi "
1092 | <i>
1093 | <p>
1094 | <i>
1095 | <b>
1096 | " jkl "
1097 | " mno "
1098 | " pqr "
1099 | " stu"
1100
1101 #data
1102 <test attribute---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
1103 #errors
1104 Line: 1 Col: 1040 Unexpected start tag (test). Expected DOCTYPE.
1105 Line: 1 Col: 1040 Expected closing tag. Unexpected end of file.
1106 #document
1107 | <html>
1108 | <head>
1109 | <body>
1110 | <test>
1111 | attribute----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------=""
1112
1113 #data
1114 <a href="blah">aba<table><a href="foo">br<tr><td></td></tr>x</table>aoe
1115 #errors
1116 Line: 1 Col: 15 Unexpected start tag (a). Expected DOCTYPE.
1117 Line: 1 Col: 39 Unexpected start tag (a) in table context caused voodoo mode.
1118 Line: 1 Col: 39 Unexpected start tag (a) implies end tag (a).
1119 Line: 1 Col: 39 End tag (a) violates step 1, paragraph 1 of the adoption agency algorithm.
1120 Line: 1 Col: 71 Expected closing tag. Unexpected end of file.
1121 #document
1122 | <html>
1123 | <head>
1124 | <body>
1125 | <a>
1126 | href="blah"
1127 | "aba"
1128 | <a>
1129 | href="foo"
1130 | "br"
1131 | <a>
1132 | href="foo"
1133 | "x"
1134 | <table>
1135 | <tbody>
1136 | <tr>
1137 | <td>
1138 | <a>
1139 | href="foo"
1140 | "aoe"
1141
1142 #data
1143 <a href="blah">aba<table><tr><td><a href="foo">br</td></tr>x</table>aoe
1144 #errors
1145 Line: 1 Col: 15 Unexpected start tag (a). Expected DOCTYPE.
1146 Line: 1 Col: 54 Got table cell end tag (td) while required end tags are missing.
1147 Line: 1 Col: 60 Unexpected non-space characters in table context caused voodoo mode.
1148 Line: 1 Col: 71 Expected closing tag. Unexpected end of file.
1149 #document
1150 | <html>
1151 | <head>
1152 | <body>
1153 | <a>
1154 | href="blah"
1155 | "abax"
1156 | <table>
1157 | <tbody>
1158 | <tr>
1159 | <td>
1160 | <a>
1161 | href="foo"
1162 | "br"
1163 | "aoe"
1164
1165 #data
1166 <table><a href="blah">aba<tr><td><a href="foo">br</td></tr>x</table>aoe
1167 #errors
1168 Line: 1 Col: 7 Unexpected start tag (table). Expected DOCTYPE.
1169 Line: 1 Col: 22 Unexpected start tag (a) in table context caused voodoo mode.
1170 Line: 1 Col: 54 Got table cell end tag (td) while required end tags are missing.
1171 Line: 1 Col: 71 Expected closing tag. Unexpected end of file.
1172 #document
1173 | <html>
1174 | <head>
1175 | <body>
1176 | <a>
1177 | href="blah"
1178 | "aba"
1179 | <a>
1180 | href="blah"
1181 | "x"
1182 | <table>
1183 | <tbody>
1184 | <tr>
1185 | <td>
1186 | <a>
1187 | href="foo"
1188 | "br"
1189 | <a>
1190 | href="blah"
1191 | "aoe"
1192
1193 #data
1194 <a href=a>aa<marquee>aa<a href=b>bb</marquee>aa
1195 #errors
1196 Line: 1 Col: 10 Unexpected start tag (a). Expected DOCTYPE.
1197 Line: 1 Col: 45 End tag (marquee) seen too early. Expected other end tag.
1198 Line: 1 Col: 47 Expected closing tag. Unexpected end of file.
1199 #document
1200 | <html>
1201 | <head>
1202 | <body>
1203 | <a>
1204 | href="a"
1205 | "aa"
1206 | <marquee>
1207 | "aa"
1208 | <a>
1209 | href="b"
1210 | "bb"
1211 | "aa"
1212
1213 #data
1214 <wbr><strike><code></strike><code><strike></code>
1215 #errors
1216 Line: 1 Col: 5 Unexpected start tag (wbr). Expected DOCTYPE.
1217 Line: 1 Col: 28 End tag (strike) violates step 1, paragraph 3 of the adoption agency algorithm.
1218 Line: 1 Col: 49 Unexpected end tag (code). Ignored.
1219 #document
1220 | <html>
1221 | <head>
1222 | <body>
1223 | <wbr>
1224 | <strike>
1225 | <code>
1226 | <code>
1227 | <strike>
1228
1229 #data
1230 <title><meta></title><link><title><meta></title>
1231 #errors
1232 Line: 1 Col: 7 Unexpected start tag (title). Expected DOCTYPE.
1233 #document
1234 | <html>
1235 | <head>
1236 | <title>
1237 | "<meta>"
1238 | <link>
1239 | <title>
1240 | "<meta>"
1241 | <body>
1242
1243 #data
1244 <style><!--</style><meta><script>--><link></script>
1245 #errors
1246 Line: 1 Col: 7 Unexpected start tag (style). Expected DOCTYPE.
1247 Line: 1 Col: 51 Unexpected end of file. Expected end tag (style).
1248 #document
1249 | <html>
1250 | <head>
1251 | <style>
1252 | "<!--</style><meta><script>--><link></script>"
1253 | <body>
1254
1255 #data
1256 <head><meta></head><link>
1257 #errors
1258 Line: 1 Col: 6 Unexpected start tag (head). Expected DOCTYPE.
1259 Line: 1 Col: 25 Unexpected start tag (link) that can be in head. Moved.
1260 #document
1261 | <html>
1262 | <head>
1263 | <meta>
1264 | <link>
1265 | <body>
1266
1267 #data
1268 <table><tr><tr><td><td><span><th><span>X</table>
1269 #errors
1270 Line: 1 Col: 7 Unexpected start tag (table). Expected DOCTYPE.
1271 Line: 1 Col: 33 Got table cell end tag (td) while required end tags are missing.
1272 Line: 1 Col: 48 Got table cell end tag (th) while required end tags are missing.
1273 #document
1274 | <html>
1275 | <head>
1276 | <body>
1277 | <table>
1278 | <tbody>
1279 | <tr>
1280 | <tr>
1281 | <td>
1282 | <td>
1283 | <span>
1284 | <th>
1285 | <span>
1286 | "X"
1287
1288 #data
1289 <body><body><base><link><meta><title><p></title><body><p></body>
1290 #errors
1291 Line: 1 Col: 6 Unexpected start tag (body). Expected DOCTYPE.
1292 Line: 1 Col: 12 Unexpected start tag (body).
1293 Line: 1 Col: 54 Unexpected start tag (body).
1294 Line: 1 Col: 64 Unexpected end tag (p). Missing end tag (body).
1295 #document
1296 | <html>
1297 | <head>
1298 | <body>
1299 | <base>
1300 | <link>
1301 | <meta>
1302 | <title>
1303 | "<p>"
1304 | <p>
1305
1306 #data
1307 <textarea><p></textarea>
1308 #errors
1309 Line: 1 Col: 10 Unexpected start tag (textarea). Expected DOCTYPE.
1310 #document
1311 | <html>
1312 | <head>
1313 | <body>
1314 | <textarea>
1315 | "<p>"
1316
1317 #data
1318 <p><image></p>
1319 #errors
1320 Line: 1 Col: 3 Unexpected start tag (p). Expected DOCTYPE.
1321 Line: 1 Col: 10 Unexpected start tag (image). Treated as img.
1322 #document
1323 | <html>
1324 | <head>
1325 | <body>
1326 | <p>
1327 | <img>
1328
1329 #data
1330 <a><table><a></table><p><a><div><a>
1331 #errors
1332 Line: 1 Col: 3 Unexpected start tag (a). Expected DOCTYPE.
1333 Line: 1 Col: 13 Unexpected start tag (a) in table context caused voodoo mode.
1334 Line: 1 Col: 13 Unexpected start tag (a) implies end tag (a).
1335 Line: 1 Col: 13 End tag (a) violates step 1, paragraph 1 of the adoption agency algorithm.
1336 Line: 1 Col: 21 Unexpected end tag (table). Expected end tag (a).
1337 Line: 1 Col: 27 Unexpected start tag (a) implies end tag (a).
1338 Line: 1 Col: 27 End tag (a) violates step 1, paragraph 2 of the adoption agency algorithm.
1339 Line: 1 Col: 32 Unexpected end tag (p). Ignored.
1340 Line: 1 Col: 35 Unexpected start tag (a) implies end tag (a).
1341 Line: 1 Col: 35 End tag (a) violates step 1, paragraph 2 of the adoption agency algorithm.
1342 Line: 1 Col: 35 Expected closing tag. Unexpected end of file.
1343 #document
1344 | <html>
1345 | <head>
1346 | <body>
1347 | <a>
1348 | <a>
1349 | <table>
1350 | <p>
1351 | <a>
1352 | <div>
1353 | <a>
1354
1355 #data
1356 <head></p><meta><p>
1357 #errors
1358 Line: 1 Col: 6 Unexpected start tag (head). Expected DOCTYPE.
1359 Line: 1 Col: 10 Unexpected end tag (p). Ignored.
1360 #document
1361 | <html>
1362 | <head>
1363 | <body>
1364 | <p>
1365 | <meta>
1366 | <p>
1367
1368 #data
1369 <head></html><meta><p>
1370 #errors
1371 Line: 1 Col: 6 Unexpected start tag (head). Expected DOCTYPE.
1372 Line: 1 Col: 19 Unexpected start tag (meta). Expected end of file.
1373 Line: 1 Col: 19 Unexpected start tag token (meta) in the after body phase.
1374 #document
1375 | <html>
1376 | <head>
1377 | <body>
1378 | <meta>
1379 | <p>
1380
1381 #data
1382 <b><table><td><i></table>
1383 #errors
1384 Line: 1 Col: 3 Unexpected start tag (b). Expected DOCTYPE.
1385 Line: 1 Col: 14 Unexpected table cell start tag (td) in the table body phase.
1386 Line: 1 Col: 25 Got table cell end tag (td) while required end tags are missing.
1387 Line: 1 Col: 25 Expected closing tag. Unexpected end of file.
1388 #document
1389 | <html>
1390 | <head>
1391 | <body>
1392 | <b>
1393 | <table>
1394 | <tbody>
1395 | <tr>
1396 | <td>
1397 | <i>
1398
1399 #data
1400 <b><table><td></b><i></table>
1401 #errors
1402 Line: 1 Col: 3 Unexpected start tag (b). Expected DOCTYPE.
1403 Line: 1 Col: 14 Unexpected table cell start tag (td) in the table body phase.
1404 Line: 1 Col: 18 End tag (b) violates step 1, paragraph 1 of the adoption agency algorithm.
1405 Line: 1 Col: 29 Got table cell end tag (td) while required end tags are missing.
1406 Line: 1 Col: 29 Expected closing tag. Unexpected end of file.
1407 #document
1408 | <html>
1409 | <head>
1410 | <body>
1411 | <b>
1412 | <table>
1413 | <tbody>
1414 | <tr>
1415 | <td>
1416 | <i>
1417
1418 #data
1419 <h1><h2>
1420 #errors
1421 Line: 1 Col: 4 Unexpected start tag (h1). Expected DOCTYPE.
1422 Line: 1 Col: 8 Expected closing tag. Unexpected end of file.
1423 #document
1424 | <html>
1425 | <head>
1426 | <body>
1427 | <h1>
1428 | <h2>
1429
1430 #data
1431 <a><p><a></a></p></a>
1432 #errors
1433 Line: 1 Col: 3 Unexpected start tag (a). Expected DOCTYPE.
1434 Line: 1 Col: 9 Unexpected start tag (a) implies end tag (a).
1435 Line: 1 Col: 9 End tag (a) violates step 1, paragraph 3 of the adoption agency algorithm.
1436 Line: 1 Col: 21 End tag (a) violates step 1, paragraph 1 of the adoption agency algorithm.
1437 #document
1438 | <html>
1439 | <head>
1440 | <body>
1441 | <a>
1442 | <p>
1443 | <a>
1444 | <a>
1445
1446 #data
1447 <b><button></b></button></b>
1448 #errors
1449 Line: 1 Col: 3 Unexpected start tag (b). Expected DOCTYPE.
1450 Line: 1 Col: 15 End tag (b) violates step 1, paragraph 1 of the adoption agency algorithm.
1451 #document
1452 | <html>
1453 | <head>
1454 | <body>
1455 | <b>
1456 | <button>
1457
1458 #data
1459 <p><b><div><marquee></p></b></div>
1460 #errors
1461 Line: 1 Col: 3 Unexpected start tag (p). Expected DOCTYPE.
1462 Line: 1 Col: 11 Unexpected end tag (p). Ignored.
1463 Line: 1 Col: 24 Unexpected end tag (p). Ignored.
1464 Line: 1 Col: 28 End tag (b) violates step 1, paragraph 1 of the adoption agency algorithm.
1465 Line: 1 Col: 34 End tag (div) seen too early. Expected other end tag.
1466 Line: 1 Col: 34 Expected closing tag. Unexpected end of file.
1467 #document
1468 | <html>
1469 | <head>
1470 | <body>
1471 | <p>
1472 | <b>
1473 | <div>
1474 | <b>
1475 | <marquee>
1476 | <p>
1477
1478 #data
1479 <script></script></div><title></title><p><p>
1480 #errors
1481 Line: 1 Col: 8 Unexpected start tag (script). Expected DOCTYPE.
1482 Line: 1 Col: 23 Unexpected end tag (div). Ignored.
1483 #document
1484 | <html>
1485 | <head>
1486 | <script>
1487 | <title>
1488 | <body>
1489 | <p>
1490 | <p>
1491
1492 #data
1493 <p><hr></p>
1494 #errors
1495 Line: 1 Col: 3 Unexpected start tag (p). Expected DOCTYPE.
1496 Line: 1 Col: 11 Unexpected end tag (p). Ignored.
1497 #document
1498 | <html>
1499 | <head>
1500 | <body>
1501 | <p>
1502 | <hr>
1503 | <p>
1504
1505 #data
1506 <select><b><option><select><option></b></select>
1507 #errors
1508 Line: 1 Col: 8 Unexpected start tag (select). Expected DOCTYPE.
1509 Line: 1 Col: 11 Unexpected start tag token (b) in the select phase. Ignored.
1510 Line: 1 Col: 27 Unexpected select start tag in the select phase implies select start tag.
1511 Line: 1 Col: 35 Unexpected start tag option. Ignored.
1512 Line: 1 Col: 39 End tag (b) violates step 1, paragraph 1 of the adoption agency algorithm.
1513 Line: 1 Col: 48 Unexpected end tag (select). Ignored.
1514 #document
1515 | <html>
1516 | <head>
1517 | <body>
1518 | <select>
1519 | <option>
1520
1521 #data
1522 <html><head><title></title><body></body></html>
1523 #errors
1524 Line: 1 Col: 6 Unexpected start tag (html). Expected DOCTYPE.
1525 #document
1526 | <html>
1527 | <head>
1528 | <title>
1529 | <body>
1530
1531 #data
1532 <a><table><td><a><table></table><a></tr><a></table><a>
1533 #errors
1534 Line: 1 Col: 3 Unexpected start tag (a). Expected DOCTYPE.
1535 Line: 1 Col: 14 Unexpected table cell start tag (td) in the table body phase.
1536 Line: 1 Col: 35 Unexpected start tag (a) implies end tag (a).
1537 Line: 1 Col: 40 Got table cell end tag (td) while required end tags are missing.
1538 Line: 1 Col: 43 Unexpected start tag (a) in table context caused voodoo mode.
1539 Line: 1 Col: 43 Unexpected start tag (a) implies end tag (a).
1540 Line: 1 Col: 43 End tag (a) violates step 1, paragraph 1 of the adoption agency algorithm.
1541 Line: 1 Col: 54 Unexpected start tag (a) implies end tag (a).
1542 Line: 1 Col: 54 End tag (a) violates step 1, paragraph 2 of the adoption agency algorithm.
1543 Line: 1 Col: 54 Expected closing tag. Unexpected end of file.
1544 #document
1545 | <html>
1546 | <head>
1547 | <body>
1548 | <a>
1549 | <a>
1550 | <table>
1551 | <tbody>
1552 | <tr>
1553 | <td>
1554 | <a>
1555 | <table>
1556 | <a>
1557 | <a>
1558
1559 #data
1560 <ul><li></li><div><li></div><li><li><div><li><address><li><b><em></b><li></ul>
1561 #errors
1562 Line: 1 Col: 4 Unexpected start tag (ul). Expected DOCTYPE.
1563 Line: 1 Col: 45 Missing end tag (div, li).
1564 Line: 1 Col: 58 Missing end tag (address, li).
1565 Line: 1 Col: 69 End tag (b) violates step 1, paragraph 3 of the adoption agency algorithm.
1566 #document
1567 | <html>
1568 | <head>
1569 | <body>
1570 | <ul>
1571 | <li>
1572 | <div>
1573 | <li>
1574 | <li>
1575 | <li>
1576 | <div>
1577 | <li>
1578 | <address>
1579 | <li>
1580 | <b>
1581 | <em>
1582 | <li>
1583
1584 #data
1585 <frameset><frame><frameset><frame></frameset><noframes></noframes></frameset>
1586 #errors
1587 Line: 1 Col: 10 Unexpected start tag (frameset). Expected DOCTYPE.
1588 #document
1589 | <html>
1590 | <head>
1591 | <frameset>
1592 | <frame>
1593 | <frameset>
1594 | <frame>
1595 | <noframes>
1596
1597 #data
1598 <body><frame></frame></frame><frameset><frame><frameset><frame></frameset><noframes></frameset><noframes>
1599 #errors
1600 Line: 1 Col: 6 Unexpected start tag (body). Expected DOCTYPE.
1601 Line: 1 Col: 13 Unexpected start tag frame. Ignored.
1602 Line: 1 Col: 21 This element (frame) has no end tag.
1603 Line: 1 Col: 29 This element (frame) has no end tag.
1604 Line: 1 Col: 39 Unexpected start tag frameset. Ignored.
1605 Line: 1 Col: 46 Unexpected start tag frame. Ignored.
1606 Line: 1 Col: 56 Unexpected start tag frameset. Ignored.
1607 Line: 1 Col: 63 Unexpected start tag frame. Ignored.
1608 Line: 1 Col: 74 Unexpected end tag (frameset). Ignored.
1609 Line: 1 Col: 105 Expected closing tag. Unexpected end of file.
1610 #document
1611 | <html>
1612 | <head>
1613 | <body>
1614 | <noframes>
1615 | "</frameset><noframes>"
1616
1617 #data
1618 <h1><table><td><h3></table><h3></h1>
1619 #errors
1620 Line: 1 Col: 4 Unexpected start tag (h1). Expected DOCTYPE.
1621 Line: 1 Col: 15 Unexpected table cell start tag (td) in the table body phase.
1622 Line: 1 Col: 27 Got table cell end tag (td) while required end tags are missing.
1623 Line: 1 Col: 36 End tag (h1) seen too early. Expected other end tag.
1624 Line: 1 Col: 36 Expected closing tag. Unexpected end of file.
1625 #document
1626 | <html>
1627 | <head>
1628 | <body>
1629 | <h1>
1630 | <table>
1631 | <tbody>
1632 | <tr>
1633 | <td>
1634 | <h3>
1635 | <h3>
1636
1637 #data
1638 <table><colgroup><col><colgroup><col><col><col><colgroup><col><col><thead><tr><td></table>
1639 #errors
1640 Line: 1 Col: 7 Unexpected start tag (table). Expected DOCTYPE.
1641 #document
1642 | <html>
1643 | <head>
1644 | <body>
1645 | <table>
1646 | <colgroup>
1647 | <col>
1648 | <colgroup>
1649 | <col>
1650 | <col>
1651 | <col>
1652 | <colgroup>
1653 | <col>
1654 | <col>
1655 | <thead>
1656 | <tr>
1657 | <td>
1658
1659 #data
1660 <table><col><tbody><col><tr><col><td><col></table><col>
1661 #errors
1662 Line: 1 Col: 7 Unexpected start tag (table). Expected DOCTYPE.
1663 Line: 1 Col: 37 Unexpected table cell start tag (td) in the table body phase.
1664 Line: 1 Col: 55 Unexpected start tag col. Ignored.
1665 #document
1666 | <html>
1667 | <head>
1668 | <body>
1669 | <table>
1670 | <colgroup>
1671 | <col>
1672 | <tbody>
1673 | <colgroup>
1674 | <col>
1675 | <tbody>
1676 | <tr>
1677 | <colgroup>
1678 | <col>
1679 | <tbody>
1680 | <tr>
1681 | <td>
1682 | <colgroup>
1683 | <col>
1684
1685 #data
1686 <table><colgroup><tbody><colgroup><tr><colgroup><td><colgroup></table><colgroup>
1687 #errors
1688 Line: 1 Col: 7 Unexpected start tag (table). Expected DOCTYPE.
1689 Line: 1 Col: 52 Unexpected table cell start tag (td) in the table body phase.
1690 Line: 1 Col: 80 Unexpected start tag colgroup. Ignored.
1691 #document
1692 | <html>
1693 | <head>
1694 | <body>
1695 | <table>
1696 | <colgroup>
1697 | <tbody>
1698 | <colgroup>
1699 | <tbody>
1700 | <tr>
1701 | <colgroup>
1702 | <tbody>
1703 | <tr>
1704 | <td>
1705 | <colgroup>
1706
1707 #data
1708 </strong></b></em></i></u></strike></s></blink></tt></pre></big></small></font></select></h1></h2></h3></h4></h5></h6></body></br></a></img></title></span></style></script></table></th></td></tr></frame></area></link></param></hr></input></col></base></meta></basefont></bgsound></embed></spacer></p></dd></dt></caption></colgroup></tbody></tfoot></thead></address></blockquote></center></dir></div></dl></fieldset></listing></menu></ol></ul></li></nobr></wbr></form></button></marquee></object></html></frameset></head></iframe></image></isindex></noembed></noframes></noscript></optgroup></option></plaintext></textarea>
1709 #errors
1710 Line: 1 Col: 9 Unexpected end tag (strong). Expected DOCTYPE.
1711 Line: 1 Col: 9 Unexpected end tag (strong) after the (implied) root element.
1712 Line: 1 Col: 13 Unexpected end tag (b) after the (implied) root element.
1713 Line: 1 Col: 18 Unexpected end tag (em) after the (implied) root element.
1714 Line: 1 Col: 22 Unexpected end tag (i) after the (implied) root element.
1715 Line: 1 Col: 26 Unexpected end tag (u) after the (implied) root element.
1716 Line: 1 Col: 35 Unexpected end tag (strike) after the (implied) root element.
1717 Line: 1 Col: 39 Unexpected end tag (s) after the (implied) root element.
1718 Line: 1 Col: 47 Unexpected end tag (blink) after the (implied) root element.
1719 Line: 1 Col: 52 Unexpected end tag (tt) after the (implied) root element.
1720 Line: 1 Col: 58 Unexpected end tag (pre) after the (implied) root element.
1721 Line: 1 Col: 64 Unexpected end tag (big) after the (implied) root element.
1722 Line: 1 Col: 72 Unexpected end tag (small) after the (implied) root element.
1723 Line: 1 Col: 79 Unexpected end tag (font) after the (implied) root element.
1724 Line: 1 Col: 88 Unexpected end tag (select) after the (implied) root element.
1725 Line: 1 Col: 93 Unexpected end tag (h1) after the (implied) root element.
1726 Line: 1 Col: 98 Unexpected end tag (h2) after the (implied) root element.
1727 Line: 1 Col: 103 Unexpected end tag (h3) after the (implied) root element.
1728 Line: 1 Col: 108 Unexpected end tag (h4) after the (implied) root element.
1729 Line: 1 Col: 113 Unexpected end tag (h5) after the (implied) root element.
1730 Line: 1 Col: 118 Unexpected end tag (h6) after the (implied) root element.
1731 Line: 1 Col: 130 Unexpected end tag token (br) in the after body phase.
1732 Line: 1 Col: 130 Unexpected end tag (br). Treated as br element.
1733 Line: 1 Col: 134 End tag (a) violates step 1, paragraph 1 of the adoption agency algorithm.
1734 Line: 1 Col: 140 This element (img) has no end tag.
1735 Line: 1 Col: 148 Unexpected end tag (title). Ignored.
1736 Line: 1 Col: 155 Unexpected end tag (span). Ignored.
1737 Line: 1 Col: 163 Unexpected end tag (style). Ignored.
1738 Line: 1 Col: 172 Unexpected end tag (script). Ignored.
1739 Line: 1 Col: 180 Unexpected end tag (table). Ignored.
1740 Line: 1 Col: 185 Unexpected end tag (th). Ignored.
1741 Line: 1 Col: 190 Unexpected end tag (td). Ignored.
1742 Line: 1 Col: 195 Unexpected end tag (tr). Ignored.
1743 Line: 1 Col: 203 This element (frame) has no end tag.
1744 Line: 1 Col: 210 This element (area) has no end tag.
1745 Line: 1 Col: 217 Unexpected end tag (link). Ignored.
1746 Line: 1 Col: 225 This element (param) has no end tag.
1747 Line: 1 Col: 230 This element (hr) has no end tag.
1748 Line: 1 Col: 238 This element (input) has no end tag.
1749 Line: 1 Col: 244 Unexpected end tag (col). Ignored.
1750 Line: 1 Col: 251 Unexpected end tag (base). Ignored.
1751 Line: 1 Col: 258 Unexpected end tag (meta). Ignored.
1752 Line: 1 Col: 269 This element (basefont) has no end tag.
1753 Line: 1 Col: 279 This element (bgsound) has no end tag.
1754 Line: 1 Col: 287 This element (embed) has no end tag.
1755 Line: 1 Col: 296 This element (spacer) has no end tag.
1756 Line: 1 Col: 300 Unexpected end tag (p). Ignored.
1757 Line: 1 Col: 305 End tag (dd) seen too early. Expected other end tag.
1758 Line: 1 Col: 310 End tag (dt) seen too early. Expected other end tag.
1759 Line: 1 Col: 320 Unexpected end tag (caption). Ignored.
1760 Line: 1 Col: 331 Unexpected end tag (colgroup). Ignored.
1761 Line: 1 Col: 339 Unexpected end tag (tbody). Ignored.
1762 Line: 1 Col: 347 Unexpected end tag (tfoot). Ignored.
1763 Line: 1 Col: 355 Unexpected end tag (thead). Ignored.
1764 Line: 1 Col: 365 End tag (address) seen too early. Expected other end tag.
1765 Line: 1 Col: 378 End tag (blockquote) seen too early. Expected other end tag.
1766 Line: 1 Col: 387 End tag (center) seen too early. Expected other end tag.
1767 Line: 1 Col: 393 Unexpected end tag (dir). Ignored.
1768 Line: 1 Col: 399 End tag (div) seen too early. Expected other end tag.
1769 Line: 1 Col: 404 End tag (dl) seen too early. Expected other end tag.
1770 Line: 1 Col: 415 End tag (fieldset) seen too early. Expected other end tag.
1771 Line: 1 Col: 425 End tag (listing) seen too early. Expected other end tag.
1772 Line: 1 Col: 432 End tag (menu) seen too early. Expected other end tag.
1773 Line: 1 Col: 437 End tag (ol) seen too early. Expected other end tag.
1774 Line: 1 Col: 442 End tag (ul) seen too early. Expected other end tag.
1775 Line: 1 Col: 447 End tag (li) seen too early. Expected other end tag.
1776 Line: 1 Col: 454 End tag (nobr) violates step 1, paragraph 1 of the adoption agency algorithm.
1777 Line: 1 Col: 460 This element (wbr) has no end tag.
1778 Line: 1 Col: 467 End tag (form) seen too early. Ignored.
1779 Line: 1 Col: 476 End tag (button) seen too early. Expected other end tag.
1780 Line: 1 Col: 486 End tag (marquee) seen too early. Expected other end tag.
1781 Line: 1 Col: 495 End tag (object) seen too early. Expected other end tag.
1782 Line: 1 Col: 513 Unexpected end tag (frameset). Expected end of file.
1783 Line: 1 Col: 513 Unexpected end tag token (frameset) in the after body phase.
1784 Line: 1 Col: 513 Unexpected end tag (frameset). Ignored.
1785 Line: 1 Col: 520 Unexpected end tag (head). Ignored.
1786 Line: 1 Col: 529 Unexpected end tag (iframe). Ignored.
1787 Line: 1 Col: 537 This element (image) has no end tag.
1788 Line: 1 Col: 547 This element (isindex) has no end tag.
1789 Line: 1 Col: 557 Unexpected end tag (noembed). Ignored.
1790 Line: 1 Col: 568 Unexpected end tag (noframes). Ignored.
1791 Line: 1 Col: 579 Unexpected end tag (noscript). Ignored.
1792 Line: 1 Col: 590 Unexpected end tag (optgroup). Ignored.
1793 Line: 1 Col: 599 Unexpected end tag (option). Ignored.
1794 Line: 1 Col: 611 Unexpected end tag (plaintext). Ignored.
1795 Line: 1 Col: 622 Unexpected end tag (textarea). Ignored.
1796 #document
1797 | <html>
1798 | <head>
1799 | <body>
1800 | <br>
1801 | <p>
1802
1803 #data
1804 <table><tr></strong></b></em></i></u></strike></s></blink></tt></pre></big></small></font></select></h1></h2></h3></h4></h5></h6></body></br></a></img></title></span></style></script></table></th></td></tr></frame></area></link></param></hr></input></col></base></meta></basefont></bgsound></embed></spacer></p></dd></dt></caption></colgroup></tbody></tfoot></thead></address></blockquote></center></dir></div></dl></fieldset></listing></menu></ol></ul></li></nobr></wbr></form></button></marquee></object></html></frameset></head></iframe></image></isindex></noembed></noframes></noscript></optgroup></option></plaintext></textarea>
1805 #errors
1806 Line: 1 Col: 7 Unexpected start tag (table). Expected DOCTYPE.
1807 Line: 1 Col: 20 Unexpected end tag (strong) in table context caused voodoo mode.
1808 Line: 1 Col: 20 End tag (strong) violates step 1, paragraph 1 of the adoption agency algorithm.
1809 Line: 1 Col: 24 End tag (b) violates step 1, paragraph 1 of the adoption agency algorithm.
1810 Line: 1 Col: 29 End tag (em) violates step 1, paragraph 1 of the adoption agency algorithm.
1811 Line: 1 Col: 33 End tag (i) violates step 1, paragraph 1 of the adoption agency algorithm.
1812 Line: 1 Col: 37 End tag (u) violates step 1, paragraph 1 of the adoption agency algorithm.
1813 Line: 1 Col: 46 End tag (strike) violates step 1, paragraph 1 of the adoption agency algorithm.
1814 Line: 1 Col: 50 End tag (s) violates step 1, paragraph 1 of the adoption agency algorithm.
1815 Line: 1 Col: 58 Unexpected end tag (blink). Ignored.
1816 Line: 1 Col: 63 End tag (tt) violates step 1, paragraph 1 of the adoption agency algorithm.
1817 Line: 1 Col: 69 End tag (pre) seen too early. Expected other end tag.
1818 Line: 1 Col: 75 End tag (big) violates step 1, paragraph 1 of the adoption agency algorithm.
1819 Line: 1 Col: 83 End tag (small) violates step 1, paragraph 1 of the adoption agency algorithm.
1820 Line: 1 Col: 90 End tag (font) violates step 1, paragraph 1 of the adoption agency algorithm.
1821 Line: 1 Col: 99 Unexpected end tag (select). Ignored.
1822 Line: 1 Col: 104 End tag (h1) seen too early. Expected other end tag.
1823 Line: 1 Col: 109 End tag (h2) seen too early. Expected other end tag.
1824 Line: 1 Col: 114 End tag (h3) seen too early. Expected other end tag.
1825 Line: 1 Col: 119 End tag (h4) seen too early. Expected other end tag.
1826 Line: 1 Col: 124 End tag (h5) seen too early. Expected other end tag.
1827 Line: 1 Col: 129 End tag (h6) seen too early. Expected other end tag.
1828 Line: 1 Col: 136 Unexpected end tag (body) in the table row phase. Ignored.
1829 Line: 1 Col: 141 Unexpected end tag (br). Treated as br element.
1830 Line: 1 Col: 145 End tag (a) violates step 1, paragraph 1 of the adoption agency algorithm.
1831 Line: 1 Col: 151 This element (img) has no end tag.
1832 Line: 1 Col: 159 Unexpected end tag (title). Ignored.
1833 Line: 1 Col: 166 Unexpected end tag (span). Ignored.
1834 Line: 1 Col: 174 Unexpected end tag (style). Ignored.
1835 Line: 1 Col: 183 Unexpected end tag (script). Ignored.
1836 Line: 1 Col: 196 Unexpected end tag (th). Ignored.
1837 Line: 1 Col: 201 Unexpected end tag (td). Ignored.
1838 Line: 1 Col: 206 Unexpected end tag (tr). Ignored.
1839 Line: 1 Col: 214 This element (frame) has no end tag.
1840 Line: 1 Col: 221 This element (area) has no end tag.
1841 Line: 1 Col: 228 Unexpected end tag (link). Ignored.
1842 Line: 1 Col: 236 This element (param) has no end tag.
1843 Line: 1 Col: 241 This element (hr) has no end tag.
1844 Line: 1 Col: 249 This element (input) has no end tag.
1845 Line: 1 Col: 255 Unexpected end tag (col). Ignored.
1846 Line: 1 Col: 262 Unexpected end tag (base). Ignored.
1847 Line: 1 Col: 269 Unexpected end tag (meta). Ignored.
1848 Line: 1 Col: 280 This element (basefont) has no end tag.
1849 Line: 1 Col: 290 This element (bgsound) has no end tag.
1850 Line: 1 Col: 298 This element (embed) has no end tag.
1851 Line: 1 Col: 307 This element (spacer) has no end tag.
1852 Line: 1 Col: 311 Unexpected end tag (p). Ignored.
1853 Line: 1 Col: 316 End tag (dd) seen too early. Expected other end tag.
1854 Line: 1 Col: 321 End tag (dt) seen too early. Expected other end tag.
1855 Line: 1 Col: 331 Unexpected end tag (caption). Ignored.
1856 Line: 1 Col: 342 Unexpected end tag (colgroup). Ignored.
1857 Line: 1 Col: 350 Unexpected end tag (tbody). Ignored.
1858 Line: 1 Col: 358 Unexpected end tag (tfoot). Ignored.
1859 Line: 1 Col: 366 Unexpected end tag (thead). Ignored.
1860 Line: 1 Col: 376 End tag (address) seen too early. Expected other end tag.
1861 Line: 1 Col: 389 End tag (blockquote) seen too early. Expected other end tag.
1862 Line: 1 Col: 398 End tag (center) seen too early. Expected other end tag.
1863 Line: 1 Col: 404 Unexpected end tag (dir). Ignored.
1864 Line: 1 Col: 410 End tag (div) seen too early. Expected other end tag.
1865 Line: 1 Col: 415 End tag (dl) seen too early. Expected other end tag.
1866 Line: 1 Col: 426 End tag (fieldset) seen too early. Expected other end tag.
1867 Line: 1 Col: 436 End tag (listing) seen too early. Expected other end tag.
1868 Line: 1 Col: 443 End tag (menu) seen too early. Expected other end tag.
1869 Line: 1 Col: 448 End tag (ol) seen too early. Expected other end tag.
1870 Line: 1 Col: 453 End tag (ul) seen too early. Expected other end tag.
1871 Line: 1 Col: 458 End tag (li) seen too early. Expected other end tag.
1872 Line: 1 Col: 465 End tag (nobr) violates step 1, paragraph 1 of the adoption agency algorithm.
1873 Line: 1 Col: 471 This element (wbr) has no end tag.
1874 Line: 1 Col: 478 End tag (form) seen too early. Ignored.
1875 Line: 1 Col: 487 End tag (button) seen too early. Expected other end tag.
1876 Line: 1 Col: 497 End tag (marquee) seen too early. Expected other end tag.
1877 Line: 1 Col: 506 End tag (object) seen too early. Expected other end tag.
1878 Line: 1 Col: 524 Unexpected end tag (frameset). Expected end of file.
1879 Line: 1 Col: 524 Unexpected end tag token (frameset) in the after body phase.
1880 Line: 1 Col: 524 Unexpected end tag (frameset). Ignored.
1881 Line: 1 Col: 531 Unexpected end tag (head). Ignored.
1882 Line: 1 Col: 540 Unexpected end tag (iframe). Ignored.
1883 Line: 1 Col: 548 This element (image) has no end tag.
1884 Line: 1 Col: 558 This element (isindex) has no end tag.
1885 Line: 1 Col: 568 Unexpected end tag (noembed). Ignored.
1886 Line: 1 Col: 579 Unexpected end tag (noframes). Ignored.
1887 Line: 1 Col: 590 Unexpected end tag (noscript). Ignored.
1888 Line: 1 Col: 601 Unexpected end tag (optgroup). Ignored.
1889 Line: 1 Col: 610 Unexpected end tag (option). Ignored.
1890 Line: 1 Col: 622 Unexpected end tag (plaintext). Ignored.
1891 Line: 1 Col: 633 Unexpected end tag (textarea). Ignored.
1892 #document
1893 | <html>
1894 | <head>
1895 | <body>
1896 | <br>
1897 | <table>
1898 | <tbody>
1899 | <tr>
1900 | <p>
1901
1902 #data
1903 <frameset>
1904 #errors
1905 Line: 1 Col: 10 Unexpected start tag (frameset). Expected DOCTYPE.
1906 Line: 1 Col: 10 Expected closing tag. Unexpected end of file.
1907 #document
1908 | <html>
1909 | <head>
1910 | <frameset>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.24