/[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.2 - (hide annotations) (download)
Sat Jun 23 02:26:52 2007 UTC (18 years ago) by wakaba
Branch: MAIN
Changes since 1.1: +24 -23 lines
++ whatpm/t/ChangeLog	23 Jun 2007 02:21:24 -0000
2007-06-23  Wakaba  <wakaba@suika.fam.cx>

	* Makefile, HTML-tokenizer.t, HTML-tree.t: New test
	files are added.

	* tokenize/, tree-construction/: Sync with latest html5lib
	trunk.

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24