/[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.9 - (hide annotations) (download)
Sat Oct 4 17:16:02 2008 UTC (16 years, 9 months ago) by wakaba
Branch: MAIN
CVS Tags: HEAD
Changes since 1.8: +152 -118 lines
++ whatpm/t/ChangeLog	4 Oct 2008 17:15:55 -0000
2008-10-05  Wakaba  <wakaba@suika.fam.cx>

	* HTML-tree.t: New test files added.

	* Makefile: New test files added.

++ whatpm/Whatpm/ChangeLog	4 Oct 2008 17:15:20 -0000
2008-10-05  Wakaba  <wakaba@suika.fam.cx>

	* HTML.pm.src: An AAA bug fixed.

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24