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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations) (download)
Sun Apr 13 06:44:27 2008 UTC (17 years, 3 months ago) by wakaba
Branch: MAIN
++ whatpm/t/ChangeLog	13 Apr 2008 06:43:36 -0000
	* HTML-tokenizer.t, HTML-tree.t, Makefile: Support for html5lib
	new test files.

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

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

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

1 wakaba 1.1 #data
2     <!doctype html><body><title>X</title>
3     #errors
4     #document
5     | <!DOCTYPE html>
6     | <html>
7     | <head>
8     | <body>
9     | <title>
10     | "X"
11    
12     #data
13     <!doctype html><table><title>X</title></table>
14     #errors
15     xxx
16     #document
17     | <!DOCTYPE html>
18     | <html>
19     | <head>
20     | <body>
21     | <title>
22     | "X"
23     | <table>
24    
25     #data
26     <!doctype html><head></head><title>X</title>
27     #errors
28     element-belongs-in-da-head
29     #document
30     | <!DOCTYPE html>
31     | <html>
32     | <head>
33     | <title>
34     | "X"
35     | <body>
36    
37     #data
38     <!doctype html></head><title>X</title>
39     #errors
40     element-belongs-in-da-head
41     #document
42     | <!DOCTYPE html>
43     | <html>
44     | <head>
45     | <title>
46     | "X"
47     | <body>
48    
49     #data
50     <!doctype html></body><title>X</title>
51     #errors
52     element-after-da-body
53     #document
54     | <!DOCTYPE html>
55     | <html>
56     | <head>
57     | <body>
58     | <title>
59     | "X"
60    
61     #data
62     <!doctype html><table><meta></table>
63     #errors
64     meta-in-table
65     #document
66     | <!DOCTYPE html>
67     | <html>
68     | <head>
69     | <body>
70     | <meta>
71     | <table>
72    
73     #data
74     <!doctype html><table> X<meta></table>
75     #errors
76     characters-in-table
77     #document
78     | <!DOCTYPE html>
79     | <html>
80     | <head>
81     | <body>
82     | "X"
83     | <meta>
84     | <table>
85     | " "
86    
87     #data
88     <!doctype html><table>X<tr><td><table> <meta></table></table>
89     #errors
90     characters-in-table
91     meta-in-table
92     #document
93     | <!DOCTYPE html>
94     | <html>
95     | <head>
96     | <body>
97     | "X"
98     | <table>
99     | <tbody>
100     | <tr>
101     | <td>
102     | <meta>
103     | <table>
104     | " "
105    
106     #data
107     <!doctype html><html> <head>
108     #errors
109     #document
110     | <!DOCTYPE html>
111     | <html>
112     | <head>
113     | <body>
114    
115     #data
116     <!doctype html> <head>
117     #errors
118     #document
119     | <!DOCTYPE html>
120     | <html>
121     | <head>
122     | <body>
123    
124     #data
125     <!doctype html><table> x</table>
126     #errors
127     node-in-table
128     #document
129     | <!DOCTYPE html>
130     | <html>
131     | <head>
132     | <body>
133     | "x"
134     | <table>
135     | " "
136    
137     #data
138     <!doctype html><table> x </table>
139     #errors
140     node-in-table
141     #document
142     | <!DOCTYPE html>
143     | <html>
144     | <head>
145     | <body>
146     | "x "
147     | <table>
148     | " "
149    
150     #data
151     <!doctype html><table><tr> x</table>
152     #errors
153     node-in-table-row
154     #document
155     | <!DOCTYPE html>
156     | <html>
157     | <head>
158     | <body>
159     | "x"
160     | <table>
161     | <tbody>
162     | <tr>
163     | " "
164    
165     #data
166     <!doctype html><table><style> <tr>x </style> </table>
167     #errors
168     #document
169     | <!DOCTYPE html>
170     | <html>
171     | <head>
172     | <body>
173     | <table>
174     | <style>
175     | " <tr>x "
176     | " "
177    
178     #data
179     <!doctype html><table><TBODY><script> <tr>x </script> </table>
180     #errors
181     #document
182     | <!DOCTYPE html>
183     | <html>
184     | <head>
185     | <body>
186     | <table>
187     | <tbody>
188     | <script>
189     | " <tr>x "
190     | " "
191    
192     #data
193     <!doctype html><table>X<style> <tr>x </style> </table>
194     #errors
195     xxxx
196     #document
197     | <!DOCTYPE html>
198     | <html>
199     | <head>
200     | <body>
201     | "X"
202     | <style>
203     | " <tr>x "
204     | " "
205     | <table>
206    
207     #data
208     <!doctype html><p><applet><p>X</p></applet>
209     #errors
210     #document
211     | <!DOCTYPE html>
212     | <html>
213     | <head>
214     | <body>
215     | <p>
216     | <applet>
217     | <p>
218     | "X"
219    
220     #data
221     <!doctype html><listing>
222     X</listing>
223     #errors
224     #document
225     | <!DOCTYPE html>
226     | <html>
227     | <head>
228     | <body>
229     | <listing>
230     | "X"
231    
232     #data
233     <!doctype html><select><input>X
234     #errors
235     input-in-select
236     #document
237     | <!DOCTYPE html>
238     | <html>
239     | <head>
240     | <body>
241     | <select>
242     | <input>
243     | "X"
244    
245     #data
246     <!doctype html><select><select>X
247     #errors
248     select-in-select
249     #document
250     | <!DOCTYPE html>
251     | <html>
252     | <head>
253     | <body>
254     | <select>
255     | "X"
256    
257     #data
258     <!doctype html><table><input type=hidDEN></table>
259     #errors
260     input-in-table
261     #document
262     | <!DOCTYPE html>
263     | <html>
264     | <head>
265     | <body>
266     | <table>
267     | <input>
268     | type="hidDEN"
269    
270     #data
271     <!doctype html><table>X<input type=hidDEN></table>
272     #errors
273     input-in-table
274     #document
275     | <!DOCTYPE html>
276     | <html>
277     | <head>
278     | <body>
279     | "X"
280     | <input>
281     | type="hidDEN"
282     | <table>
283    
284     #data
285     <!doctype html><table> <input type=hidDEN></table>
286     #errors
287     input-in-table
288     #document
289     | <!DOCTYPE html>
290     | <html>
291     | <head>
292     | <body>
293     | <table>
294     | " "
295     | <input>
296     | type="hidDEN"
297    
298     #data
299     <!doctype html><table> <input type='hidDEN'></table>
300     #errors
301     input-in-table
302     #document
303     | <!DOCTYPE html>
304     | <html>
305     | <head>
306     | <body>
307     | <table>
308     | " "
309     | <input>
310     | type="hidDEN"
311    
312     #data
313     <!doctype html><table><input type=" hidden"><input type=hidDEN></table>
314     #errors
315     input-in-table
316     #document
317     | <!DOCTYPE html>
318     | <html>
319     | <head>
320     | <body>
321     | <input>
322     | type=" hidden"
323     | <input>
324     | type="hidDEN"
325     | <table>
326    
327     #data
328     <!doctype html><table><select>X<tr>
329     #errors
330     select-in-table
331     unexpected-tr-in-select-in-table
332     eof
333     #document
334     | <!DOCTYPE html>
335     | <html>
336     | <head>
337     | <body>
338     | <select>
339     | "X"
340     | <table>
341     | <tbody>
342     | <tr>
343    
344     #data
345     <!doctype html><select>X</select>
346     #errors
347     #document
348     | <!DOCTYPE html>
349     | <html>
350     | <head>
351     | <body>
352     | <select>
353     | "X"
354    
355     #data
356     <!DOCTYPE hTmL><html></html>
357     #errors
358     #document
359     | <!DOCTYPE hTmL>
360     | <html>
361     | <head>
362     | <body>
363    
364     #data
365     <!DOCTYPE HTML><html></html>
366     #errors
367     #document
368     | <!DOCTYPE HTML>
369     | <html>
370     | <head>
371     | <body>
372    
373     #data
374     <body>X</body></body>
375     #errors
376     21: Saw an end tag after body had been closed.
377     #document-fragment
378     html
379     #document
380     | <head>
381     | <body>
382     | "X"
383    
384     #data
385     <!doctype html><div><table><a>foo</a> <tr><td>bar</td> </tr></table></div>
386     #errors
387     unexpected-start-tag-implies-table-voodoo
388     #document
389     | <!DOCTYPE html>
390     | <html>
391     | <head>
392     | <body>
393     | <div>
394     | <a>
395     | "foo"
396     | " "
397     | <table>
398     | <tbody>
399     | <tr>
400     | <td>
401     | "bar"

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24