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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.6 - (hide annotations) (download)
Wed Oct 17 10:46:28 2007 UTC (17 years, 8 months ago) by wakaba
Branch: MAIN
Changes since 1.5: +431 -1 lines
++ whatpm/Whatpm/ChangeLog	17 Oct 2007 10:45:53 -0000
	* Makefile (clean): New rule.

	* NanoDOM.pm (public_id, system_id): New attributes.

2007-10-17  Wakaba  <wakaba@suika.fam.cx>

1 wakaba 1.1 #data
2     <!doctype html></head> <head>
3     #errors
4 wakaba 1.3 Unexpected start tag head. Ignored.
5 wakaba 1.1 #document
6     | <!DOCTYPE html>
7     | <html>
8     | <head>
9     | " "
10     | <body>
11    
12     #data
13     <!doctype html></html> <head>
14     #errors
15 wakaba 1.3 Unexpected start tag head.
16     Unexpected start tag head in after body phase.
17     Unexpected start tag head. Ignored.
18 wakaba 1.1 #document
19     | <!DOCTYPE html>
20     | <html>
21     | <head>
22     | <body>
23     | " "
24    
25     #data
26     <!doctype html></body><meta>
27     #errors
28 wakaba 1.3 Unexpected meta element in after body phase.
29 wakaba 1.1 #document
30     | <!DOCTYPE html>
31     | <html>
32     | <head>
33     | <body>
34     | <meta>
35 wakaba 1.2
36     #data
37     <!doctype HTml><form><div></form><div>
38     #errors
39     Form end tag ignored.
40     Unexpected end of file.
41     #document
42     | <!DOCTYPE HTml>
43     | <html>
44     | <head>
45     | <body>
46     | <form>
47     | <div>
48     | <div>
49    
50     #data
51     <!doctype HTml><title>&amp;</title>
52     #errors
53     #document
54     | <!DOCTYPE HTml>
55     | <html>
56     | <head>
57     | <title>
58     | "&"
59     | <body>
60    
61     #data
62     <!doctype HTml><title><!--&amp;--></title>
63     #errors
64     #document
65     | <!DOCTYPE HTml>
66     | <html>
67     | <head>
68     | <title>
69     | "<!--&amp;-->"
70 wakaba 1.3 | <body>
71    
72     #data
73     <!doctype>
74     #errors
75     No space after "doctype"
76     Unexpected ">"
77     Incorrect doctype
78     #document
79 wakaba 1.4 | <!DOCTYPE >
80 wakaba 1.3 | <html>
81     | <head>
82     | <body>
83    
84     #data
85     <!---x
86     #errors
87     End of file in comment
88     End of file before doctype
89     #document
90     | <!-- -x -->
91     | <html>
92     | <head>
93 wakaba 1.2 | <body>
94 wakaba 1.5
95     #data
96     <body>
97     <div>
98     #errors
99     Unexpected start tag (body)
100     Expected closing tag. Unexpected end of file
101     #document-fragment
102     div
103     #document
104     | "
105     "
106     | <div>
107    
108     #data
109     <frameset></frameset>
110     foo
111     #errors
112     Unexpected start tag (frameset). Expected DOCTYPE.
113     Unexpected non-space characters in the after frameset phase. Ignored.
114     #document
115     | <html>
116     | <head>
117     | <frameset>
118     | "
119     "
120    
121     #data
122     <frameset></frameset>
123     <noframes>
124     #errors
125     Unexpected start tag (frameset). Expected DOCTYPE.
126     Expected closing tag. Unexpected end of file.
127     #document
128     | <html>
129     | <head>
130     | <frameset>
131     | "
132     "
133     | <noframes>
134    
135     #data
136     <frameset></frameset>
137     <div>
138     #errors
139     Unexpected start tag (frameset). Expected DOCTYPE.
140     Unexpected start tag (div) in the after frameset phase. Ignored.
141     #document
142     | <html>
143     | <head>
144     | <frameset>
145     | "
146     "
147    
148     #data
149     <frameset></frameset>
150     </html>
151     #errors
152     Unexpected start tag (frameset). Expected DOCTYPE.
153     #document
154     | <html>
155     | <head>
156     | <frameset>
157     | "
158     "
159    
160     #data
161     <frameset></frameset>
162     </div>
163     #errors
164     Unexpected start tag (frameset). Expected DOCTYPE.
165     Unexpected end tag (div) in the after frameset phase. Ignored.
166     #document
167     | <html>
168     | <head>
169     | <frameset>
170     | "
171 wakaba 1.6 "
172    
173     #data
174     <form><form>
175     #errors
176     Unexpected start tag (form). Expected DOCTYPE.
177     Unexpected start tag (form).
178     Expected closing tag. Unexpected end of file.
179     #document
180     | <html>
181     | <head>
182     | <body>
183     | <form>
184    
185     #data
186     <button><button>
187     #errors
188     Unexpected start tag (button). Expected DOCTYPE.
189     Unexpected start tag (button) implies end tag (button).
190     Expected closing tag. Unexpected end of file.
191     #document
192     | <html>
193     | <head>
194     | <body>
195     | <button>
196     | <button>
197    
198     #data
199     <table><tr><td></th>
200     #errors
201     Unexpected start tag (table). Expected DOCTYPE.
202     Unexpected end tag (th). Ignored.
203     Expected closing tag. Unexpected end of file.
204     #document
205     | <html>
206     | <head>
207     | <body>
208     | <table>
209     | <tbody>
210     | <tr>
211     | <td>
212    
213     #data
214     <table><caption><td>
215     #errors
216     Unexpected start tag (table). Expected DOCTYPE.
217     Unexpected end tag (td). Ignored.
218     Unexpected table cell start tag (td) in the table body phase.
219     Expected closing tag. Unexpected end of file.
220     #document
221     | <html>
222     | <head>
223     | <body>
224     | <table>
225     | <caption>
226     | <tbody>
227     | <tr>
228     | <td>
229    
230     #data
231     <table><caption><div>
232     #errors
233     Unexpected start tag (table). Expected DOCTYPE.
234     Expected closing tag. Unexpected end of file.
235     #document
236     | <html>
237     | <head>
238     | <body>
239     | <table>
240     | <caption>
241     | <div>
242    
243     #data
244     </caption><div>
245     #document-fragment
246     caption
247     #errors
248     Unexpected end tag (caption). Ignored.
249     Expected closing tag. Unexpected end of file.
250     #document
251     | <div>
252    
253     #data
254     <table><caption><div></caption>
255     #errors
256     Unexpected start tag (table). Expected DOCTYPE.
257     Unexpected end tag (caption). Missing end tag (div).
258     Expected closing tag. Unexpected end of file.
259     #document
260     | <html>
261     | <head>
262     | <body>
263     | <table>
264     | <caption>
265     | <div>
266    
267     #data
268     <table><caption></table>
269     #errors
270     Unexpected start tag (table). Expected DOCTYPE.
271     Unexpected end table tag in caption. Generates implied end caption.
272     #document
273     | <html>
274     | <head>
275     | <body>
276     | <table>
277     | <caption>
278    
279     #data
280     </table><div>
281     #document-fragment
282     caption
283     #errors
284     Unexpected end table tag in caption. Generates implied end caption.
285     Unexpected end tag (caption). Ignored.
286     Expected closing tag. Unexpected end of file.
287     #document
288     | <div>
289    
290     #data
291     <table><caption></body></col></colgroup></html></tbody></td></tfoot></th></thead></tr>
292     #errors
293     Unexpected start tag (table). Expected DOCTYPE.
294     Unexpected end tag (body). Ignored.
295     Unexpected end tag (col). Ignored.
296     Unexpected end tag (colgroup). Ignored.
297     Unexpected end tag (html). Ignored.
298     Unexpected end tag (tbody). Ignored.
299     Unexpected end tag (td). Ignored.
300     Unexpected end tag (tfoot). Ignored.
301     Unexpected end tag (th). Ignored.
302     Unexpected end tag (thead). Ignored.
303     Unexpected end tag (tr). Ignored.
304     Expected closing tag. Unexpected end of file.
305     #document
306     | <html>
307     | <head>
308     | <body>
309     | <table>
310     | <caption>
311    
312     #data
313     <table><caption><div></div>
314     #errors
315     Unexpected start tag (table). Expected DOCTYPE.
316     Expected closing tag. Unexpected end of file.
317     #document
318     | <html>
319     | <head>
320     | <body>
321     | <table>
322     | <caption>
323     | <div>
324    
325     #data
326     <table><tr><td></body></caption></col></colgroup></html>
327     #errors
328     Unexpected start tag (table). Expected DOCTYPE.
329     Unexpected end tag (body). Ignored.
330     Unexpected end tag (caption). Ignored.
331     Unexpected end tag (col). Ignored.
332     Unexpected end tag (colgroup). Ignored.
333     Unexpected end tag (html). Ignored.
334     Expected closing tag. Unexpected end of file.
335     #document
336     | <html>
337     | <head>
338     | <body>
339     | <table>
340     | <tbody>
341     | <tr>
342     | <td>
343    
344     #data
345     </table></tbody></tfoot></thead></tr><div>
346     #document-fragment
347     td
348     #errors
349     Unexpected end tag (table). Ignored.
350     Unexpected end tag (tbody). Ignored.
351     Unexpected end tag (tfoot). Ignored.
352     Unexpected end tag (thead). Ignored.
353     Unexpected end tag (tr). Ignored.
354     Expected closing tag. Unexpected end of file.
355     #document
356     | <div>
357    
358     #data
359     <table><colgroup>foo
360     #errors
361     Unexpected start tag (table). Expected DOCTYPE.
362     Unexpected non-space characters in table context caused voodoo mode.
363     Expected closing tag. Unexpected end of file.
364     #document
365     | <html>
366     | <head>
367     | <body>
368     | "foo"
369     | <table>
370     | <colgroup>
371    
372     #data
373     foo<col>
374     #document-fragment
375     colgroup
376     #errors
377     Unexpected end tag (colgroup). Ignored.
378     #document
379     | <col>
380    
381     #data
382     <table><colgroup></col>
383     #errors
384     Unexpected start tag (table). Expected DOCTYPE.
385     This element (col) has no end tag.
386     Expected closing tag. Unexpected end of file.
387     #document
388     | <html>
389     | <head>
390     | <body>
391     | <table>
392     | <colgroup>
393    
394     #data
395     <frameset><div>
396     #errors
397     Unexpected start tag (frameset). Expected DOCTYPE.
398     Unexpected start tag token (div) in the frameset phase. Ignored.
399     Expected closing tag. Unexpected end of file.
400     #document
401     | <html>
402     | <head>
403     | <frameset>
404    
405     #data
406     </frameset><frame>
407     #document-fragment
408     frameset
409     #errors
410     Unexpected end tag token (frameset) in the frameset phase (innerHTML).
411     #document
412     | <frame>
413    
414     #data
415     <frameset></div>
416     #errors
417     Unexpected start tag (frameset). Expected DOCTYPE.
418     Unexpected end tag token (div) in the frameset phase. Ignored.
419     Expected closing tag. Unexpected end of file.
420     #document
421     | <html>
422     | <head>
423     | <frameset>
424    
425     #data
426     </body><div>
427     #document-fragment
428     body
429     #errors
430     Unexpected end tag (body). Ignored.
431     Expected closing tag. Unexpected end of file.
432     #document
433     | <div>
434    
435     #data
436     <table><tr><div>
437     #errors
438     Unexpected start tag (table). Expected DOCTYPE.
439     Unexpected start tag (div) in table context caused voodoo mode.
440     Expected closing tag. Unexpected end of file.
441     #document
442     | <html>
443     | <head>
444     | <body>
445     | <div>
446     | <table>
447     | <tbody>
448     | <tr>
449    
450     #data
451     </tr><td>
452     #document-fragment
453     tr
454     #errors
455     Unexpected end tag (tr). Ignored.
456     #document
457     | <td>
458    
459     #data
460     </tbody></tfoot></thead><td>
461     #document-fragment
462     tr
463     #errors
464     Unexpected end tag (tbody). Ignored.
465     Unexpected end tag (tfoot). Ignored.
466     Unexpected end tag (thead). Ignored.
467     #document
468     | <td>
469    
470     #data
471     <table><tr><div><td>
472     #errors
473     Unexpected start tag (table). Expected DOCTYPE.
474     Unexpected start tag (div) in table context caused voodoo mode.
475     Unexpected implied end tag (div) in the table row phase.
476     Expected closing tag. Unexpected end of file.
477     #document
478     | <html>
479     | <head>
480     | <body>
481     | <div>
482     | <table>
483     | <tbody>
484     | <tr>
485     | <td>
486    
487     #data
488     <caption><col><colgroup><tbody><tfoot><thead><tr>
489     #document-fragment
490     tbody
491     #errors
492     Unexpected start tag (caption).
493     Unexpected start tag (col).
494     Unexpected start tag (colgroup).
495     Unexpected start tag (tbody).
496     Unexpected start tag (tfoot).
497     Unexpected start tag (thead).
498     #document
499     | <tr>
500    
501     #data
502     <table><tbody></thead>
503     #errors
504     Unexpected start tag (table). Expected DOCTYPE.
505     Unexpected end tag (thead) in the table body phase. Ignored.
506     Expected closing tag. Unexpected end of file.
507     #document
508     | <html>
509     | <head>
510     | <body>
511     | <table>
512     | <tbody>
513    
514     #data
515     </table><tr>
516     #document-fragment
517     tbody
518     #errors
519     Unexpected end tag (table). Ignored.
520     #document
521     | <tr>
522    
523     #data
524     <table><tbody></body></caption></col></colgroup></html></td></th></tr>
525     #errors
526     Unexpected start tag (table). Expected DOCTYPE.
527     Unexpected end tag (body) in the table body phase. Ignored.
528     Unexpected end tag (caption) in the table body phase. Ignored.
529     Unexpected end tag (col) in the table body phase. Ignored.
530     Unexpected end tag (colgroup) in the table body phase. Ignored.
531     Unexpected end tag (html) in the table body phase. Ignored.
532     Unexpected end tag (td) in the table body phase. Ignored.
533     Unexpected end tag (th) in the table body phase. Ignored.
534     Unexpected end tag (tr) in the table body phase. Ignored.
535     Expected closing tag. Unexpected end of file.
536     #document
537     | <html>
538     | <head>
539     | <body>
540     | <table>
541     | <tbody>
542    
543     #data
544     <table><tbody></div>
545     #errors
546     Unexpected start tag (table). Expected DOCTYPE.
547     Unexpected end tag (div) in table context caused voodoo mode.
548     End tag (div) seen too early. Expected other end tag.
549     Expected closing tag. Unexpected end of file.
550     #document
551     | <html>
552     | <head>
553     | <body>
554     | <table>
555     | <tbody>
556    
557     #data
558     <table><table>
559     #errors
560     Unexpected start tag (table). Expected DOCTYPE.
561     Unexpected start tag (table) implies end tag (table).
562     Expected closing tag. Unexpected end of file.
563     #document
564     | <html>
565     | <head>
566     | <body>
567     | <table>
568     | <table>
569    
570     #data
571     <table></body></caption></col></colgroup></html></tbody></td></tfoot></th></thead></tr>
572     #errors
573     Unexpected start tag (table). Expected DOCTYPE.
574     Unexpected end tag (body). Ignored.
575     Unexpected end tag (caption). Ignored.
576     Unexpected end tag (col). Ignored.
577     Unexpected end tag (colgroup). Ignored.
578     Unexpected end tag (html). Ignored.
579     Unexpected end tag (tbody). Ignored.
580     Unexpected end tag (td). Ignored.
581     Unexpected end tag (tfoot). Ignored.
582     Unexpected end tag (th). Ignored.
583     Unexpected end tag (thead). Ignored.
584     Unexpected end tag (tr). Ignored.
585     Expected closing tag. Unexpected end of file.
586     #document
587     | <html>
588     | <head>
589     | <body>
590     | <table>
591    
592     #data
593     </table><tr>
594     #document-fragment
595     table
596     #errors
597     Unexpected end tag (table). Ignored.
598     Expected closing tag. Unexpected end of file.
599     #document
600     | <tbody>
601     | <tr>

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24