/[suikacvs]/markup/html/whatpm/t/dom-conformance/html-form-textarea.dat
Suika

Contents of /markup/html/whatpm/t/dom-conformance/html-form-textarea.dat

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (hide annotations) (download)
Sun Aug 23 08:13:45 2009 UTC (16 years, 11 months ago) by wakaba
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +1 -0 lines
++ whatpm/t/dom-conformance/ChangeLog	23 Aug 2009 08:13:30 -0000
	* html-datatemplate.dat, html-repetitions.dat, html-forms-1.dat,
	html-form-input-1.dat, html-form-button.dat, html-form-select.dat,
	html-form-textarea.dat, html-texts-1.dat, html-interactive-1.dat:
	Revised test results related to the removed datatemplate and
	repetition template feature (HTML5 revision 2319).

2009-08-23  Wakaba  <wakaba@suika.fam.cx>

++ whatpm/Whatpm/ContentChecker/ChangeLog	23 Aug 2009 08:04:48 -0000
	* HTML.pm: Marked datatemplate and repetition template features as
	dropped (HTML5 revision 2319).

2009-08-23  Wakaba  <wakaba@suika.fam.cx>

1 wakaba 1.1 #data
2 wakaba 1.2 <textarea xmlns="http://www.w3.org/1999/xhtml"></textarea>
3     #errors
4    
5     #data
6     <textarea xmlns="http://www.w3.org/1999/xhtml"> </textarea>
7     #errors
8    
9     #data
10     <textarea xmlns="http://www.w3.org/1999/xhtml">xxxx</textarea>
11     #errors
12    
13     #data
14     <textarea xmlns="http://www.w3.org/1999/xhtml"><em>a</em></textarea>
15     #errors
16     /textarea/em;element not allowed:text;m
17    
18     #data
19     <textarea xmlns="http://www.w3.org/1999/xhtml"><title>x</title></textarea>
20     #errors
21     /textarea/title;element not allowed:text;m
22    
23     #data
24     <textarea xmlns="http://www.w3.org/1999/xhtml">aa<br/>bb</textarea>
25     #errors
26     /textarea/br;element not allowed:text;m
27    
28     #data
29     <textarea xmlns="http://www.w3.org/1999/xhtml"><nest/></textarea>
30     #errors
31     /textarea/nest;element not allowed:text;m
32 wakaba 1.4 /textarea/nest;element not defined;m
33 wakaba 1.2
34     #data
35     <em xmlns="http://www.w3.org/1999/xhtml"><textarea/></em>
36     #errors
37     /em;no significant content;s
38    
39     #data
40     <p xmlns="http://www.w3.org/1999/xhtml"><textarea/></p>
41     #errors
42     /p;no significant content;s
43    
44     #data
45     <div xmlns="http://www.w3.org/1999/xhtml"><textarea/></div>
46     #errors
47     /div;no significant content;s
48    
49     #data
50 wakaba 1.1 <textarea xmlns="http://www.w3.org/1999/xhtml"
51     pattern="">x</textarea>
52     #errors
53     /textarea/@pattern;SUBDOC
54     /textarea/@pattern;attribute not defined;m
55     /textarea;attribute missing;title;s
56    
57     #data
58     <textarea xmlns="http://www.w3.org/1999/xhtml"
59     pattern="" title="empty">x</textarea>
60     #errors
61     /textarea/@pattern;SUBDOC
62     /textarea/@pattern;attribute not defined;m
63 wakaba 1.2
64     #data
65     <textarea xmlns="http://www.w3.org/1999/xhtml"
66     autofocus=""
67     >a</textarea>
68     #errors
69    
70     #data
71     <textarea xmlns="http://www.w3.org/1999/xhtml"
72     autofocus="autofocus"
73     >a</textarea>
74     #errors
75    
76     #data
77     <textarea xmlns="http://www.w3.org/1999/xhtml"
78     autofocus="AUTOfocus"
79     >a</textarea>
80     #errors
81    
82     #data
83     <textarea xmlns="http://www.w3.org/1999/xhtml"
84     autofocus="auto"
85     >a</textarea>
86     #errors
87     /textarea/@autofocus;boolean:invalid;m
88    
89     #data
90     <textarea xmlns="http://www.w3.org/1999/xhtml"
91     autofocus="no"
92     >a</textarea>
93     #errors
94     /textarea/@autofocus;boolean:invalid;m
95    
96     #data
97     <textarea xmlns="http://www.w3.org/1999/xhtml"
98     readonly=""
99     >a</textarea>
100     #errors
101    
102     #data
103     <textarea xmlns="http://www.w3.org/1999/xhtml"
104     readonly="ReadOnly"
105     >a</textarea>
106     #errors
107    
108     #data
109     <textarea xmlns="http://www.w3.org/1999/xhtml"
110     readonly="readonly"
111     >a</textarea>
112     #errors
113    
114     #data
115     <textarea xmlns="http://www.w3.org/1999/xhtml"
116     readonly="yes"
117     >a</textarea>
118     #errors
119     /textarea/@readonly;boolean:invalid;m
120    
121     #data
122     <textarea xmlns="http://www.w3.org/1999/xhtml"
123     cols=""
124     >a</textarea>
125     #errors
126     /textarea/@cols;nninteger:syntax error;m
127    
128     #data
129     <textarea xmlns="http://www.w3.org/1999/xhtml"
130     cols="0"
131     >a</textarea>
132     #errors
133     /textarea/@cols;nninteger:out of range;m
134    
135     #data
136     <textarea xmlns="http://www.w3.org/1999/xhtml"
137     cols="1"
138     >a</textarea>
139     #errors
140    
141     #data
142     <textarea xmlns="http://www.w3.org/1999/xhtml"
143     cols="000020"
144     >a</textarea>
145     #errors
146    
147     #data
148     <textarea xmlns="http://www.w3.org/1999/xhtml"
149     cols="10.0"
150     >a</textarea>
151     #errors
152     /textarea/@cols;nninteger:syntax error;m
153    
154     #data
155     <textarea xmlns="http://www.w3.org/1999/xhtml"
156     cols="+10"
157     >a</textarea>
158     #errors
159     /textarea/@cols;nninteger:syntax error;m
160    
161     #data
162     <textarea xmlns="http://www.w3.org/1999/xhtml"
163     cols="-100"
164     >a</textarea>
165     #errors
166     /textarea/@cols;nninteger:syntax error;m
167    
168     #data
169     <textarea xmlns="http://www.w3.org/1999/xhtml"
170     cols="auto"
171     >a</textarea>
172     #errors
173     /textarea/@cols;nninteger:syntax error;m
174    
175     #data
176     <textarea xmlns="http://www.w3.org/1999/xhtml"
177     rows=""
178     >a</textarea>
179     #errors
180     /textarea/@rows;nninteger:syntax error;m
181    
182     #data
183     <textarea xmlns="http://www.w3.org/1999/xhtml"
184     rows="0"
185     >a</textarea>
186     #errors
187     /textarea/@rows;nninteger:out of range;m
188    
189     #data
190     <textarea xmlns="http://www.w3.org/1999/xhtml"
191     rows="1"
192     >a</textarea>
193     #errors
194    
195     #data
196     <textarea xmlns="http://www.w3.org/1999/xhtml"
197     rows="000020"
198     >a</textarea>
199     #errors
200    
201     #data
202     <textarea xmlns="http://www.w3.org/1999/xhtml"
203     rows="10.0"
204     >a</textarea>
205     #errors
206     /textarea/@rows;nninteger:syntax error;m
207    
208     #data
209     <textarea xmlns="http://www.w3.org/1999/xhtml"
210     rows="+10"
211     >a</textarea>
212     #errors
213     /textarea/@rows;nninteger:syntax error;m
214    
215     #data
216     <textarea xmlns="http://www.w3.org/1999/xhtml"
217     rows="-100"
218     >a</textarea>
219     #errors
220     /textarea/@rows;nninteger:syntax error;m
221    
222     #data
223     <textarea xmlns="http://www.w3.org/1999/xhtml"
224     rows="auto"
225     >a</textarea>
226     #errors
227     /textarea/@rows;nninteger:syntax error;m
228    
229     #data
230     <textarea xmlns="http://www.w3.org/1999/xhtml"
231     wrap=""
232     >a</textarea>
233     #errors
234     /textarea/@wrap;enumerated:invalid;m
235    
236     #data
237     <textarea xmlns="http://www.w3.org/1999/xhtml"
238     wrap="soft"
239     >a</textarea>
240     #errors
241    
242     #data
243     <textarea xmlns="http://www.w3.org/1999/xhtml"
244     wrap="hard"
245     >a</textarea>
246     #errors
247     /textarea;attribute missing;cols;m
248    
249     #data
250     <textarea xmlns="http://www.w3.org/1999/xhtml"
251     wrap="Soft"
252     >a</textarea>
253     #errors
254    
255     #data
256     <textarea xmlns="http://www.w3.org/1999/xhtml"
257     wrap="Hard"
258     >a</textarea>
259     #errors
260     /textarea;attribute missing;cols;m
261    
262     #data
263     <textarea xmlns="http://www.w3.org/1999/xhtml"
264     wrap="SOFT"
265     >a</textarea>
266     #errors
267    
268     #data
269     <textarea xmlns="http://www.w3.org/1999/xhtml"
270     wrap="HARD"
271     >a</textarea>
272     #errors
273     /textarea;attribute missing;cols;m
274    
275     #data
276     <textarea xmlns="http://www.w3.org/1999/xhtml"
277     wrap="on"
278     >a</textarea>
279     #errors
280     /textarea/@wrap;enumerated:invalid;m
281    
282     #data
283     <textarea xmlns="http://www.w3.org/1999/xhtml"
284     wrap="off"
285     >a</textarea>
286     #errors
287     /textarea/@wrap;enumerated:invalid;m
288    
289     #data
290     <textarea xmlns="http://www.w3.org/1999/xhtml"
291     wrap="physical"
292     >a</textarea>
293     #errors
294     /textarea/@wrap;enumerated:invalid;m
295    
296     #data
297     <textarea xmlns="http://www.w3.org/1999/xhtml"
298     wrap="logical"
299     >a</textarea>
300     #errors
301     /textarea/@wrap;enumerated:invalid;m
302    
303     #data
304     <textarea xmlns="http://www.w3.org/1999/xhtml"
305     wrap="software"
306     >a</textarea>
307     #errors
308     /textarea/@wrap;enumerated:invalid;m
309    
310     #data
311     <textarea xmlns="http://www.w3.org/1999/xhtml"
312     wrap="wrap"
313     >a</textarea>
314     #errors
315     /textarea/@wrap;enumerated:invalid;m
316    
317     #data
318     <textarea xmlns="http://www.w3.org/1999/xhtml"
319     wrap="hard" cols="1"
320     >a</textarea>
321     #errors
322    
323     #data
324     <textarea xmlns="http://www.w3.org/1999/xhtml"
325     maxlength=""
326     ></textarea>
327     #errors
328     /textarea/@maxlength;nninteger:syntax error;m
329    
330     #data
331     <textarea xmlns="http://www.w3.org/1999/xhtml"
332     maxlength="0"
333     ></textarea>
334     #errors
335    
336     #data
337     <textarea xmlns="http://www.w3.org/1999/xhtml"
338     maxlength="1"
339     ></textarea>
340     #errors
341    
342     #data
343     <textarea xmlns="http://www.w3.org/1999/xhtml"
344     maxlength="+0"
345     ></textarea>
346     #errors
347     /textarea/@maxlength;nninteger:syntax error;m
348    
349     #data
350     <textarea xmlns="http://www.w3.org/1999/xhtml"
351     maxlength="-0"
352     ></textarea>
353     #errors
354     /textarea/@maxlength;nninteger:syntax error;m
355    
356     #data
357     <textarea xmlns="http://www.w3.org/1999/xhtml"
358     maxlength="-100"
359     ></textarea>
360     #errors
361     /textarea/@maxlength;nninteger:syntax error;m
362    
363     #data
364     <textarea xmlns="http://www.w3.org/1999/xhtml"
365     maxlength="10.0"
366     ></textarea>
367     #errors
368     /textarea/@maxlength;nninteger:syntax error;m
369    
370     #data
371     <textarea xmlns="http://www.w3.org/1999/xhtml"
372     maxlength="10"
373     >1234567890</textarea>
374     #errors
375    
376     #data
377     <textarea xmlns="http://www.w3.org/1999/xhtml"
378     maxlength="6"
379     >1234567890</textarea>
380     #errors
381     /textarea;value too long;m
382    
383     #data
384     <textarea xmlns="http://www.w3.org/1999/xhtml"
385     required=""
386     >1234567890</textarea>
387     #errors
388    
389     #data
390     <textarea xmlns="http://www.w3.org/1999/xhtml"
391     required="required"
392     >1234567890</textarea>
393     #errors
394    
395     #data
396     <textarea xmlns="http://www.w3.org/1999/xhtml"
397     required="RequiRED"
398     >1234567890</textarea>
399     #errors
400    
401     #data
402     <textarea xmlns="http://www.w3.org/1999/xhtml"
403     required="yes"
404     >1234567890</textarea>
405     #errors
406     /textarea/@required;boolean:invalid;m
407    
408     #data
409     <textarea xmlns="http://www.w3.org/1999/xhtml"
410     pattern=""
411     >1234567890</textarea>
412     #errors
413     /textarea/@pattern;attribute not defined;m
414     /textarea/@pattern;SUBDOC
415     /textarea;attribute missing;title;s
416    
417     #data
418     <textarea xmlns="http://www.w3.org/1999/xhtml"
419     pattern="(?!x)" title="x"
420     >1234567890</textarea>
421     #errors
422     /textarea/@pattern;attribute not defined;m
423     /textarea/@pattern;SUBDOC
424 wakaba 1.3
425     #data
426     <textarea xmlns="http://www.w3.org/1999/xhtml"
427     placeholder=""/>
428     #errors
429    
430     #data
431     <textarea xmlns="http://www.w3.org/1999/xhtml"
432     placeholder="xxx"/>
433     #errors
434    
435     #data
436     <textarea xmlns="http://www.w3.org/1999/xhtml"
437     placeholder="&#xa;"/>
438     #errors
439     /textarea/@placeholder;newline in value;m
440    
441     #data
442     <textarea xmlns="http://www.w3.org/1999/xhtml"
443     placeholder="&#xd;"/>
444     #errors
445     /textarea/@placeholder;newline in value;m

[email protected]
ViewVC Help
Powered by ViewVC 1.1.24