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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.12 - (hide annotations) (download)
Sat Dec 6 11:31:35 2008 UTC (17 years, 7 months ago) by wakaba
Branch: MAIN
Changes since 1.11: +801 -43 lines
++ whatpm/t/dom-conformance/ChangeLog	6 Dec 2008 11:31:29 -0000
2008-12-06  Wakaba  <wakaba@suika.fam.cx>

	* html-form-input-1.dat: Added test data for <input type=search>
	and <input type=text|password|url|email value>.

	* html-interactive-1.dat: Fixed a typo error.

++ whatpm/Whatpm/ContentChecker/ChangeLog	6 Dec 2008 11:29:26 -0000
	* HTML.pm: Implemented <input multiple>, <input type=search>.
	Implemented <input value> validation for |type|s |text|, |search|,
	|email|, |url|, and |password|.

2008-12-06  Wakaba  <wakaba@suika.fam.cx>

1 wakaba 1.1
2     #data
3     <input xmlns="http://www.w3.org/1999/xhtml"></input>
4     #errors
5    
6     #data
7     <input xmlns="http://www.w3.org/1999/xhtml"> </input>
8     #errors
9    
10     #data
11     <input xmlns="http://www.w3.org/1999/xhtml"><!-- --></input>
12     #errors
13    
14     #data
15     <input xmlns="http://www.w3.org/1999/xhtml">xx</input>
16     #errors
17     /input/"xx";character not allowed:empty;m
18    
19     #data
20     <input xmlns="http://www.w3.org/1999/xhtml"><p/></input>
21     #errors
22     /input/p;element not allowed:empty;m
23     /input/p;no significant content;s
24    
25     #data
26     <input xmlns="http://www.w3.org/1999/xhtml"><div>x</div></input>
27     #errors
28     /input/div;element not allowed:empty;m
29    
30     #data
31     <input xmlns="http://www.w3.org/1999/xhtml"><input/></input>
32     #errors
33     /input/input;element not allowed:empty;m
34    
35     #data
36     <input xmlns="http://www.w3.org/1999/xhtml"><nest/></input>
37     #errors
38     /input/nest;element not allowed:empty;m
39    
40     #data
41     <em xmlns="http://www.w3.org/1999/xhtml"><input/></em>
42     #errors
43     /em;no significant content;s
44    
45     #data
46     <div xmlns="http://www.w3.org/1999/xhtml"><input/></div>
47     #errors
48     /div;no significant content;s
49    
50     #data
51     <p xmlns="http://www.w3.org/1999/xhtml"><input/></p>
52     #errors
53     /p;no significant content;s
54    
55     #data
56     <title xmlns="http://www.w3.org/1999/xhtml"><input/></title>
57     #errors
58     /title/input;element not allowed:text;m
59    
60     #data
61     <br xmlns="http://www.w3.org/1999/xhtml"><input/></br>
62     #errors
63     /br/input;element not allowed:empty;m
64    
65     #data
66     <ins xmlns="http://www.w3.org/1999/xhtml"><input/></ins>
67     #errors
68     /ins;no significant content;s
69 wakaba 1.2
70     #data
71     <input xmlns="http://www.w3.org/1999/xhtml"
72     type="hidden"/>
73     #errors
74    
75     #data
76     <input xmlns="http://www.w3.org/1999/xhtml"
77     type="HIDDEN"/>
78     #errors
79    
80     #data
81     <input xmlns="http://www.w3.org/1999/xhtml"
82     type="text"/>
83     #errors
84    
85     #data
86     <input xmlns="http://www.w3.org/1999/xhtml"
87     type="TexT"/>
88     #errors
89    
90     #data
91     <input xmlns="http://www.w3.org/1999/xhtml"
92     type="Email"/>
93     #errors
94    
95     #data
96     <input xmlns="http://www.w3.org/1999/xhtml"
97     type="email"/>
98     #errors
99    
100     #data
101     <input xmlns="http://www.w3.org/1999/xhtml"
102 wakaba 1.12 type="search"/>
103     #errors
104    
105     #data
106     <input xmlns="http://www.w3.org/1999/xhtml"
107 wakaba 1.2 type="url"/>
108     #errors
109    
110     #data
111     <input xmlns="http://www.w3.org/1999/xhtml"
112     type="uri"/>
113     #errors
114     /input/@type;enumerated:invalid;m
115    
116     #data
117     <input xmlns="http://www.w3.org/1999/xhtml"
118     type="iri"/>
119     #errors
120     /input/@type;enumerated:invalid;m
121    
122     #data
123     <input xmlns="http://www.w3.org/1999/xhtml"
124     type="URL"/>
125     #errors
126    
127     #data
128     <input xmlns="http://www.w3.org/1999/xhtml"
129     type="password"/>
130     #errors
131    
132     #data
133     <input xmlns="http://www.w3.org/1999/xhtml"
134     type="PASSWORD"/>
135     #errors
136    
137     #data
138     <input xmlns="http://www.w3.org/1999/xhtml"
139 wakaba 1.4 type="pass"/>
140     #errors
141     /input/@type;enumerated:invalid;m
142    
143     #data
144     <input xmlns="http://www.w3.org/1999/xhtml"
145 wakaba 1.2 type="datetime"/>
146     #errors
147    
148     #data
149     <input xmlns="http://www.w3.org/1999/xhtml"
150     type="DateTime"/>
151     #errors
152    
153     #data
154     <input xmlns="http://www.w3.org/1999/xhtml"
155     type="datatime"/>
156     #errors
157     /input/@type;enumerated:invalid;m
158    
159     #data
160     <input xmlns="http://www.w3.org/1999/xhtml"
161     type="date"/>
162     #errors
163    
164     #data
165     <input xmlns="http://www.w3.org/1999/xhtml"
166     type="dATe"/>
167     #errors
168    
169     #data
170     <input xmlns="http://www.w3.org/1999/xhtml"
171     type="data"/>
172     #errors
173     /input/@type;enumerated:invalid;m
174    
175     #data
176     <input xmlns="http://www.w3.org/1999/xhtml"
177     type="month"/>
178     #errors
179    
180     #data
181     <input xmlns="http://www.w3.org/1999/xhtml"
182     type="monse"/>
183     #errors
184     /input/@type;enumerated:invalid;m
185    
186     #data
187     <input xmlns="http://www.w3.org/1999/xhtml"
188     type="week"/>
189     #errors
190    
191     #data
192     <input xmlns="http://www.w3.org/1999/xhtml"
193     type="weak"/>
194     #errors
195     /input/@type;enumerated:invalid;m
196    
197     #data
198     <input xmlns="http://www.w3.org/1999/xhtml"
199     type="time"/>
200     #errors
201    
202     #data
203     <input xmlns="http://www.w3.org/1999/xhtml"
204     type="Time"/>
205     #errors
206    
207     #data
208     <input xmlns="http://www.w3.org/1999/xhtml"
209     type="datetime-local"/>
210     #errors
211    
212     #data
213     <input xmlns="http://www.w3.org/1999/xhtml"
214     type="number"/>
215     #errors
216    
217     #data
218     <input xmlns="http://www.w3.org/1999/xhtml"
219     type="range"/>
220     #errors
221    
222     #data
223     <input xmlns="http://www.w3.org/1999/xhtml"
224     type="checkbox"/>
225     #errors
226    
227     #data
228     <input xmlns="http://www.w3.org/1999/xhtml"
229     type="check"/>
230     #errors
231     /input/@type;enumerated:invalid;m
232    
233     #data
234     <input xmlns="http://www.w3.org/1999/xhtml"
235     type="radio"/>
236     #errors
237    
238     #data
239     <input xmlns="http://www.w3.org/1999/xhtml"
240     type="radiobutton"/>
241     #errors
242     /input/@type;enumerated:invalid;m
243    
244     #data
245     <input xmlns="http://www.w3.org/1999/xhtml"
246     type="radiobox"/>
247     #errors
248     /input/@type;enumerated:invalid;m
249    
250     #data
251     <input xmlns="http://www.w3.org/1999/xhtml"
252     type="file"/>
253     #errors
254    
255     #data
256     <input xmlns="http://www.w3.org/1999/xhtml"
257     type="submit"/>
258     #errors
259    
260     #data
261     <input xmlns="http://www.w3.org/1999/xhtml"
262     type="image"/>
263     #errors
264    
265     #data
266     <input xmlns="http://www.w3.org/1999/xhtml"
267     type="img"/>
268     #errors
269     /input/@type;enumerated:invalid;m
270    
271     #data
272     <input xmlns="http://www.w3.org/1999/xhtml"
273     type="reset"/>
274     #errors
275    
276     #data
277     <input xmlns="http://www.w3.org/1999/xhtml"
278     type="button"/>
279     #errors
280    
281     #data
282     <input xmlns="http://www.w3.org/1999/xhtml"
283     type="hiden"/>
284     #errors
285     /input/@type;enumerated:invalid;m
286    
287     #data
288     <input xmlns="http://www.w3.org/1999/xhtml"
289     type="hidden "/>
290     #errors
291     /input/@type;enumerated:invalid;m
292    
293     #data
294     <input xmlns="http://www.w3.org/1999/xhtml"
295     type=" hidden"/>
296     #errors
297     /input/@type;enumerated:invalid;m
298    
299     #data
300     <input xmlns="http://www.w3.org/1999/xhtml"
301     type="add"/>
302     #errors
303     /input/@type;enumerated:invalid;m
304    
305     #data
306     <input xmlns="http://www.w3.org/1999/xhtml"
307     type="remove"/>
308     #errors
309     /input/@type;enumerated:invalid;m
310    
311     #data
312     <input xmlns="http://www.w3.org/1999/xhtml"
313     type="delete"/>
314     #errors
315     /input/@type;enumerated:invalid;m
316    
317     #data
318     <input xmlns="http://www.w3.org/1999/xhtml"
319     type="move"/>
320     #errors
321     /input/@type;enumerated:invalid;m
322    
323     #data
324     <input xmlns="http://www.w3.org/1999/xhtml"
325     type="move-up"/>
326     #errors
327     /input/@type;enumerated:invalid;m
328    
329     #data
330     <input xmlns="http://www.w3.org/1999/xhtml"
331     type="move-down"/>
332     #errors
333     /input/@type;enumerated:invalid;m
334    
335     #data
336     <input xmlns="http://www.w3.org/1999/xhtml"
337     type="textarea"/>
338     #errors
339     /input/@type;enumerated:invalid;m
340    
341     #data
342     <input xmlns="http://www.w3.org/1999/xhtml"
343     type=""/>
344     #errors
345     /input/@type;enumerated:invalid;m
346    
347     #data escaped
348     <input xmlns="http://www.w3.org/1999/xhtml"
349     type="h\u0130dden"/>
350     #errors
351     /input/@type;enumerated:invalid;m
352    
353     #data escaped
354     <input xmlns="http://www.w3.org/1999/xhtml"
355     type="h\u0131dden"/>
356     #errors
357     /input/@type;enumerated:invalid;m
358 wakaba 1.3
359     #data
360     <div xmlns="http://www.w3.org/1999/xhtml">
361     <form id="a">x</form>
362     <input type="hidden" form="a"/>
363     </div>
364     #errors
365    
366     #data
367     <div xmlns="http://www.w3.org/1999/xhtml">
368     <form id="a">x</form>
369     <input type="text" form="a"/>
370     </div>
371     #errors
372    
373     #data
374     <div xmlns="http://www.w3.org/1999/xhtml">
375     <form id="a">x</form>
376     <input type="email" form="a"/>
377     </div>
378     #errors
379    
380     #data
381     <div xmlns="http://www.w3.org/1999/xhtml">
382     <form id="a">x</form>
383 wakaba 1.12 <input type="search" form="a"/>
384     </div>
385     #errors
386    
387     #data
388     <div xmlns="http://www.w3.org/1999/xhtml">
389     <form id="a">x</form>
390 wakaba 1.3 <input type="url" form="a"/>
391     </div>
392     #errors
393    
394     #data
395     <div xmlns="http://www.w3.org/1999/xhtml">
396     <form id="a">x</form>
397     <input type="password" form="a"/>
398     </div>
399     #errors
400    
401     #data
402     <div xmlns="http://www.w3.org/1999/xhtml">
403     <form id="a">x</form>
404     <input type="datetime" form="a"/>
405     </div>
406     #errors
407    
408     #data
409     <div xmlns="http://www.w3.org/1999/xhtml">
410     <form id="a">x</form>
411     <input type="date" form="a"/>
412     </div>
413     #errors
414    
415     #data
416     <div xmlns="http://www.w3.org/1999/xhtml">
417     <form id="a">x</form>
418     <input type="month" form="a"/>
419     </div>
420     #errors
421    
422     #data
423     <div xmlns="http://www.w3.org/1999/xhtml">
424     <form id="a">x</form>
425     <input type="week" form="a"/>
426     </div>
427     #errors
428    
429     #data
430     <div xmlns="http://www.w3.org/1999/xhtml">
431     <form id="a">x</form>
432     <input type="datetime-local" form="a"/>
433     </div>
434     #errors
435    
436     #data
437     <div xmlns="http://www.w3.org/1999/xhtml">
438     <form id="a">x</form>
439     <input type="number" form="a"/>
440     </div>
441     #errors
442    
443     #data
444     <div xmlns="http://www.w3.org/1999/xhtml">
445     <form id="a">x</form>
446     <input type="range" form="a"/>
447     </div>
448     #errors
449    
450     #data
451     <div xmlns="http://www.w3.org/1999/xhtml">
452     <form id="a">x</form>
453     <input type="checkbox" form="a"/>
454     </div>
455     #errors
456    
457     #data
458     <div xmlns="http://www.w3.org/1999/xhtml">
459     <form id="a">x</form>
460     <input type="radio" form="a"/>
461     </div>
462     #errors
463    
464     #data
465     <div xmlns="http://www.w3.org/1999/xhtml">
466     <form id="a">x</form>
467     <input type="file" form="a"/>
468     </div>
469     #errors
470    
471     #data
472     <div xmlns="http://www.w3.org/1999/xhtml">
473     <form id="a">x</form>
474     <input type="submit" form="a"/>
475     </div>
476     #errors
477    
478     #data
479     <div xmlns="http://www.w3.org/1999/xhtml">
480     <form id="a">x</form>
481     <input type="image" form="a"/>
482     </div>
483     #errors
484    
485     #data
486     <div xmlns="http://www.w3.org/1999/xhtml">
487     <form id="a">x</form>
488     <input type="reset" form="a"/>
489     </div>
490     #errors
491    
492     #data
493     <div xmlns="http://www.w3.org/1999/xhtml">
494     <form id="a">x</form>
495     <input type="button" form="a"/>
496     </div>
497     #errors
498    
499     #data
500     <div xmlns="http://www.w3.org/1999/xhtml">
501     <form id="a">x</form>
502     <input type="add" form="a"/>
503     </div>
504     #errors
505     /div/input/@type;enumerated:invalid;m
506    
507     #data
508     <div xmlns="http://www.w3.org/1999/xhtml">
509     <form id="a">x</form>
510     <input type="remove" form="a"/>
511     </div>
512     #errors
513     /div/input/@type;enumerated:invalid;m
514    
515     #data
516     <div xmlns="http://www.w3.org/1999/xhtml">
517     <form id="a">x</form>
518     <input type="move-up" form="a"/>
519     </div>
520     #errors
521     /div/input/@type;enumerated:invalid;m
522    
523     #data
524     <div xmlns="http://www.w3.org/1999/xhtml">
525     <form id="a">x</form>
526     <input type="move-down" form="a"/>
527     </div>
528     #errors
529     /div/input/@type;enumerated:invalid;m
530    
531     #data
532     <div xmlns="http://www.w3.org/1999/xhtml">
533     <form id="a">x</form>
534     <input type="unknown" form="a"/>
535     </div>
536     #errors
537     /div/input/@type;enumerated:invalid;m
538    
539     #data
540     <input xmlns="http://www.w3.org/1999/xhtml"
541     type="hidden" name="_charset_"/>
542     #errors
543    
544     #data
545     <input xmlns="http://www.w3.org/1999/xhtml"
546     type="hidden" name="_charset_" value=""/>
547     #errors
548     /input/@value;_charset_ value;m
549    
550     #data
551     <input xmlns="http://www.w3.org/1999/xhtml"
552     type="hidden" name="_CHARSET_" value=""/>
553     #errors
554    
555     #data
556     <input xmlns="http://www.w3.org/1999/xhtml"
557     type="hidden" name="charset"/>
558     #errors
559    
560     #data
561     <input xmlns="http://www.w3.org/1999/xhtml"
562     type="hidden" name="charset" value="utf-8"/>
563     #errors
564    
565     #data
566     <input xmlns="http://www.w3.org/1999/xhtml"
567     type="text" name="_charset_" value="utf-8"/>
568     #errors
569    
570     #data
571     <input xmlns="http://www.w3.org/1999/xhtml"
572     type="password" name="_charset_" value="us-ascii"/>
573     #errors
574    
575     #data
576     <input xmlns="http://www.w3.org/1999/xhtml"
577     type="hidden" name="a"
578     accept=""/>
579     #errors
580     /input/@accept;input attr not applicable;hidden;m
581    
582     #data
583     <input xmlns="http://www.w3.org/1999/xhtml"
584     type="hidden" name="a"
585     action=""/>
586     #errors
587     /input/@action;input attr not applicable;hidden;m
588    
589     #data
590     <input xmlns="http://www.w3.org/1999/xhtml"
591     type="hidden" name="a"
592     alt=""/>
593     #errors
594     /input/@alt;input attr not applicable;hidden;m
595    
596     #data
597     <input xmlns="http://www.w3.org/1999/xhtml"
598     type="hidden" name="a"
599     autocomplete=""/>
600     #errors
601     /input/@autocomplete;input attr not applicable;hidden;m
602    
603     #data
604     <input xmlns="http://www.w3.org/1999/xhtml"
605     type="hidden" name="a"
606     checked=""/>
607     #errors
608     /input/@checked;input attr not applicable;hidden;m
609    
610     #data
611     <input xmlns="http://www.w3.org/1999/xhtml"
612     type="hidden" name="a"
613     enctype=""/>
614     #errors
615     /input/@enctype;input attr not applicable;hidden;m
616    
617     #data
618     <input xmlns="http://www.w3.org/1999/xhtml"
619     type="hidden" name="a"
620     list=""/>
621     #errors
622     /input/@list;input attr not applicable;hidden;m
623    
624     #data
625     <input xmlns="http://www.w3.org/1999/xhtml"
626     type="hidden" name="a"
627     max=""/>
628     #errors
629     /input/@max;input attr not applicable;hidden;m
630    
631     #data
632     <input xmlns="http://www.w3.org/1999/xhtml"
633     type="hidden" name="a"
634     maxlength=""/>
635     #errors
636     /input/@maxlength;input attr not applicable;hidden;m
637    
638     #data
639     <input xmlns="http://www.w3.org/1999/xhtml"
640     type="hidden" name="a"
641     method=""/>
642     #errors
643     /input/@method;input attr not applicable;hidden;m
644    
645     #data
646     <input xmlns="http://www.w3.org/1999/xhtml"
647     type="hidden" name="a"
648     min=""/>
649     #errors
650     /input/@min;input attr not applicable;hidden;m
651    
652     #data
653     <input xmlns="http://www.w3.org/1999/xhtml"
654     type="hidden" name="a"
655     pattern=""/>
656     #errors
657     /input/@pattern;input attr not applicable;hidden;m
658    
659     #data
660     <input xmlns="http://www.w3.org/1999/xhtml"
661     type="hidden" name="a"
662     readonly=""/>
663     #errors
664     /input/@readonly;input attr not applicable;hidden;m
665    
666     #data
667     <input xmlns="http://www.w3.org/1999/xhtml"
668     type="hidden" name="a"
669     required=""/>
670     #errors
671     /input/@required;input attr not applicable;hidden;m
672    
673     #data
674     <input xmlns="http://www.w3.org/1999/xhtml"
675     type="hidden" name="a"
676     size=""/>
677     #errors
678     /input/@size;input attr not applicable;hidden;m
679    
680     #data
681     <input xmlns="http://www.w3.org/1999/xhtml"
682     type="hidden" name="a"
683     src=""/>
684     #errors
685     /input/@src;input attr not applicable;hidden;m
686    
687     #data
688     <input xmlns="http://www.w3.org/1999/xhtml"
689     type="hidden" name="a"
690     step=""/>
691     #errors
692     /input/@step;input attr not applicable;hidden;m
693    
694     #data
695     <input xmlns="http://www.w3.org/1999/xhtml"
696     type="hidden" name="a"
697     target=""/>
698     #errors
699     /input/@target;input attr not applicable;hidden;m
700    
701     #data
702     <input xmlns="http://www.w3.org/1999/xhtml"
703     type="hidden" accpet="" name="a"/>
704     #errors
705     /input/@accpet;attribute not defined;m
706 wakaba 1.4
707     #data
708     <input xmlns="http://www.w3.org/1999/xhtml"
709     accept=""/>
710     #errors
711     /input/@accept;input attr not applicable;text;m
712    
713     #data
714     <input xmlns="http://www.w3.org/1999/xhtml"
715     action=""/>
716     #errors
717     /input/@action;input attr not applicable;text;m
718    
719     #data
720     <input xmlns="http://www.w3.org/1999/xhtml"
721     alt=""/>
722     #errors
723     /input/@alt;input attr not applicable;text;m
724    
725     #data
726     <input xmlns="http://www.w3.org/1999/xhtml"
727     checked=""/>
728     #errors
729     /input/@checked;input attr not applicable;text;m
730    
731     #data
732     <input xmlns="http://www.w3.org/1999/xhtml"
733     enctype=""/>
734     #errors
735     /input/@enctype;input attr not applicable;text;m
736    
737     #data
738     <input xmlns="http://www.w3.org/1999/xhtml"
739     max=""/>
740     #errors
741     /input/@max;input attr not applicable;text;m
742    
743     #data
744     <input xmlns="http://www.w3.org/1999/xhtml"
745     method=""/>
746     #errors
747     /input/@method;input attr not applicable;text;m
748    
749     #data
750     <input xmlns="http://www.w3.org/1999/xhtml"
751     min=""/>
752     #errors
753     /input/@min;input attr not applicable;text;m
754    
755     #data
756     <input xmlns="http://www.w3.org/1999/xhtml"
757     src=""/>
758     #errors
759     /input/@src;input attr not applicable;text;m
760    
761     #data
762     <input xmlns="http://www.w3.org/1999/xhtml"
763     step=""/>
764     #errors
765     /input/@step;input attr not applicable;text;m
766    
767     #data
768     <input xmlns="http://www.w3.org/1999/xhtml"
769     target=""/>
770     #errors
771     /input/@target;input attr not applicable;text;m
772    
773     #data
774     <input xmlns="http://www.w3.org/1999/xhtml"
775     type="email" accept=""/>
776     #errors
777 wakaba 1.10 /input/@accept;input attr not applicable;email;m
778 wakaba 1.4
779     #data
780     <input xmlns="http://www.w3.org/1999/xhtml"
781     type="email" action=""/>
782     #errors
783 wakaba 1.10 /input/@action;input attr not applicable;email;m
784 wakaba 1.4
785     #data
786     <input xmlns="http://www.w3.org/1999/xhtml"
787     type="email" alt=""/>
788     #errors
789 wakaba 1.10 /input/@alt;input attr not applicable;email;m
790 wakaba 1.4
791     #data
792     <input xmlns="http://www.w3.org/1999/xhtml"
793     type="email" checked=""/>
794     #errors
795 wakaba 1.10 /input/@checked;input attr not applicable;email;m
796 wakaba 1.4
797     #data
798     <input xmlns="http://www.w3.org/1999/xhtml"
799     type="email" enctype=""/>
800     #errors
801 wakaba 1.10 /input/@enctype;input attr not applicable;email;m
802 wakaba 1.4
803     #data
804     <input xmlns="http://www.w3.org/1999/xhtml"
805     type="email" max=""/>
806     #errors
807 wakaba 1.10 /input/@max;input attr not applicable;email;m
808 wakaba 1.4
809     #data
810     <input xmlns="http://www.w3.org/1999/xhtml"
811     type="email" method=""/>
812     #errors
813 wakaba 1.10 /input/@method;input attr not applicable;email;m
814 wakaba 1.4
815     #data
816     <input xmlns="http://www.w3.org/1999/xhtml"
817     type="email" min=""/>
818     #errors
819 wakaba 1.10 /input/@min;input attr not applicable;email;m
820 wakaba 1.4
821     #data
822     <input xmlns="http://www.w3.org/1999/xhtml"
823     type="email" src=""/>
824     #errors
825 wakaba 1.10 /input/@src;input attr not applicable;email;m
826 wakaba 1.4
827     #data
828     <input xmlns="http://www.w3.org/1999/xhtml"
829     type="email" step=""/>
830     #errors
831 wakaba 1.10 /input/@step;input attr not applicable;email;m
832 wakaba 1.4
833     #data
834     <input xmlns="http://www.w3.org/1999/xhtml"
835     type="email" target=""/>
836     #errors
837 wakaba 1.10 /input/@target;input attr not applicable;email;m
838 wakaba 1.4
839     #data
840     <input xmlns="http://www.w3.org/1999/xhtml"
841     type="url" accept=""/>
842     #errors
843 wakaba 1.10 /input/@accept;input attr not applicable;url;m
844 wakaba 1.4
845     #data
846     <input xmlns="http://www.w3.org/1999/xhtml"
847     type="url" action=""/>
848     #errors
849 wakaba 1.10 /input/@action;input attr not applicable;url;m
850 wakaba 1.4
851     #data
852     <input xmlns="http://www.w3.org/1999/xhtml"
853     type="url" alt=""/>
854     #errors
855 wakaba 1.10 /input/@alt;input attr not applicable;url;m
856 wakaba 1.4
857     #data
858     <input xmlns="http://www.w3.org/1999/xhtml"
859     type="url" checked=""/>
860     #errors
861 wakaba 1.10 /input/@checked;input attr not applicable;url;m
862 wakaba 1.4
863     #data
864     <input xmlns="http://www.w3.org/1999/xhtml"
865     type="url" enctype=""/>
866     #errors
867 wakaba 1.10 /input/@enctype;input attr not applicable;url;m
868 wakaba 1.4
869     #data
870     <input xmlns="http://www.w3.org/1999/xhtml"
871     type="url" max=""/>
872     #errors
873 wakaba 1.10 /input/@max;input attr not applicable;url;m
874 wakaba 1.4
875     #data
876     <input xmlns="http://www.w3.org/1999/xhtml"
877     type="url" method=""/>
878     #errors
879 wakaba 1.10 /input/@method;input attr not applicable;url;m
880 wakaba 1.4
881     #data
882     <input xmlns="http://www.w3.org/1999/xhtml"
883     type="url" min=""/>
884     #errors
885 wakaba 1.10 /input/@min;input attr not applicable;url;m
886 wakaba 1.4
887     #data
888     <input xmlns="http://www.w3.org/1999/xhtml"
889     type="url" src=""/>
890     #errors
891 wakaba 1.10 /input/@src;input attr not applicable;url;m
892 wakaba 1.4
893     #data
894     <input xmlns="http://www.w3.org/1999/xhtml"
895     type="url" step=""/>
896     #errors
897 wakaba 1.10 /input/@step;input attr not applicable;url;m
898 wakaba 1.4
899     #data
900     <input xmlns="http://www.w3.org/1999/xhtml"
901     type="url" target=""/>
902     #errors
903 wakaba 1.10 /input/@target;input attr not applicable;url;m
904 wakaba 1.4
905     #data
906     <input xmlns="http://www.w3.org/1999/xhtml"
907 wakaba 1.12 type="search" accept=""/>
908     #errors
909     /input/@accept;input attr not applicable;search;m
910    
911     #data
912     <input xmlns="http://www.w3.org/1999/xhtml"
913     type="search" action=""/>
914     #errors
915     /input/@action;input attr not applicable;search;m
916    
917     #data
918     <input xmlns="http://www.w3.org/1999/xhtml"
919     type="search" alt=""/>
920     #errors
921     /input/@alt;input attr not applicable;search;m
922    
923     #data
924     <input xmlns="http://www.w3.org/1999/xhtml"
925     type="search" checked=""/>
926     #errors
927     /input/@checked;input attr not applicable;search;m
928    
929     #data
930     <input xmlns="http://www.w3.org/1999/xhtml"
931     type="search" enctype=""/>
932     #errors
933     /input/@enctype;input attr not applicable;search;m
934    
935     #data
936     <input xmlns="http://www.w3.org/1999/xhtml"
937     type="search" max=""/>
938     #errors
939     /input/@max;input attr not applicable;search;m
940    
941     #data
942     <input xmlns="http://www.w3.org/1999/xhtml"
943     type="search" method=""/>
944     #errors
945     /input/@method;input attr not applicable;search;m
946    
947     #data
948     <input xmlns="http://www.w3.org/1999/xhtml"
949     type="search" min=""/>
950     #errors
951     /input/@min;input attr not applicable;search;m
952    
953     #data
954     <input xmlns="http://www.w3.org/1999/xhtml"
955     type="search" src=""/>
956     #errors
957     /input/@src;input attr not applicable;search;m
958    
959     #data
960     <input xmlns="http://www.w3.org/1999/xhtml"
961     type="search" step=""/>
962     #errors
963     /input/@step;input attr not applicable;search;m
964    
965     #data
966     <input xmlns="http://www.w3.org/1999/xhtml"
967     type="search" target=""/>
968     #errors
969     /input/@target;input attr not applicable;search;m
970    
971     #data
972     <input xmlns="http://www.w3.org/1999/xhtml"
973 wakaba 1.4 type="password" accept=""/>
974     #errors
975 wakaba 1.10 /input/@accept;input attr not applicable;password;m
976 wakaba 1.4
977     #data
978     <input xmlns="http://www.w3.org/1999/xhtml"
979     type="password" action=""/>
980     #errors
981 wakaba 1.10 /input/@action;input attr not applicable;password;m
982 wakaba 1.4
983     #data
984     <input xmlns="http://www.w3.org/1999/xhtml"
985     type="password" alt=""/>
986     #errors
987 wakaba 1.10 /input/@alt;input attr not applicable;password;m
988 wakaba 1.4
989     #data
990     <input xmlns="http://www.w3.org/1999/xhtml"
991     type="password" checked=""/>
992     #errors
993 wakaba 1.10 /input/@checked;input attr not applicable;password;m
994 wakaba 1.4
995     #data
996     <input xmlns="http://www.w3.org/1999/xhtml"
997     type="password" enctype=""/>
998     #errors
999 wakaba 1.10 /input/@enctype;input attr not applicable;password;m
1000 wakaba 1.4
1001     #data
1002     <input xmlns="http://www.w3.org/1999/xhtml"
1003     type="password" list=""/>
1004     #errors
1005 wakaba 1.10 /input/@list;input attr not applicable;password;m
1006 wakaba 1.4
1007     #data
1008     <input xmlns="http://www.w3.org/1999/xhtml"
1009     type="password" max=""/>
1010     #errors
1011 wakaba 1.10 /input/@max;input attr not applicable;password;m
1012 wakaba 1.4
1013     #data
1014     <input xmlns="http://www.w3.org/1999/xhtml"
1015     type="password" method=""/>
1016     #errors
1017 wakaba 1.10 /input/@method;input attr not applicable;password;m
1018 wakaba 1.4
1019     #data
1020     <input xmlns="http://www.w3.org/1999/xhtml"
1021     type="password" min=""/>
1022     #errors
1023 wakaba 1.10 /input/@min;input attr not applicable;password;m
1024 wakaba 1.4
1025     #data
1026     <input xmlns="http://www.w3.org/1999/xhtml"
1027     type="password" src=""/>
1028     #errors
1029 wakaba 1.10 /input/@src;input attr not applicable;password;m
1030 wakaba 1.4
1031     #data
1032     <input xmlns="http://www.w3.org/1999/xhtml"
1033     type="password" step=""/>
1034     #errors
1035 wakaba 1.10 /input/@step;input attr not applicable;password;m
1036 wakaba 1.4
1037     #data
1038     <input xmlns="http://www.w3.org/1999/xhtml"
1039     type="password" target=""/>
1040     #errors
1041 wakaba 1.10 /input/@target;input attr not applicable;password;m
1042 wakaba 1.4
1043     #data
1044     <input xmlns="http://www.w3.org/1999/xhtml"
1045     type="datetime"
1046     accept=""/>
1047     #errors
1048     /input/@accept;input attr not applicable;datetime;m
1049    
1050     #data
1051     <input xmlns="http://www.w3.org/1999/xhtml"
1052     type="datetime"
1053     action=""/>
1054     #errors
1055     /input/@action;input attr not applicable;datetime;m
1056    
1057     #data
1058     <input xmlns="http://www.w3.org/1999/xhtml"
1059     type="datetime"
1060     alt=""/>
1061     #errors
1062     /input/@alt;input attr not applicable;datetime;m
1063    
1064     #data
1065     <input xmlns="http://www.w3.org/1999/xhtml"
1066     type="datetime"
1067     checked=""/>
1068     #errors
1069     /input/@checked;input attr not applicable;datetime;m
1070    
1071     #data
1072     <input xmlns="http://www.w3.org/1999/xhtml"
1073     type="datetime"
1074     enctype=""/>
1075     #errors
1076     /input/@enctype;input attr not applicable;datetime;m
1077    
1078     #data
1079     <input xmlns="http://www.w3.org/1999/xhtml"
1080     type="datetime"
1081     maxlength=""/>
1082     #errors
1083     /input/@maxlength;input attr not applicable;datetime;m
1084    
1085     #data
1086     <input xmlns="http://www.w3.org/1999/xhtml"
1087     type="datetime"
1088     method=""/>
1089     #errors
1090     /input/@method;input attr not applicable;datetime;m
1091    
1092     #data
1093     <input xmlns="http://www.w3.org/1999/xhtml"
1094     type="datetime"
1095     pattern=""/>
1096     #errors
1097     /input/@pattern;input attr not applicable;datetime;m
1098    
1099     #data
1100     <input xmlns="http://www.w3.org/1999/xhtml"
1101     type="datetime"
1102     size=""/>
1103     #errors
1104     /input/@size;input attr not applicable;datetime;m
1105    
1106     #data
1107     <input xmlns="http://www.w3.org/1999/xhtml"
1108     type="datetime"
1109     src=""/>
1110     #errors
1111     /input/@src;input attr not applicable;datetime;m
1112    
1113     #data
1114     <input xmlns="http://www.w3.org/1999/xhtml"
1115     type="datetime"
1116     target=""/>
1117     #errors
1118     /input/@target;input attr not applicable;datetime;m
1119 wakaba 1.5
1120     #data
1121     <input xmlns="http://www.w3.org/1999/xhtml"
1122     type="date"
1123     accept=""/>
1124     #errors
1125     /input/@accept;input attr not applicable;date;m
1126    
1127     #data
1128     <input xmlns="http://www.w3.org/1999/xhtml"
1129     type="date"
1130     action=""/>
1131     #errors
1132     /input/@action;input attr not applicable;date;m
1133    
1134     #data
1135     <input xmlns="http://www.w3.org/1999/xhtml"
1136     type="date"
1137     alt=""/>
1138     #errors
1139     /input/@alt;input attr not applicable;date;m
1140    
1141     #data
1142     <input xmlns="http://www.w3.org/1999/xhtml"
1143     type="date"
1144     checked=""/>
1145     #errors
1146     /input/@checked;input attr not applicable;date;m
1147    
1148     #data
1149     <input xmlns="http://www.w3.org/1999/xhtml"
1150     type="date"
1151     enctype=""/>
1152     #errors
1153     /input/@enctype;input attr not applicable;date;m
1154    
1155     #data
1156     <input xmlns="http://www.w3.org/1999/xhtml"
1157     type="date"
1158     maxlength=""/>
1159     #errors
1160     /input/@maxlength;input attr not applicable;date;m
1161    
1162     #data
1163     <input xmlns="http://www.w3.org/1999/xhtml"
1164     type="date"
1165     method=""/>
1166     #errors
1167     /input/@method;input attr not applicable;date;m
1168    
1169     #data
1170     <input xmlns="http://www.w3.org/1999/xhtml"
1171     type="date"
1172     pattern=""/>
1173     #errors
1174     /input/@pattern;input attr not applicable;date;m
1175    
1176     #data
1177     <input xmlns="http://www.w3.org/1999/xhtml"
1178     type="date"
1179     size=""/>
1180     #errors
1181     /input/@size;input attr not applicable;date;m
1182    
1183     #data
1184     <input xmlns="http://www.w3.org/1999/xhtml"
1185     type="date"
1186     src=""/>
1187     #errors
1188     /input/@src;input attr not applicable;date;m
1189    
1190     #data
1191     <input xmlns="http://www.w3.org/1999/xhtml"
1192     type="date"
1193     target=""/>
1194     #errors
1195     /input/@target;input attr not applicable;date;m
1196    
1197     #data
1198     <input xmlns="http://www.w3.org/1999/xhtml"
1199     type="month"
1200     accept=""/>
1201     #errors
1202     /input/@accept;input attr not applicable;month;m
1203    
1204     #data
1205     <input xmlns="http://www.w3.org/1999/xhtml"
1206     type="month"
1207     action=""/>
1208     #errors
1209     /input/@action;input attr not applicable;month;m
1210    
1211     #data
1212     <input xmlns="http://www.w3.org/1999/xhtml"
1213     type="month"
1214     alt=""/>
1215     #errors
1216     /input/@alt;input attr not applicable;month;m
1217    
1218     #data
1219     <input xmlns="http://www.w3.org/1999/xhtml"
1220     type="month"
1221     checked=""/>
1222     #errors
1223     /input/@checked;input attr not applicable;month;m
1224    
1225     #data
1226     <input xmlns="http://www.w3.org/1999/xhtml"
1227     type="month"
1228     enctype=""/>
1229     #errors
1230     /input/@enctype;input attr not applicable;month;m
1231    
1232     #data
1233     <input xmlns="http://www.w3.org/1999/xhtml"
1234     type="month"
1235     maxlength=""/>
1236     #errors
1237     /input/@maxlength;input attr not applicable;month;m
1238    
1239     #data
1240     <input xmlns="http://www.w3.org/1999/xhtml"
1241     type="month"
1242     method=""/>
1243     #errors
1244     /input/@method;input attr not applicable;month;m
1245    
1246     #data
1247     <input xmlns="http://www.w3.org/1999/xhtml"
1248     type="month"
1249     pattern=""/>
1250     #errors
1251     /input/@pattern;input attr not applicable;month;m
1252    
1253     #data
1254     <input xmlns="http://www.w3.org/1999/xhtml"
1255     type="month"
1256     size=""/>
1257     #errors
1258     /input/@size;input attr not applicable;month;m
1259    
1260     #data
1261     <input xmlns="http://www.w3.org/1999/xhtml"
1262     type="month"
1263     src=""/>
1264     #errors
1265     /input/@src;input attr not applicable;month;m
1266    
1267     #data
1268     <input xmlns="http://www.w3.org/1999/xhtml"
1269     type="month"
1270     target=""/>
1271     #errors
1272     /input/@target;input attr not applicable;month;m
1273    
1274     #data
1275     <input xmlns="http://www.w3.org/1999/xhtml"
1276     type="week"
1277     accept=""/>
1278     #errors
1279     /input/@accept;input attr not applicable;week;m
1280    
1281     #data
1282     <input xmlns="http://www.w3.org/1999/xhtml"
1283     type="week"
1284     action=""/>
1285     #errors
1286     /input/@action;input attr not applicable;week;m
1287    
1288     #data
1289     <input xmlns="http://www.w3.org/1999/xhtml"
1290     type="week"
1291     alt=""/>
1292     #errors
1293     /input/@alt;input attr not applicable;week;m
1294    
1295     #data
1296     <input xmlns="http://www.w3.org/1999/xhtml"
1297     type="week"
1298     checked=""/>
1299     #errors
1300     /input/@checked;input attr not applicable;week;m
1301    
1302     #data
1303     <input xmlns="http://www.w3.org/1999/xhtml"
1304     type="week"
1305     enctype=""/>
1306     #errors
1307     /input/@enctype;input attr not applicable;week;m
1308    
1309     #data
1310     <input xmlns="http://www.w3.org/1999/xhtml"
1311     type="week"
1312     maxlength=""/>
1313     #errors
1314     /input/@maxlength;input attr not applicable;week;m
1315    
1316     #data
1317     <input xmlns="http://www.w3.org/1999/xhtml"
1318     type="week"
1319     method=""/>
1320     #errors
1321     /input/@method;input attr not applicable;week;m
1322    
1323     #data
1324     <input xmlns="http://www.w3.org/1999/xhtml"
1325     type="week"
1326     pattern=""/>
1327     #errors
1328     /input/@pattern;input attr not applicable;week;m
1329    
1330     #data
1331     <input xmlns="http://www.w3.org/1999/xhtml"
1332     type="week"
1333     size=""/>
1334     #errors
1335     /input/@size;input attr not applicable;week;m
1336    
1337     #data
1338     <input xmlns="http://www.w3.org/1999/xhtml"
1339     type="week"
1340     src=""/>
1341     #errors
1342     /input/@src;input attr not applicable;week;m
1343    
1344     #data
1345     <input xmlns="http://www.w3.org/1999/xhtml"
1346     type="week"
1347     target=""/>
1348     #errors
1349     /input/@target;input attr not applicable;week;m
1350    
1351     #data
1352     <input xmlns="http://www.w3.org/1999/xhtml"
1353     type="time"
1354     accept=""/>
1355     #errors
1356     /input/@accept;input attr not applicable;time;m
1357    
1358     #data
1359     <input xmlns="http://www.w3.org/1999/xhtml"
1360     type="time"
1361     action=""/>
1362     #errors
1363     /input/@action;input attr not applicable;time;m
1364    
1365     #data
1366     <input xmlns="http://www.w3.org/1999/xhtml"
1367     type="time"
1368     alt=""/>
1369     #errors
1370     /input/@alt;input attr not applicable;time;m
1371    
1372     #data
1373     <input xmlns="http://www.w3.org/1999/xhtml"
1374     type="time"
1375     checked=""/>
1376     #errors
1377     /input/@checked;input attr not applicable;time;m
1378    
1379     #data
1380     <input xmlns="http://www.w3.org/1999/xhtml"
1381     type="time"
1382     enctype=""/>
1383     #errors
1384     /input/@enctype;input attr not applicable;time;m
1385    
1386     #data
1387     <input xmlns="http://www.w3.org/1999/xhtml"
1388     type="time"
1389     maxlength=""/>
1390     #errors
1391     /input/@maxlength;input attr not applicable;time;m
1392    
1393     #data
1394     <input xmlns="http://www.w3.org/1999/xhtml"
1395     type="time"
1396     method=""/>
1397     #errors
1398     /input/@method;input attr not applicable;time;m
1399    
1400     #data
1401     <input xmlns="http://www.w3.org/1999/xhtml"
1402     type="time"
1403     pattern=""/>
1404     #errors
1405     /input/@pattern;input attr not applicable;time;m
1406    
1407     #data
1408     <input xmlns="http://www.w3.org/1999/xhtml"
1409     type="time"
1410     size=""/>
1411     #errors
1412     /input/@size;input attr not applicable;time;m
1413    
1414     #data
1415     <input xmlns="http://www.w3.org/1999/xhtml"
1416     type="time"
1417     src=""/>
1418     #errors
1419     /input/@src;input attr not applicable;time;m
1420    
1421     #data
1422     <input xmlns="http://www.w3.org/1999/xhtml"
1423     type="time"
1424     target=""/>
1425     #errors
1426     /input/@target;input attr not applicable;time;m
1427    
1428     #data
1429     <input xmlns="http://www.w3.org/1999/xhtml"
1430     type="datetime-local"
1431     accept=""/>
1432     #errors
1433     /input/@accept;input attr not applicable;datetime-local;m
1434    
1435     #data
1436     <input xmlns="http://www.w3.org/1999/xhtml"
1437     type="datetime-local"
1438     action=""/>
1439     #errors
1440     /input/@action;input attr not applicable;datetime-local;m
1441    
1442     #data
1443     <input xmlns="http://www.w3.org/1999/xhtml"
1444     type="datetime-local"
1445     alt=""/>
1446     #errors
1447     /input/@alt;input attr not applicable;datetime-local;m
1448    
1449     #data
1450     <input xmlns="http://www.w3.org/1999/xhtml"
1451     type="datetime-local"
1452     checked=""/>
1453     #errors
1454     /input/@checked;input attr not applicable;datetime-local;m
1455    
1456     #data
1457     <input xmlns="http://www.w3.org/1999/xhtml"
1458     type="datetime-local"
1459     enctype=""/>
1460     #errors
1461     /input/@enctype;input attr not applicable;datetime-local;m
1462    
1463     #data
1464     <input xmlns="http://www.w3.org/1999/xhtml"
1465     type="datetime-local"
1466     maxlength=""/>
1467     #errors
1468     /input/@maxlength;input attr not applicable;datetime-local;m
1469    
1470     #data
1471     <input xmlns="http://www.w3.org/1999/xhtml"
1472     type="datetime-local"
1473     method=""/>
1474     #errors
1475     /input/@method;input attr not applicable;datetime-local;m
1476    
1477     #data
1478     <input xmlns="http://www.w3.org/1999/xhtml"
1479     type="datetime-local"
1480     pattern=""/>
1481     #errors
1482     /input/@pattern;input attr not applicable;datetime-local;m
1483    
1484     #data
1485     <input xmlns="http://www.w3.org/1999/xhtml"
1486     type="datetime-local"
1487     size=""/>
1488     #errors
1489     /input/@size;input attr not applicable;datetime-local;m
1490    
1491     #data
1492     <input xmlns="http://www.w3.org/1999/xhtml"
1493     type="datetime-local"
1494     src=""/>
1495     #errors
1496     /input/@src;input attr not applicable;datetime-local;m
1497    
1498     #data
1499     <input xmlns="http://www.w3.org/1999/xhtml"
1500     type="datetime-local"
1501     target=""/>
1502     #errors
1503     /input/@target;input attr not applicable;datetime-local;m
1504    
1505     #data
1506     <input xmlns="http://www.w3.org/1999/xhtml"
1507     type="number"
1508     accept=""/>
1509     #errors
1510     /input/@accept;input attr not applicable;number;m
1511    
1512     #data
1513     <input xmlns="http://www.w3.org/1999/xhtml"
1514     type="number"
1515     action=""/>
1516     #errors
1517     /input/@action;input attr not applicable;number;m
1518    
1519     #data
1520     <input xmlns="http://www.w3.org/1999/xhtml"
1521     type="number"
1522     alt=""/>
1523     #errors
1524     /input/@alt;input attr not applicable;number;m
1525    
1526     #data
1527     <input xmlns="http://www.w3.org/1999/xhtml"
1528     type="number"
1529     checked=""/>
1530     #errors
1531     /input/@checked;input attr not applicable;number;m
1532    
1533     #data
1534     <input xmlns="http://www.w3.org/1999/xhtml"
1535     type="number"
1536     enctype=""/>
1537     #errors
1538     /input/@enctype;input attr not applicable;number;m
1539    
1540     #data
1541     <input xmlns="http://www.w3.org/1999/xhtml"
1542     type="number"
1543     maxlength=""/>
1544     #errors
1545     /input/@maxlength;input attr not applicable;number;m
1546    
1547     #data
1548     <input xmlns="http://www.w3.org/1999/xhtml"
1549     type="number"
1550     method=""/>
1551     #errors
1552     /input/@method;input attr not applicable;number;m
1553    
1554     #data
1555     <input xmlns="http://www.w3.org/1999/xhtml"
1556     type="number"
1557     pattern=""/>
1558     #errors
1559     /input/@pattern;input attr not applicable;number;m
1560    
1561     #data
1562     <input xmlns="http://www.w3.org/1999/xhtml"
1563     type="number"
1564     size=""/>
1565     #errors
1566     /input/@size;input attr not applicable;number;m
1567    
1568     #data
1569     <input xmlns="http://www.w3.org/1999/xhtml"
1570     type="number"
1571     src=""/>
1572     #errors
1573     /input/@src;input attr not applicable;number;m
1574    
1575     #data
1576     <input xmlns="http://www.w3.org/1999/xhtml"
1577     type="number"
1578     target=""/>
1579     #errors
1580     /input/@target;input attr not applicable;number;m
1581    
1582     #data
1583     <input xmlns="http://www.w3.org/1999/xhtml"
1584     type="range"
1585     accept=""/>
1586     #errors
1587     /input/@accept;input attr not applicable;range;m
1588    
1589     #data
1590     <input xmlns="http://www.w3.org/1999/xhtml"
1591     type="range"
1592     action=""/>
1593     #errors
1594     /input/@action;input attr not applicable;range;m
1595    
1596     #data
1597     <input xmlns="http://www.w3.org/1999/xhtml"
1598     type="range"
1599     alt=""/>
1600     #errors
1601     /input/@alt;input attr not applicable;range;m
1602    
1603     #data
1604     <input xmlns="http://www.w3.org/1999/xhtml"
1605     type="range"
1606     checked=""/>
1607     #errors
1608     /input/@checked;input attr not applicable;range;m
1609    
1610     #data
1611     <input xmlns="http://www.w3.org/1999/xhtml"
1612     type="range"
1613     enctype=""/>
1614     #errors
1615     /input/@enctype;input attr not applicable;range;m
1616    
1617     #data
1618     <input xmlns="http://www.w3.org/1999/xhtml"
1619     type="range"
1620     maxlength=""/>
1621     #errors
1622     /input/@maxlength;input attr not applicable;range;m
1623    
1624     #data
1625     <input xmlns="http://www.w3.org/1999/xhtml"
1626     type="range"
1627     method=""/>
1628     #errors
1629     /input/@method;input attr not applicable;range;m
1630    
1631     #data
1632     <input xmlns="http://www.w3.org/1999/xhtml"
1633     type="range"
1634     pattern=""/>
1635     #errors
1636     /input/@pattern;input attr not applicable;range;m
1637    
1638     #data
1639     <input xmlns="http://www.w3.org/1999/xhtml"
1640     type="range"
1641     size=""/>
1642     #errors
1643     /input/@size;input attr not applicable;range;m
1644    
1645     #data
1646     <input xmlns="http://www.w3.org/1999/xhtml"
1647     type="range"
1648     src=""/>
1649     #errors
1650     /input/@src;input attr not applicable;range;m
1651    
1652     #data
1653     <input xmlns="http://www.w3.org/1999/xhtml"
1654     type="range"
1655     target=""/>
1656     #errors
1657     /input/@target;input attr not applicable;range;m
1658    
1659     #data
1660     <input xmlns="http://www.w3.org/1999/xhtml"
1661     type="range"
1662     readonly=""/>
1663     #errors
1664     /input/@readonly;input attr not applicable;range;m
1665    
1666     #data
1667     <input xmlns="http://www.w3.org/1999/xhtml"
1668     type="range"
1669     required=""/>
1670     #errors
1671     /input/@required;input attr not applicable;range;m
1672    
1673     #data
1674     <input xmlns="http://www.w3.org/1999/xhtml"
1675     type="checkbox"
1676     accept=""/>
1677     #errors
1678     /input/@accept;input attr not applicable;checkbox;m
1679    
1680     #data
1681     <input xmlns="http://www.w3.org/1999/xhtml"
1682     type="checkbox"
1683     action=""/>
1684     #errors
1685     /input/@action;input attr not applicable;checkbox;m
1686    
1687     #data
1688     <input xmlns="http://www.w3.org/1999/xhtml"
1689     type="checkbox"
1690     alt=""/>
1691     #errors
1692     /input/@alt;input attr not applicable;checkbox;m
1693    
1694     #data
1695     <input xmlns="http://www.w3.org/1999/xhtml"
1696     type="checkbox"
1697     autocomplete=""/>
1698     #errors
1699     /input/@autocomplete;input attr not applicable;checkbox;m
1700    
1701     #data
1702     <input xmlns="http://www.w3.org/1999/xhtml"
1703     type="checkbox"
1704     enctype=""/>
1705     #errors
1706     /input/@enctype;input attr not applicable;checkbox;m
1707    
1708     #data
1709     <input xmlns="http://www.w3.org/1999/xhtml"
1710     type="checkbox"
1711     list=""/>
1712     #errors
1713     /input/@list;input attr not applicable;checkbox;m
1714    
1715     #data
1716     <input xmlns="http://www.w3.org/1999/xhtml"
1717     type="checkbox"
1718     max=""/>
1719     #errors
1720     /input/@max;input attr not applicable;checkbox;m
1721    
1722     #data
1723     <input xmlns="http://www.w3.org/1999/xhtml"
1724     type="checkbox"
1725     maxlength=""/>
1726     #errors
1727     /input/@maxlength;input attr not applicable;checkbox;m
1728    
1729     #data
1730     <input xmlns="http://www.w3.org/1999/xhtml"
1731     type="checkbox"
1732     method=""/>
1733     #errors
1734     /input/@method;input attr not applicable;checkbox;m
1735    
1736     #data
1737     <input xmlns="http://www.w3.org/1999/xhtml"
1738     type="checkbox"
1739     min=""/>
1740     #errors
1741     /input/@min;input attr not applicable;checkbox;m
1742    
1743     #data
1744     <input xmlns="http://www.w3.org/1999/xhtml"
1745     type="checkbox"
1746     pattern=""/>
1747     #errors
1748     /input/@pattern;input attr not applicable;checkbox;m
1749    
1750     #data
1751     <input xmlns="http://www.w3.org/1999/xhtml"
1752     type="checkbox"
1753     readonly=""/>
1754     #errors
1755     /input/@readonly;input attr not applicable;checkbox;m
1756    
1757     #data
1758     <input xmlns="http://www.w3.org/1999/xhtml"
1759     type="checkbox"
1760     size=""/>
1761     #errors
1762     /input/@size;input attr not applicable;checkbox;m
1763    
1764     #data
1765     <input xmlns="http://www.w3.org/1999/xhtml"
1766     type="checkbox"
1767     src=""/>
1768     #errors
1769     /input/@src;input attr not applicable;checkbox;m
1770    
1771     #data
1772     <input xmlns="http://www.w3.org/1999/xhtml"
1773     type="checkbox"
1774     step=""/>
1775     #errors
1776     /input/@step;input attr not applicable;checkbox;m
1777    
1778     #data
1779     <input xmlns="http://www.w3.org/1999/xhtml"
1780     type="checkbox"
1781     target=""/>
1782     #errors
1783     /input/@target;input attr not applicable;checkbox;m
1784    
1785     #data
1786     <input xmlns="http://www.w3.org/1999/xhtml"
1787     type="radio"
1788     accept=""/>
1789     #errors
1790     /input/@accept;input attr not applicable;radio;m
1791    
1792     #data
1793     <input xmlns="http://www.w3.org/1999/xhtml"
1794     type="radio"
1795     action=""/>
1796     #errors
1797     /input/@action;input attr not applicable;radio;m
1798    
1799     #data
1800     <input xmlns="http://www.w3.org/1999/xhtml"
1801     type="radio"
1802     alt=""/>
1803     #errors
1804     /input/@alt;input attr not applicable;radio;m
1805    
1806     #data
1807     <input xmlns="http://www.w3.org/1999/xhtml"
1808     type="radio"
1809     autocomplete=""/>
1810     #errors
1811     /input/@autocomplete;input attr not applicable;radio;m
1812    
1813     #data
1814     <input xmlns="http://www.w3.org/1999/xhtml"
1815     type="radio"
1816     enctype=""/>
1817     #errors
1818     /input/@enctype;input attr not applicable;radio;m
1819    
1820     #data
1821     <input xmlns="http://www.w3.org/1999/xhtml"
1822     type="radio"
1823     list=""/>
1824     #errors
1825     /input/@list;input attr not applicable;radio;m
1826    
1827     #data
1828     <input xmlns="http://www.w3.org/1999/xhtml"
1829     type="radio"
1830     max=""/>
1831     #errors
1832     /input/@max;input attr not applicable;radio;m
1833    
1834     #data
1835     <input xmlns="http://www.w3.org/1999/xhtml"
1836     type="radio"
1837     maxlength=""/>
1838     #errors
1839     /input/@maxlength;input attr not applicable;radio;m
1840    
1841     #data
1842     <input xmlns="http://www.w3.org/1999/xhtml"
1843     type="radio"
1844     method=""/>
1845     #errors
1846     /input/@method;input attr not applicable;radio;m
1847    
1848     #data
1849     <input xmlns="http://www.w3.org/1999/xhtml"
1850     type="radio"
1851     min=""/>
1852     #errors
1853     /input/@min;input attr not applicable;radio;m
1854    
1855     #data
1856     <input xmlns="http://www.w3.org/1999/xhtml"
1857     type="radio"
1858     pattern=""/>
1859     #errors
1860     /input/@pattern;input attr not applicable;radio;m
1861    
1862     #data
1863     <input xmlns="http://www.w3.org/1999/xhtml"
1864     type="radio"
1865     readonly=""/>
1866     #errors
1867     /input/@readonly;input attr not applicable;radio;m
1868    
1869     #data
1870     <input xmlns="http://www.w3.org/1999/xhtml"
1871     type="radio"
1872     size=""/>
1873     #errors
1874     /input/@size;input attr not applicable;radio;m
1875    
1876     #data
1877     <input xmlns="http://www.w3.org/1999/xhtml"
1878     type="radio"
1879     src=""/>
1880     #errors
1881     /input/@src;input attr not applicable;radio;m
1882    
1883     #data
1884     <input xmlns="http://www.w3.org/1999/xhtml"
1885     type="radio"
1886     step=""/>
1887     #errors
1888     /input/@step;input attr not applicable;radio;m
1889    
1890     #data
1891     <input xmlns="http://www.w3.org/1999/xhtml"
1892     type="radio"
1893     target=""/>
1894     #errors
1895     /input/@target;input attr not applicable;radio;m
1896    
1897     #data
1898     <input xmlns="http://www.w3.org/1999/xhtml"
1899     type="file"
1900     value=""/>
1901     #errors
1902     /input/@value;input attr not applicable;file;m
1903    
1904     #data
1905     <input xmlns="http://www.w3.org/1999/xhtml"
1906     type="file"
1907     action=""/>
1908     #errors
1909     /input/@action;input attr not applicable;file;m
1910    
1911     #data
1912     <input xmlns="http://www.w3.org/1999/xhtml"
1913     type="file"
1914     alt=""/>
1915     #errors
1916     /input/@alt;input attr not applicable;file;m
1917    
1918     #data
1919     <input xmlns="http://www.w3.org/1999/xhtml"
1920     type="file"
1921     autocomplete=""/>
1922     #errors
1923     /input/@autocomplete;input attr not applicable;file;m
1924    
1925     #data
1926     <input xmlns="http://www.w3.org/1999/xhtml"
1927     type="file"
1928     checked=""/>
1929     #errors
1930     /input/@checked;input attr not applicable;file;m
1931    
1932     #data
1933     <input xmlns="http://www.w3.org/1999/xhtml"
1934     type="file"
1935     enctype=""/>
1936     #errors
1937     /input/@enctype;input attr not applicable;file;m
1938    
1939     #data
1940     <input xmlns="http://www.w3.org/1999/xhtml"
1941     type="file"
1942     list=""/>
1943     #errors
1944     /input/@list;input attr not applicable;file;m
1945    
1946     #data
1947     <input xmlns="http://www.w3.org/1999/xhtml"
1948     type="file"
1949     max=""/>
1950     #errors
1951     /input/@max;input attr not applicable;file;m
1952    
1953     #data
1954     <input xmlns="http://www.w3.org/1999/xhtml"
1955     type="file"
1956     maxlength=""/>
1957     #errors
1958     /input/@maxlength;input attr not applicable;file;m
1959    
1960     #data
1961     <input xmlns="http://www.w3.org/1999/xhtml"
1962     type="file"
1963     method=""/>
1964     #errors
1965     /input/@method;input attr not applicable;file;m
1966    
1967     #data
1968     <input xmlns="http://www.w3.org/1999/xhtml"
1969     type="file"
1970     min=""/>
1971     #errors
1972     /input/@min;input attr not applicable;file;m
1973    
1974     #data
1975     <input xmlns="http://www.w3.org/1999/xhtml"
1976     type="file"
1977     pattern=""/>
1978     #errors
1979     /input/@pattern;input attr not applicable;file;m
1980    
1981     #data
1982     <input xmlns="http://www.w3.org/1999/xhtml"
1983     type="file"
1984     readonly=""/>
1985     #errors
1986     /input/@readonly;input attr not applicable;file;m
1987    
1988     #data
1989     <input xmlns="http://www.w3.org/1999/xhtml"
1990     type="file"
1991     size=""/>
1992     #errors
1993     /input/@size;input attr not applicable;file;m
1994    
1995     #data
1996     <input xmlns="http://www.w3.org/1999/xhtml"
1997     type="file"
1998     src=""/>
1999     #errors
2000     /input/@src;input attr not applicable;file;m
2001    
2002     #data
2003     <input xmlns="http://www.w3.org/1999/xhtml"
2004     type="file"
2005     step=""/>
2006     #errors
2007     /input/@step;input attr not applicable;file;m
2008    
2009     #data
2010     <input xmlns="http://www.w3.org/1999/xhtml"
2011     type="file"
2012     target=""/>
2013     #errors
2014     /input/@target;input attr not applicable;file;m
2015    
2016     #data
2017     <input xmlns="http://www.w3.org/1999/xhtml"
2018     type="submit"
2019     accept=""/>
2020     #errors
2021     /input/@accept;input attr not applicable;submit;m
2022    
2023     #data
2024     <input xmlns="http://www.w3.org/1999/xhtml"
2025     type="submit"
2026     alt=""/>
2027     #errors
2028     /input/@alt;input attr not applicable;submit;m
2029    
2030     #data
2031     <input xmlns="http://www.w3.org/1999/xhtml"
2032     type="submit"
2033     autocomplete=""/>
2034     #errors
2035     /input/@autocomplete;input attr not applicable;submit;m
2036    
2037     #data
2038     <input xmlns="http://www.w3.org/1999/xhtml"
2039     type="submit"
2040     checked=""/>
2041     #errors
2042     /input/@checked;input attr not applicable;submit;m
2043    
2044     #data
2045     <input xmlns="http://www.w3.org/1999/xhtml"
2046     type="submit"
2047     list=""/>
2048     #errors
2049     /input/@list;input attr not applicable;submit;m
2050    
2051     #data
2052     <input xmlns="http://www.w3.org/1999/xhtml"
2053     type="submit"
2054     max=""/>
2055     #errors
2056     /input/@max;input attr not applicable;submit;m
2057    
2058     #data
2059     <input xmlns="http://www.w3.org/1999/xhtml"
2060     type="submit"
2061     maxlength=""/>
2062     #errors
2063     /input/@maxlength;input attr not applicable;submit;m
2064    
2065     #data
2066     <input xmlns="http://www.w3.org/1999/xhtml"
2067     type="submit"
2068     min=""/>
2069     #errors
2070     /input/@min;input attr not applicable;submit;m
2071    
2072     #data
2073     <input xmlns="http://www.w3.org/1999/xhtml"
2074     type="submit"
2075     pattern=""/>
2076     #errors
2077     /input/@pattern;input attr not applicable;submit;m
2078    
2079     #data
2080     <input xmlns="http://www.w3.org/1999/xhtml"
2081     type="submit"
2082     readonly=""/>
2083     #errors
2084     /input/@readonly;input attr not applicable;submit;m
2085    
2086     #data
2087     <input xmlns="http://www.w3.org/1999/xhtml"
2088     type="submit"
2089     required=""/>
2090     #errors
2091     /input/@required;input attr not applicable;submit;m
2092    
2093     #data
2094     <input xmlns="http://www.w3.org/1999/xhtml"
2095     type="submit"
2096     size=""/>
2097     #errors
2098     /input/@size;input attr not applicable;submit;m
2099    
2100     #data
2101     <input xmlns="http://www.w3.org/1999/xhtml"
2102     type="submit"
2103     src=""/>
2104     #errors
2105     /input/@src;input attr not applicable;submit;m
2106    
2107     #data
2108     <input xmlns="http://www.w3.org/1999/xhtml"
2109     type="submit"
2110     step=""/>
2111     #errors
2112     /input/@step;input attr not applicable;submit;m
2113    
2114     #data
2115     <input xmlns="http://www.w3.org/1999/xhtml"
2116     type="image" alt="x" src=""
2117     accept=""/>
2118     #errors
2119     /input/@accept;input attr not applicable;image;m
2120    
2121     #data
2122     <input xmlns="http://www.w3.org/1999/xhtml"
2123     type="image" alt="x" src=""
2124     autocomplete=""/>
2125     #errors
2126     /input/@autocomplete;input attr not applicable;image;m
2127    
2128     #data
2129     <input xmlns="http://www.w3.org/1999/xhtml"
2130     type="image" alt="x" src=""
2131     checked=""/>
2132     #errors
2133     /input/@checked;input attr not applicable;image;m
2134    
2135     #data
2136     <input xmlns="http://www.w3.org/1999/xhtml"
2137     type="image" alt="x" src=""
2138     list=""/>
2139     #errors
2140     /input/@list;input attr not applicable;image;m
2141    
2142     #data
2143     <input xmlns="http://www.w3.org/1999/xhtml"
2144     type="image" alt="x" src=""
2145     max=""/>
2146     #errors
2147     /input/@max;input attr not applicable;image;m
2148    
2149     #data
2150     <input xmlns="http://www.w3.org/1999/xhtml"
2151     type="image" alt="x" src=""
2152     maxlength=""/>
2153     #errors
2154     /input/@maxlength;input attr not applicable;image;m
2155    
2156     #data
2157     <input xmlns="http://www.w3.org/1999/xhtml"
2158     type="image" alt="x" src=""
2159     min=""/>
2160     #errors
2161     /input/@min;input attr not applicable;image;m
2162    
2163     #data
2164     <input xmlns="http://www.w3.org/1999/xhtml"
2165     type="image" alt="x" src=""
2166     pattern=""/>
2167     #errors
2168     /input/@pattern;input attr not applicable;image;m
2169    
2170     #data
2171     <input xmlns="http://www.w3.org/1999/xhtml"
2172     type="image" alt="x" src=""
2173     readonly=""/>
2174     #errors
2175     /input/@readonly;input attr not applicable;image;m
2176    
2177     #data
2178     <input xmlns="http://www.w3.org/1999/xhtml"
2179     type="image" alt="x" src=""
2180     required=""/>
2181     #errors
2182     /input/@required;input attr not applicable;image;m
2183    
2184     #data
2185     <input xmlns="http://www.w3.org/1999/xhtml"
2186     type="image" alt="x" src=""
2187     size=""/>
2188     #errors
2189     /input/@size;input attr not applicable;image;m
2190    
2191     #data
2192     <input xmlns="http://www.w3.org/1999/xhtml"
2193     type="image" alt="x" src=""
2194     step=""/>
2195     #errors
2196     /input/@step;input attr not applicable;image;m
2197    
2198     #data
2199     <input xmlns="http://www.w3.org/1999/xhtml"
2200     type="image" alt="x" src=""
2201     value=""/>
2202     #errors
2203     /input/@value;input attr not applicable;image;m
2204    
2205     #data
2206     <input xmlns="http://www.w3.org/1999/xhtml"
2207     type="image" alt="" src=""/>
2208     #errors
2209     /input/@alt;empty anchor image alt;m
2210    
2211     #data
2212     <input xmlns="http://www.w3.org/1999/xhtml"
2213     type="image" alt=" " src=""/>
2214     #errors
2215    
2216     #data
2217     <input xmlns="http://www.w3.org/1999/xhtml"
2218     type="image" alt="
2219     " src=""/>
2220     #errors
2221    
2222     #data
2223     <input xmlns="http://www.w3.org/1999/xhtml"
2224     type="image" alt="[image]" src=""/>
2225     #errors
2226    
2227     #data
2228     <input xmlns="http://www.w3.org/1999/xhtml"
2229     type="reset"
2230     accept=""/>
2231     #errors
2232     /input/@accept;input attr not applicable;reset;m
2233    
2234     #data
2235     <input xmlns="http://www.w3.org/1999/xhtml"
2236     type="reset"
2237     action=""/>
2238     #errors
2239     /input/@action;input attr not applicable;reset;m
2240    
2241     #data
2242     <input xmlns="http://www.w3.org/1999/xhtml"
2243     type="reset"
2244     alt=""/>
2245     #errors
2246     /input/@alt;input attr not applicable;reset;m
2247    
2248     #data
2249     <input xmlns="http://www.w3.org/1999/xhtml"
2250     type="reset"
2251     autocomplete=""/>
2252     #errors
2253     /input/@autocomplete;input attr not applicable;reset;m
2254    
2255     #data
2256     <input xmlns="http://www.w3.org/1999/xhtml"
2257     type="reset"
2258     checked=""/>
2259     #errors
2260     /input/@checked;input attr not applicable;reset;m
2261    
2262     #data
2263     <input xmlns="http://www.w3.org/1999/xhtml"
2264     type="reset"
2265     enctype=""/>
2266     #errors
2267     /input/@enctype;input attr not applicable;reset;m
2268    
2269     #data
2270     <input xmlns="http://www.w3.org/1999/xhtml"
2271     type="reset"
2272     list=""/>
2273     #errors
2274     /input/@list;input attr not applicable;reset;m
2275    
2276     #data
2277     <input xmlns="http://www.w3.org/1999/xhtml"
2278     type="reset"
2279     max=""/>
2280     #errors
2281     /input/@max;input attr not applicable;reset;m
2282    
2283     #data
2284     <input xmlns="http://www.w3.org/1999/xhtml"
2285     type="reset"
2286     maxlength=""/>
2287     #errors
2288     /input/@maxlength;input attr not applicable;reset;m
2289    
2290     #data
2291     <input xmlns="http://www.w3.org/1999/xhtml"
2292     type="reset"
2293     method=""/>
2294     #errors
2295     /input/@method;input attr not applicable;reset;m
2296    
2297     #data
2298     <input xmlns="http://www.w3.org/1999/xhtml"
2299     type="reset"
2300     min=""/>
2301     #errors
2302     /input/@min;input attr not applicable;reset;m
2303    
2304     #data
2305     <input xmlns="http://www.w3.org/1999/xhtml"
2306     type="reset"
2307     pattern=""/>
2308     #errors
2309     /input/@pattern;input attr not applicable;reset;m
2310    
2311     #data
2312     <input xmlns="http://www.w3.org/1999/xhtml"
2313     type="reset"
2314     readonly=""/>
2315     #errors
2316     /input/@readonly;input attr not applicable;reset;m
2317    
2318     #data
2319     <input xmlns="http://www.w3.org/1999/xhtml"
2320     type="reset"
2321     required=""/>
2322     #errors
2323     /input/@required;input attr not applicable;reset;m
2324    
2325     #data
2326     <input xmlns="http://www.w3.org/1999/xhtml"
2327     type="reset"
2328     size=""/>
2329     #errors
2330     /input/@size;input attr not applicable;reset;m
2331    
2332     #data
2333     <input xmlns="http://www.w3.org/1999/xhtml"
2334     type="reset"
2335     src=""/>
2336     #errors
2337     /input/@src;input attr not applicable;reset;m
2338    
2339     #data
2340     <input xmlns="http://www.w3.org/1999/xhtml"
2341     type="reset"
2342     step=""/>
2343     #errors
2344     /input/@step;input attr not applicable;reset;m
2345    
2346     #data
2347     <input xmlns="http://www.w3.org/1999/xhtml"
2348     type="reset"
2349     target=""/>
2350     #errors
2351     /input/@target;input attr not applicable;reset;m
2352    
2353     #data
2354     <input xmlns="http://www.w3.org/1999/xhtml"
2355     type="button"
2356     accept=""/>
2357     #errors
2358     /input/@accept;input attr not applicable;button;m
2359    
2360     #data
2361     <input xmlns="http://www.w3.org/1999/xhtml"
2362     type="button"
2363     action=""/>
2364     #errors
2365     /input/@action;input attr not applicable;button;m
2366    
2367     #data
2368     <input xmlns="http://www.w3.org/1999/xhtml"
2369     type="button"
2370     alt=""/>
2371     #errors
2372     /input/@alt;input attr not applicable;button;m
2373    
2374     #data
2375     <input xmlns="http://www.w3.org/1999/xhtml"
2376     type="button"
2377     autocomplete=""/>
2378     #errors
2379     /input/@autocomplete;input attr not applicable;button;m
2380    
2381     #data
2382     <input xmlns="http://www.w3.org/1999/xhtml"
2383     type="button"
2384     checked=""/>
2385     #errors
2386     /input/@checked;input attr not applicable;button;m
2387    
2388     #data
2389     <input xmlns="http://www.w3.org/1999/xhtml"
2390     type="button"
2391     enctype=""/>
2392     #errors
2393     /input/@enctype;input attr not applicable;button;m
2394    
2395     #data
2396     <input xmlns="http://www.w3.org/1999/xhtml"
2397     type="button"
2398     list=""/>
2399     #errors
2400     /input/@list;input attr not applicable;button;m
2401    
2402     #data
2403     <input xmlns="http://www.w3.org/1999/xhtml"
2404     type="button"
2405     max=""/>
2406     #errors
2407     /input/@max;input attr not applicable;button;m
2408    
2409     #data
2410     <input xmlns="http://www.w3.org/1999/xhtml"
2411     type="button"
2412     maxlength=""/>
2413     #errors
2414     /input/@maxlength;input attr not applicable;button;m
2415    
2416     #data
2417     <input xmlns="http://www.w3.org/1999/xhtml"
2418     type="button"
2419     method=""/>
2420     #errors
2421     /input/@method;input attr not applicable;button;m
2422    
2423     #data
2424     <input xmlns="http://www.w3.org/1999/xhtml"
2425     type="button"
2426     min=""/>
2427     #errors
2428     /input/@min;input attr not applicable;button;m
2429    
2430     #data
2431     <input xmlns="http://www.w3.org/1999/xhtml"
2432     type="button"
2433     pattern=""/>
2434     #errors
2435     /input/@pattern;input attr not applicable;button;m
2436    
2437     #data
2438     <input xmlns="http://www.w3.org/1999/xhtml"
2439     type="button"
2440     readonly=""/>
2441     #errors
2442     /input/@readonly;input attr not applicable;button;m
2443    
2444     #data
2445     <input xmlns="http://www.w3.org/1999/xhtml"
2446     type="button"
2447     required=""/>
2448     #errors
2449     /input/@required;input attr not applicable;button;m
2450    
2451     #data
2452     <input xmlns="http://www.w3.org/1999/xhtml"
2453     type="button"
2454     size=""/>
2455     #errors
2456     /input/@size;input attr not applicable;button;m
2457    
2458     #data
2459     <input xmlns="http://www.w3.org/1999/xhtml"
2460     type="button"
2461     src=""/>
2462     #errors
2463     /input/@src;input attr not applicable;button;m
2464    
2465     #data
2466     <input xmlns="http://www.w3.org/1999/xhtml"
2467     type="button"
2468     step=""/>
2469     #errors
2470     /input/@step;input attr not applicable;button;m
2471    
2472     #data
2473     <input xmlns="http://www.w3.org/1999/xhtml"
2474     type="button"
2475     target=""/>
2476     #errors
2477     /input/@target;input attr not applicable;button;m
2478    
2479     #data
2480     <input xmlns="http://www.w3.org/1999/xhtml"
2481     type="add"
2482     accept=""/>
2483     #errors
2484     /input/@accept;input attr not applicable;add;m
2485     /input/@type;enumerated:invalid;m
2486    
2487     #data
2488     <input xmlns="http://www.w3.org/1999/xhtml"
2489     type="add"
2490     action=""/>
2491     #errors
2492     /input/@action;input attr not applicable;add;m
2493     /input/@type;enumerated:invalid;m
2494    
2495     #data
2496     <input xmlns="http://www.w3.org/1999/xhtml"
2497     type="add"
2498     alt=""/>
2499     #errors
2500     /input/@alt;input attr not applicable;add;m
2501     /input/@type;enumerated:invalid;m
2502    
2503     #data
2504     <input xmlns="http://www.w3.org/1999/xhtml"
2505     type="add"
2506     autocomplete=""/>
2507     #errors
2508     /input/@autocomplete;input attr not applicable;add;m
2509     /input/@type;enumerated:invalid;m
2510    
2511     #data
2512     <input xmlns="http://www.w3.org/1999/xhtml"
2513     type="add"
2514     checked=""/>
2515     #errors
2516     /input/@checked;input attr not applicable;add;m
2517     /input/@type;enumerated:invalid;m
2518    
2519     #data
2520     <input xmlns="http://www.w3.org/1999/xhtml"
2521     type="add"
2522     enctype=""/>
2523     #errors
2524     /input/@enctype;input attr not applicable;add;m
2525     /input/@type;enumerated:invalid;m
2526    
2527     #data
2528     <input xmlns="http://www.w3.org/1999/xhtml"
2529     type="add"
2530     list=""/>
2531     #errors
2532     /input/@list;input attr not applicable;add;m
2533     /input/@type;enumerated:invalid;m
2534    
2535     #data
2536     <input xmlns="http://www.w3.org/1999/xhtml"
2537     type="add"
2538     max=""/>
2539     #errors
2540     /input/@max;input attr not applicable;add;m
2541     /input/@type;enumerated:invalid;m
2542    
2543     #data
2544     <input xmlns="http://www.w3.org/1999/xhtml"
2545     type="add"
2546     maxlength=""/>
2547     #errors
2548     /input/@maxlength;input attr not applicable;add;m
2549     /input/@type;enumerated:invalid;m
2550    
2551     #data
2552     <input xmlns="http://www.w3.org/1999/xhtml"
2553     type="add"
2554     method=""/>
2555     #errors
2556     /input/@method;input attr not applicable;add;m
2557     /input/@type;enumerated:invalid;m
2558    
2559     #data
2560     <input xmlns="http://www.w3.org/1999/xhtml"
2561     type="add"
2562     min=""/>
2563     #errors
2564     /input/@min;input attr not applicable;add;m
2565     /input/@type;enumerated:invalid;m
2566    
2567     #data
2568     <input xmlns="http://www.w3.org/1999/xhtml"
2569     type="add"
2570     pattern=""/>
2571     #errors
2572     /input/@pattern;input attr not applicable;add;m
2573     /input/@type;enumerated:invalid;m
2574    
2575     #data
2576     <input xmlns="http://www.w3.org/1999/xhtml"
2577     type="add"
2578     readonly=""/>
2579     #errors
2580     /input/@readonly;input attr not applicable;add;m
2581     /input/@type;enumerated:invalid;m
2582    
2583     #data
2584     <input xmlns="http://www.w3.org/1999/xhtml"
2585     type="add"
2586     required=""/>
2587     #errors
2588     /input/@required;input attr not applicable;add;m
2589     /input/@type;enumerated:invalid;m
2590    
2591     #data
2592     <input xmlns="http://www.w3.org/1999/xhtml"
2593     type="add"
2594     size=""/>
2595     #errors
2596     /input/@size;input attr not applicable;add;m
2597     /input/@type;enumerated:invalid;m
2598    
2599     #data
2600     <input xmlns="http://www.w3.org/1999/xhtml"
2601     type="add"
2602     src=""/>
2603     #errors
2604     /input/@src;input attr not applicable;add;m
2605     /input/@type;enumerated:invalid;m
2606    
2607     #data
2608     <input xmlns="http://www.w3.org/1999/xhtml"
2609     type="add"
2610     step=""/>
2611     #errors
2612     /input/@step;input attr not applicable;add;m
2613     /input/@type;enumerated:invalid;m
2614    
2615     #data
2616     <input xmlns="http://www.w3.org/1999/xhtml"
2617     type="add"
2618     target=""/>
2619     #errors
2620     /input/@target;input attr not applicable;add;m
2621     /input/@type;enumerated:invalid;m
2622    
2623     #data
2624     <input xmlns="http://www.w3.org/1999/xhtml"
2625     type="remove"
2626     accept=""/>
2627     #errors
2628     /input/@accept;input attr not applicable;remove;m
2629     /input/@type;enumerated:invalid;m
2630    
2631     #data
2632     <input xmlns="http://www.w3.org/1999/xhtml"
2633     type="remove"
2634     action=""/>
2635     #errors
2636     /input/@action;input attr not applicable;remove;m
2637     /input/@type;enumerated:invalid;m
2638    
2639     #data
2640     <input xmlns="http://www.w3.org/1999/xhtml"
2641     type="remove"
2642     alt=""/>
2643     #errors
2644     /input/@alt;input attr not applicable;remove;m
2645     /input/@type;enumerated:invalid;m
2646    
2647     #data
2648     <input xmlns="http://www.w3.org/1999/xhtml"
2649     type="remove"
2650     autocomplete=""/>
2651     #errors
2652     /input/@autocomplete;input attr not applicable;remove;m
2653     /input/@type;enumerated:invalid;m
2654    
2655     #data
2656     <input xmlns="http://www.w3.org/1999/xhtml"
2657     type="remove"
2658     checked=""/>
2659     #errors
2660     /input/@checked;input attr not applicable;remove;m
2661     /input/@type;enumerated:invalid;m
2662    
2663     #data
2664     <input xmlns="http://www.w3.org/1999/xhtml"
2665     type="remove"
2666     enctype=""/>
2667     #errors
2668     /input/@enctype;input attr not applicable;remove;m
2669     /input/@type;enumerated:invalid;m
2670    
2671     #data
2672     <input xmlns="http://www.w3.org/1999/xhtml"
2673     type="remove"
2674     list=""/>
2675     #errors
2676     /input/@list;input attr not applicable;remove;m
2677     /input/@type;enumerated:invalid;m
2678    
2679     #data
2680     <input xmlns="http://www.w3.org/1999/xhtml"
2681     type="remove"
2682     max=""/>
2683     #errors
2684     /input/@max;input attr not applicable;remove;m
2685     /input/@type;enumerated:invalid;m
2686    
2687     #data
2688     <input xmlns="http://www.w3.org/1999/xhtml"
2689     type="remove"
2690     maxlength=""/>
2691     #errors
2692     /input/@maxlength;input attr not applicable;remove;m
2693     /input/@type;enumerated:invalid;m
2694    
2695     #data
2696     <input xmlns="http://www.w3.org/1999/xhtml"
2697     type="remove"
2698     method=""/>
2699     #errors
2700     /input/@method;input attr not applicable;remove;m
2701     /input/@type;enumerated:invalid;m
2702    
2703     #data
2704     <input xmlns="http://www.w3.org/1999/xhtml"
2705     type="remove"
2706     min=""/>
2707     #errors
2708     /input/@min;input attr not applicable;remove;m
2709     /input/@type;enumerated:invalid;m
2710    
2711     #data
2712     <input xmlns="http://www.w3.org/1999/xhtml"
2713     type="remove"
2714     pattern=""/>
2715     #errors
2716     /input/@pattern;input attr not applicable;remove;m
2717     /input/@type;enumerated:invalid;m
2718    
2719     #data
2720     <input xmlns="http://www.w3.org/1999/xhtml"
2721     type="remove"
2722     readonly=""/>
2723     #errors
2724     /input/@readonly;input attr not applicable;remove;m
2725     /input/@type;enumerated:invalid;m
2726    
2727     #data
2728     <input xmlns="http://www.w3.org/1999/xhtml"
2729     type="remove"
2730     required=""/>
2731     #errors
2732     /input/@required;input attr not applicable;remove;m
2733     /input/@type;enumerated:invalid;m
2734    
2735     #data
2736     <input xmlns="http://www.w3.org/1999/xhtml"
2737     type="remove"
2738     size=""/>
2739     #errors
2740     /input/@size;input attr not applicable;remove;m
2741     /input/@type;enumerated:invalid;m
2742    
2743     #data
2744     <input xmlns="http://www.w3.org/1999/xhtml"
2745     type="remove"
2746     src=""/>
2747     #errors
2748     /input/@src;input attr not applicable;remove;m
2749     /input/@type;enumerated:invalid;m
2750    
2751     #data
2752     <input xmlns="http://www.w3.org/1999/xhtml"
2753     type="remove"
2754     step=""/>
2755     #errors
2756     /input/@step;input attr not applicable;remove;m
2757     /input/@type;enumerated:invalid;m
2758    
2759     #data
2760     <input xmlns="http://www.w3.org/1999/xhtml"
2761     type="remove"
2762     target=""/>
2763     #errors
2764     /input/@target;input attr not applicable;remove;m
2765     /input/@type;enumerated:invalid;m
2766    
2767     #data
2768     <input xmlns="http://www.w3.org/1999/xhtml"
2769     type="move-up"
2770     accept=""/>
2771     #errors
2772     /input/@accept;input attr not applicable;move-up;m
2773     /input/@type;enumerated:invalid;m
2774    
2775     #data
2776     <input xmlns="http://www.w3.org/1999/xhtml"
2777     type="move-up"
2778     action=""/>
2779     #errors
2780     /input/@action;input attr not applicable;move-up;m
2781     /input/@type;enumerated:invalid;m
2782    
2783     #data
2784     <input xmlns="http://www.w3.org/1999/xhtml"
2785     type="move-up"
2786     alt=""/>
2787     #errors
2788     /input/@alt;input attr not applicable;move-up;m
2789     /input/@type;enumerated:invalid;m
2790    
2791     #data
2792     <input xmlns="http://www.w3.org/1999/xhtml"
2793     type="move-up"
2794     autocomplete=""/>
2795     #errors
2796     /input/@autocomplete;input attr not applicable;move-up;m
2797     /input/@type;enumerated:invalid;m
2798    
2799     #data
2800     <input xmlns="http://www.w3.org/1999/xhtml"
2801     type="move-up"
2802     checked=""/>
2803     #errors
2804     /input/@checked;input attr not applicable;move-up;m
2805     /input/@type;enumerated:invalid;m
2806    
2807     #data
2808     <input xmlns="http://www.w3.org/1999/xhtml"
2809     type="move-up"
2810     enctype=""/>
2811     #errors
2812     /input/@enctype;input attr not applicable;move-up;m
2813     /input/@type;enumerated:invalid;m
2814    
2815     #data
2816     <input xmlns="http://www.w3.org/1999/xhtml"
2817     type="move-up"
2818     list=""/>
2819     #errors
2820     /input/@list;input attr not applicable;move-up;m
2821     /input/@type;enumerated:invalid;m
2822    
2823     #data
2824     <input xmlns="http://www.w3.org/1999/xhtml"
2825     type="move-up"
2826     max=""/>
2827     #errors
2828     /input/@max;input attr not applicable;move-up;m
2829     /input/@type;enumerated:invalid;m
2830    
2831     #data
2832     <input xmlns="http://www.w3.org/1999/xhtml"
2833     type="move-up"
2834     maxlength=""/>
2835     #errors
2836     /input/@maxlength;input attr not applicable;move-up;m
2837     /input/@type;enumerated:invalid;m
2838    
2839     #data
2840     <input xmlns="http://www.w3.org/1999/xhtml"
2841     type="move-up"
2842     method=""/>
2843     #errors
2844     /input/@method;input attr not applicable;move-up;m
2845     /input/@type;enumerated:invalid;m
2846    
2847     #data
2848     <input xmlns="http://www.w3.org/1999/xhtml"
2849     type="move-up"
2850     min=""/>
2851     #errors
2852     /input/@min;input attr not applicable;move-up;m
2853     /input/@type;enumerated:invalid;m
2854    
2855     #data
2856     <input xmlns="http://www.w3.org/1999/xhtml"
2857     type="move-up"
2858     pattern=""/>
2859     #errors
2860     /input/@pattern;input attr not applicable;move-up;m
2861     /input/@type;enumerated:invalid;m
2862    
2863     #data
2864     <input xmlns="http://www.w3.org/1999/xhtml"
2865     type="move-up"
2866     readonly=""/>
2867     #errors
2868     /input/@readonly;input attr not applicable;move-up;m
2869     /input/@type;enumerated:invalid;m
2870    
2871     #data
2872     <input xmlns="http://www.w3.org/1999/xhtml"
2873     type="move-up"
2874     required=""/>
2875     #errors
2876     /input/@required;input attr not applicable;move-up;m
2877     /input/@type;enumerated:invalid;m
2878    
2879     #data
2880     <input xmlns="http://www.w3.org/1999/xhtml"
2881     type="move-up"
2882     size=""/>
2883     #errors
2884     /input/@size;input attr not applicable;move-up;m
2885     /input/@type;enumerated:invalid;m
2886    
2887     #data
2888     <input xmlns="http://www.w3.org/1999/xhtml"
2889     type="move-up"
2890     src=""/>
2891     #errors
2892     /input/@src;input attr not applicable;move-up;m
2893     /input/@type;enumerated:invalid;m
2894    
2895     #data
2896     <input xmlns="http://www.w3.org/1999/xhtml"
2897     type="move-up"
2898     step=""/>
2899     #errors
2900     /input/@step;input attr not applicable;move-up;m
2901     /input/@type;enumerated:invalid;m
2902    
2903     #data
2904     <input xmlns="http://www.w3.org/1999/xhtml"
2905     type="move-up"
2906     target=""/>
2907     #errors
2908     /input/@target;input attr not applicable;move-up;m
2909     /input/@type;enumerated:invalid;m
2910    
2911     #data
2912     <input xmlns="http://www.w3.org/1999/xhtml"
2913     type="move-down"
2914     accept=""/>
2915     #errors
2916     /input/@accept;input attr not applicable;move-down;m
2917     /input/@type;enumerated:invalid;m
2918    
2919     #data
2920     <input xmlns="http://www.w3.org/1999/xhtml"
2921     type="move-down"
2922     action=""/>
2923     #errors
2924     /input/@action;input attr not applicable;move-down;m
2925     /input/@type;enumerated:invalid;m
2926    
2927     #data
2928     <input xmlns="http://www.w3.org/1999/xhtml"
2929     type="move-down"
2930     alt=""/>
2931     #errors
2932     /input/@alt;input attr not applicable;move-down;m
2933     /input/@type;enumerated:invalid;m
2934    
2935     #data
2936     <input xmlns="http://www.w3.org/1999/xhtml"
2937     type="move-down"
2938     autocomplete=""/>
2939     #errors
2940     /input/@autocomplete;input attr not applicable;move-down;m
2941     /input/@type;enumerated:invalid;m
2942    
2943     #data
2944     <input xmlns="http://www.w3.org/1999/xhtml"
2945     type="move-down"
2946     checked=""/>
2947     #errors
2948     /input/@checked;input attr not applicable;move-down;m
2949     /input/@type;enumerated:invalid;m
2950    
2951     #data
2952     <input xmlns="http://www.w3.org/1999/xhtml"
2953     type="move-down"
2954     enctype=""/>
2955     #errors
2956     /input/@enctype;input attr not applicable;move-down;m
2957     /input/@type;enumerated:invalid;m
2958    
2959     #data
2960     <input xmlns="http://www.w3.org/1999/xhtml"
2961     type="move-down"
2962     list=""/>
2963     #errors
2964     /input/@list;input attr not applicable;move-down;m
2965     /input/@type;enumerated:invalid;m
2966    
2967     #data
2968     <input xmlns="http://www.w3.org/1999/xhtml"
2969     type="move-down"
2970     max=""/>
2971     #errors
2972     /input/@max;input attr not applicable;move-down;m
2973     /input/@type;enumerated:invalid;m
2974    
2975     #data
2976     <input xmlns="http://www.w3.org/1999/xhtml"
2977     type="move-down"
2978     maxlength=""/>
2979     #errors
2980     /input/@maxlength;input attr not applicable;move-down;m
2981     /input/@type;enumerated:invalid;m
2982    
2983     #data
2984     <input xmlns="http://www.w3.org/1999/xhtml"
2985     type="move-down"
2986     method=""/>
2987     #errors
2988     /input/@method;input attr not applicable;move-down;m
2989     /input/@type;enumerated:invalid;m
2990    
2991     #data
2992     <input xmlns="http://www.w3.org/1999/xhtml"
2993     type="move-down"
2994     min=""/>
2995     #errors
2996     /input/@min;input attr not applicable;move-down;m
2997     /input/@type;enumerated:invalid;m
2998    
2999     #data
3000     <input xmlns="http://www.w3.org/1999/xhtml"
3001     type="move-down"
3002     pattern=""/>
3003     #errors
3004     /input/@pattern;input attr not applicable;move-down;m
3005     /input/@type;enumerated:invalid;m
3006    
3007     #data
3008     <input xmlns="http://www.w3.org/1999/xhtml"
3009     type="move-down"
3010     readonly=""/>
3011     #errors
3012     /input/@readonly;input attr not applicable;move-down;m
3013     /input/@type;enumerated:invalid;m
3014    
3015     #data
3016     <input xmlns="http://www.w3.org/1999/xhtml"
3017     type="move-down"
3018     required=""/>
3019     #errors
3020     /input/@required;input attr not applicable;move-down;m
3021     /input/@type;enumerated:invalid;m
3022    
3023     #data
3024     <input xmlns="http://www.w3.org/1999/xhtml"
3025     type="move-down"
3026     size=""/>
3027     #errors
3028     /input/@size;input attr not applicable;move-down;m
3029     /input/@type;enumerated:invalid;m
3030    
3031     #data
3032     <input xmlns="http://www.w3.org/1999/xhtml"
3033     type="move-down"
3034     src=""/>
3035     #errors
3036     /input/@src;input attr not applicable;move-down;m
3037     /input/@type;enumerated:invalid;m
3038    
3039     #data
3040     <input xmlns="http://www.w3.org/1999/xhtml"
3041     type="move-down"
3042     step=""/>
3043     #errors
3044     /input/@step;input attr not applicable;move-down;m
3045     /input/@type;enumerated:invalid;m
3046    
3047     #data
3048     <input xmlns="http://www.w3.org/1999/xhtml"
3049     type="move-down"
3050     target=""/>
3051     #errors
3052     /input/@target;input attr not applicable;move-down;m
3053     /input/@type;enumerated:invalid;m
3054    
3055     #data
3056     <input xmlns="http://www.w3.org/1999/xhtml"
3057     type="text"
3058     value=""/>
3059     #errors
3060    
3061     #data
3062     <input xmlns="http://www.w3.org/1999/xhtml"
3063     type="text"
3064     value="abc xyz"/>
3065     #errors
3066    
3067     #data
3068     <input xmlns="http://www.w3.org/1999/xhtml"
3069 wakaba 1.12 type="text"
3070     value="abc&#xa;xyz"/>
3071     #errors
3072     /input/@value;newline in value;m
3073    
3074     #data
3075     <input xmlns="http://www.w3.org/1999/xhtml"
3076     type="text"
3077     value="abc&#xd;xyz"/>
3078     #errors
3079     /input/@value;newline in value;m
3080    
3081     #data
3082     <input xmlns="http://www.w3.org/1999/xhtml"
3083     type="text"
3084     value="abc&#xd;&#xa;xyz"/>
3085     #errors
3086     /input/@value;newline in value;m
3087    
3088     #data
3089     <input xmlns="http://www.w3.org/1999/xhtml"
3090     type="search"
3091     value=""/>
3092     #errors
3093    
3094     #data
3095     <input xmlns="http://www.w3.org/1999/xhtml"
3096     type="search"
3097     value="abc xyz"/>
3098     #errors
3099    
3100     #data
3101     <input xmlns="http://www.w3.org/1999/xhtml"
3102     type="search"
3103     value="abc&#xa;xyz"/>
3104     #errors
3105     /input/@value;newline in value;m
3106    
3107     #data
3108     <input xmlns="http://www.w3.org/1999/xhtml"
3109     type="search"
3110     value="abc&#xd;xyz"/>
3111     #errors
3112     /input/@value;newline in value;m
3113    
3114     #data
3115     <input xmlns="http://www.w3.org/1999/xhtml"
3116     type="search"
3117     value="abc&#xd;&#xa;xyz"/>
3118     #errors
3119     /input/@value;newline in value;m
3120    
3121     #data
3122     <input xmlns="http://www.w3.org/1999/xhtml"
3123 wakaba 1.5 type="password"
3124     value=""/>
3125     #errors
3126    
3127     #data
3128     <input xmlns="http://www.w3.org/1999/xhtml"
3129     type="password"
3130     value="abc xyz"/>
3131     #errors
3132    
3133     #data
3134     <input xmlns="http://www.w3.org/1999/xhtml"
3135 wakaba 1.12 type="password"
3136     value="abc&#xa;xyz"/>
3137     #errors
3138     /input/@value;newline in value;m
3139    
3140     #data
3141     <input xmlns="http://www.w3.org/1999/xhtml"
3142     type="password"
3143     value="abc&#xd;xyz"/>
3144     #errors
3145     /input/@value;newline in value;m
3146    
3147     #data
3148     <input xmlns="http://www.w3.org/1999/xhtml"
3149     type="password"
3150     value="abc&#xd;&#xa;xyz"/>
3151     #errors
3152     /input/@value;newline in value;m
3153    
3154     #data
3155     <input xmlns="http://www.w3.org/1999/xhtml"
3156     type="url"
3157     value=""/>
3158     #errors
3159    
3160     #data
3161     <input xmlns="http://www.w3.org/1999/xhtml"
3162     type="url"
3163     value="http://www.example.com/"/>
3164     #errors
3165    
3166     #data
3167     <input xmlns="http://www.w3.org/1999/xhtml"
3168     type="url"
3169     value="[]"/>
3170     #errors
3171     /input/@value;syntax error:iriref3987;m
3172    
3173     #data
3174     <input xmlns="http://www.w3.org/1999/xhtml"
3175     type="url"
3176     value="http://test/&#xa;"/>
3177     #errors
3178     /input/@value;syntax error:iriref3987;m
3179    
3180     #data
3181     <input xmlns="http://www.w3.org/1999/xhtml"
3182     type="email"
3183     value=""/>
3184     #errors
3185     /input/@value;email:syntax error;m
3186    
3187     #data
3188     <input xmlns="http://www.w3.org/1999/xhtml"
3189     type="email"
3190     value="@"/>
3191     #errors
3192     /input/@value;email:syntax error;m
3193    
3194     #data
3195     <input xmlns="http://www.w3.org/1999/xhtml"
3196     type="email"
3197     value="a@b"/>
3198     #errors
3199    
3200     #data
3201     <input xmlns="http://www.w3.org/1999/xhtml"
3202     type="email"
3203     value="[email protected]"/>
3204     #errors
3205    
3206     #data
3207     <input xmlns="http://www.w3.org/1999/xhtml"
3208     type="email"
3209     value='"foo"@[bar.test]'/>
3210     #errors
3211     /input/@value;email:syntax error;m
3212    
3213     #data
3214     <input xmlns="http://www.w3.org/1999/xhtml"
3215     type="email"
3216     value='""@example.net'/>
3217     #errors
3218     /input/@value;email:syntax error;m
3219    
3220     #data
3221     <input xmlns="http://www.w3.org/1999/xhtml"
3222     type="email"
3223     value='"a."@example.jp'/>
3224     #errors
3225     /input/@value;email:syntax error;m
3226    
3227     #data
3228     <input xmlns="http://www.w3.org/1999/xhtml"
3229     type="email"
3230     value="[email protected]"/>
3231     #errors
3232     /input/@value;email:syntax error;m
3233    
3234     #data
3235     <input xmlns="http://www.w3.org/1999/xhtml"
3236     type="email"
3237     value="[email protected]"/>
3238     #errors
3239     /input/@value;email:syntax error;m
3240    
3241     #data
3242     <input xmlns="http://www.w3.org/1999/xhtml"
3243     type="email"
3244     value="[email protected]"/>
3245     #errors
3246    
3247     #data
3248     <input xmlns="http://www.w3.org/1999/xhtml"
3249     type="email"
3250     value="a..b@c"/>
3251     #errors
3252     /input/@value;email:syntax error;m
3253    
3254     #data
3255     <input xmlns="http://www.w3.org/1999/xhtml"
3256     type="email"
3257     value="[email protected]"/>
3258     #errors
3259     /input/@value;email:syntax error;m
3260    
3261     #data
3262     <input xmlns="http://www.w3.org/1999/xhtml"
3263     type="email"
3264     value="[email protected]."/>
3265     #errors
3266     /input/@value;email:syntax error;m
3267    
3268     #data
3269     <input xmlns="http://www.w3.org/1999/xhtml"
3270     type="email"
3271     value="[email protected]"/>
3272     #errors
3273     /input/@value;email:syntax error;m
3274    
3275     #data
3276     <input xmlns="http://www.w3.org/1999/xhtml"
3277     type="email"
3278     value=" a@b "/>
3279     #errors
3280     /input/@value;email:syntax error;m
3281    
3282     #data
3283     <input xmlns="http://www.w3.org/1999/xhtml"
3284     type="email" multiple=""
3285     value=""/>
3286     #errors
3287     /input/@value;email:syntax error;m
3288    
3289     #data
3290     <input xmlns="http://www.w3.org/1999/xhtml"
3291     type="email" multiple=""
3292     value=" "/>
3293     #errors
3294     /input/@value;email:syntax error;m
3295    
3296     #data
3297     <input xmlns="http://www.w3.org/1999/xhtml"
3298     type="email" multiple=""
3299     value="a@b"/>
3300     #errors
3301    
3302     #data
3303     <input xmlns="http://www.w3.org/1999/xhtml"
3304     type="email" multiple=""
3305     value="a@b,c@d"/>
3306     #errors
3307    
3308     #data
3309     <input xmlns="http://www.w3.org/1999/xhtml"
3310     type="email" multiple=""
3311     value="[email protected], [email protected]"/>
3312     #errors
3313    
3314     #data
3315     <input xmlns="http://www.w3.org/1999/xhtml"
3316     type="email" multiple=""
3317     value=","/>
3318     #errors
3319     /input/@value;email:syntax error;m
3320     /input/@value;email:syntax error;m
3321    
3322     #data
3323     <input xmlns="http://www.w3.org/1999/xhtml"
3324     type="email" multiple=""
3325     value="a@b,"/>
3326     #errors
3327     /input/@value;email:syntax error;m
3328    
3329     #data
3330     <input xmlns="http://www.w3.org/1999/xhtml"
3331     type="email" multiple=""
3332     value=",a@b"/>
3333     #errors
3334     /input/@value;email:syntax error;m
3335    
3336     #data
3337     <input xmlns="http://www.w3.org/1999/xhtml"
3338     type="email" multiple=""
3339     value="a@b,,c@d"/>
3340     #errors
3341     /input/@value;email:syntax error;m
3342    
3343     #data
3344     <input xmlns="http://www.w3.org/1999/xhtml"
3345     type="email" multiple=""
3346     value="a@b.,c@d"/>
3347     #errors
3348     /input/@value;email:syntax error;m
3349    
3350     #data
3351     <input xmlns="http://www.w3.org/1999/xhtml"
3352     type="email" multiple=""
3353     value="<a@b>,c@d"/>
3354     #errors
3355     /input/@value;email:syntax error;m
3356    
3357     #data
3358     <input xmlns="http://www.w3.org/1999/xhtml"
3359 wakaba 1.5 type="submit"
3360     value=""/>
3361     #errors
3362    
3363     #data
3364     <input xmlns="http://www.w3.org/1999/xhtml"
3365     type="submit"
3366     value="abc xyz"/>
3367     #errors
3368    
3369     #data
3370     <input xmlns="http://www.w3.org/1999/xhtml"
3371     type="reset"
3372     value=""/>
3373     #errors
3374    
3375     #data
3376     <input xmlns="http://www.w3.org/1999/xhtml"
3377     type="reset"
3378     value="abc xyz"/>
3379     #errors
3380    
3381     #data
3382     <input xmlns="http://www.w3.org/1999/xhtml"
3383     type="button"
3384     value=""/>
3385     #errors
3386    
3387     #data
3388     <input xmlns="http://www.w3.org/1999/xhtml"
3389     type="button"
3390     value="abc xyz"/>
3391     #errors
3392    
3393     #data
3394     <input xmlns="http://www.w3.org/1999/xhtml"
3395     type="add"
3396     value=""/>
3397     #errors
3398     /input/@type;enumerated:invalid;m
3399    
3400     #data
3401     <input xmlns="http://www.w3.org/1999/xhtml"
3402     type="add"
3403     value="abc xyz"/>
3404     #errors
3405     /input/@type;enumerated:invalid;m
3406    
3407     #data
3408     <input xmlns="http://www.w3.org/1999/xhtml"
3409     type="remove"
3410     value=""/>
3411     #errors
3412     /input/@type;enumerated:invalid;m
3413    
3414     #data
3415     <input xmlns="http://www.w3.org/1999/xhtml"
3416     type="remove"
3417     value="abc xyz"/>
3418     #errors
3419     /input/@type;enumerated:invalid;m
3420    
3421     #data
3422     <input xmlns="http://www.w3.org/1999/xhtml"
3423     type="move-up"
3424     value=""/>
3425     #errors
3426     /input/@type;enumerated:invalid;m
3427    
3428     #data
3429     <input xmlns="http://www.w3.org/1999/xhtml"
3430     type="move-up"
3431     value="abc xyz"/>
3432     #errors
3433     /input/@type;enumerated:invalid;m
3434    
3435     #data
3436     <input xmlns="http://www.w3.org/1999/xhtml"
3437     type="move-down"
3438     value=""/>
3439     #errors
3440     /input/@type;enumerated:invalid;m
3441    
3442     #data
3443     <input xmlns="http://www.w3.org/1999/xhtml"
3444     type="move-down"
3445     value="abc xyz"/>
3446     #errors
3447     /input/@type;enumerated:invalid;m
3448 wakaba 1.6
3449     #data
3450     <input xmlns="http://www.w3.org/1999/xhtml"
3451     type="text"
3452     autocomplete=""/>
3453     #errors
3454     /input/@autocomplete;enumerated:invalid;m
3455    
3456     #data
3457     <input xmlns="http://www.w3.org/1999/xhtml"
3458     type="text"
3459     autocomplete="on"/>
3460     #errors
3461    
3462     #data
3463     <input xmlns="http://www.w3.org/1999/xhtml"
3464     type="text"
3465     autocomplete="off"/>
3466     #errors
3467    
3468     #data
3469     <input xmlns="http://www.w3.org/1999/xhtml"
3470     type="text"
3471     autocomplete="ON"/>
3472     #errors
3473    
3474     #data
3475     <input xmlns="http://www.w3.org/1999/xhtml"
3476     type="text"
3477     autocomplete="OFF"/>
3478     #errors
3479    
3480     #data
3481     <input xmlns="http://www.w3.org/1999/xhtml"
3482     type="text"
3483     autocomplete="OfF"/>
3484     #errors
3485    
3486     #data
3487     <input xmlns="http://www.w3.org/1999/xhtml"
3488     type="text"
3489     autocomplete="on "/>
3490     #errors
3491     /input/@autocomplete;enumerated:invalid;m
3492    
3493     #data
3494     <input xmlns="http://www.w3.org/1999/xhtml"
3495     type="text"
3496     autocomplete=" off"/>
3497     #errors
3498     /input/@autocomplete;enumerated:invalid;m
3499    
3500     #data
3501     <input xmlns="http://www.w3.org/1999/xhtml"
3502     type="text"
3503     autocomplete="yes"/>
3504     #errors
3505     /input/@autocomplete;enumerated:invalid;m
3506    
3507     #data
3508     <input xmlns="http://www.w3.org/1999/xhtml"
3509     type="text"
3510     autocomplete="no"/>
3511     #errors
3512     /input/@autocomplete;enumerated:invalid;m
3513    
3514     #data
3515     <input xmlns="http://www.w3.org/1999/xhtml"
3516     type="text"
3517     autocomplete="true"/>
3518     #errors
3519     /input/@autocomplete;enumerated:invalid;m
3520    
3521     #data
3522     <input xmlns="http://www.w3.org/1999/xhtml"
3523     type="text"
3524     autocomplete="false"/>
3525     #errors
3526     /input/@autocomplete;enumerated:invalid;m
3527    
3528     #data
3529     <input xmlns="http://www.w3.org/1999/xhtml"
3530     type="text"
3531     autocomplete="autocomplete"/>
3532     #errors
3533     /input/@autocomplete;enumerated:invalid;m
3534    
3535     #data
3536     <input xmlns="http://www.w3.org/1999/xhtml"
3537     type="text"
3538     autocomplete="inherit"/>
3539     #errors
3540     /input/@autocomplete;enumerated:invalid;m
3541    
3542     #data
3543     <input xmlns="http://www.w3.org/1999/xhtml"
3544     type="password"
3545     autocomplete=""/>
3546     #errors
3547     /input/@autocomplete;enumerated:invalid;m
3548    
3549     #data
3550     <input xmlns="http://www.w3.org/1999/xhtml"
3551     type="password"
3552     autocomplete="on"/>
3553     #errors
3554    
3555     #data
3556     <input xmlns="http://www.w3.org/1999/xhtml"
3557     type="password"
3558     autocomplete="off"/>
3559     #errors
3560    
3561     #data
3562     <input xmlns="http://www.w3.org/1999/xhtml"
3563     type="datetime"
3564     autocomplete=""/>
3565     #errors
3566     /input/@autocomplete;enumerated:invalid;m
3567    
3568     #data
3569     <input xmlns="http://www.w3.org/1999/xhtml"
3570     type="datetime"
3571     autocomplete="on"/>
3572     #errors
3573    
3574     #data
3575     <input xmlns="http://www.w3.org/1999/xhtml"
3576     type="datetime"
3577     autocomplete="off"/>
3578     #errors
3579    
3580     #data
3581     <input xmlns="http://www.w3.org/1999/xhtml"
3582     type="date"
3583     autocomplete=""/>
3584     #errors
3585     /input/@autocomplete;enumerated:invalid;m
3586    
3587     #data
3588     <input xmlns="http://www.w3.org/1999/xhtml"
3589     type="date"
3590     autocomplete="on"/>
3591     #errors
3592    
3593     #data
3594     <input xmlns="http://www.w3.org/1999/xhtml"
3595     type="date"
3596     autocomplete="off"/>
3597     #errors
3598    
3599     #data
3600     <input xmlns="http://www.w3.org/1999/xhtml"
3601     type="month"
3602     autocomplete=""/>
3603     #errors
3604     /input/@autocomplete;enumerated:invalid;m
3605    
3606     #data
3607     <input xmlns="http://www.w3.org/1999/xhtml"
3608     type="month"
3609     autocomplete="on"/>
3610     #errors
3611    
3612     #data
3613     <input xmlns="http://www.w3.org/1999/xhtml"
3614     type="month"
3615     autocomplete="off"/>
3616     #errors
3617    
3618     #data
3619     <input xmlns="http://www.w3.org/1999/xhtml"
3620     type="week"
3621     autocomplete=""/>
3622     #errors
3623     /input/@autocomplete;enumerated:invalid;m
3624    
3625     #data
3626     <input xmlns="http://www.w3.org/1999/xhtml"
3627     type="week"
3628     autocomplete="on"/>
3629     #errors
3630    
3631     #data
3632     <input xmlns="http://www.w3.org/1999/xhtml"
3633     type="week"
3634     autocomplete="off"/>
3635     #errors
3636    
3637     #data
3638     <input xmlns="http://www.w3.org/1999/xhtml"
3639     type="time"
3640     autocomplete=""/>
3641     #errors
3642     /input/@autocomplete;enumerated:invalid;m
3643    
3644     #data
3645     <input xmlns="http://www.w3.org/1999/xhtml"
3646     type="time"
3647     autocomplete="on"/>
3648     #errors
3649    
3650     #data
3651     <input xmlns="http://www.w3.org/1999/xhtml"
3652     type="time"
3653     autocomplete="off"/>
3654     #errors
3655    
3656     #data
3657     <input xmlns="http://www.w3.org/1999/xhtml"
3658     type="datetime-local"
3659     autocomplete=""/>
3660     #errors
3661     /input/@autocomplete;enumerated:invalid;m
3662    
3663     #data
3664     <input xmlns="http://www.w3.org/1999/xhtml"
3665     type="datetime-local"
3666     autocomplete="on"/>
3667     #errors
3668    
3669     #data
3670     <input xmlns="http://www.w3.org/1999/xhtml"
3671     type="datetime-local"
3672     autocomplete="off"/>
3673     #errors
3674    
3675     #data
3676     <input xmlns="http://www.w3.org/1999/xhtml"
3677     type="number"
3678     autocomplete=""/>
3679     #errors
3680     /input/@autocomplete;enumerated:invalid;m
3681    
3682     #data
3683     <input xmlns="http://www.w3.org/1999/xhtml"
3684     type="number"
3685     autocomplete="on"/>
3686     #errors
3687    
3688     #data
3689     <input xmlns="http://www.w3.org/1999/xhtml"
3690     type="number"
3691     autocomplete="off"/>
3692     #errors
3693    
3694     #data
3695     <input xmlns="http://www.w3.org/1999/xhtml"
3696     type="range"
3697     autocomplete=""/>
3698     #errors
3699     /input/@autocomplete;enumerated:invalid;m
3700    
3701     #data
3702     <input xmlns="http://www.w3.org/1999/xhtml"
3703     type="range"
3704     autocomplete="on"/>
3705     #errors
3706    
3707     #data
3708     <input xmlns="http://www.w3.org/1999/xhtml"
3709     type="range"
3710     autocomplete="off"/>
3711     #errors
3712    
3713     #data
3714     <input xmlns="http://www.w3.org/1999/xhtml"
3715     type="range"
3716     autocomplete="ON"/>
3717     #errors
3718    
3719     #data
3720     <input xmlns="http://www.w3.org/1999/xhtml"
3721     type="range"
3722     autocomplete="OFF"/>
3723     #errors
3724    
3725     #data
3726     <input xmlns="http://www.w3.org/1999/xhtml"
3727     type="range"
3728     autocomplete="OfF"/>
3729     #errors
3730    
3731     #data
3732     <input xmlns="http://www.w3.org/1999/xhtml"
3733     type="range"
3734     autocomplete="on "/>
3735     #errors
3736     /input/@autocomplete;enumerated:invalid;m
3737    
3738     #data
3739     <input xmlns="http://www.w3.org/1999/xhtml"
3740     type="range"
3741     autocomplete=" off"/>
3742     #errors
3743     /input/@autocomplete;enumerated:invalid;m
3744    
3745     #data
3746     <input xmlns="http://www.w3.org/1999/xhtml"
3747     type="range"
3748     autocomplete="yes"/>
3749     #errors
3750     /input/@autocomplete;enumerated:invalid;m
3751    
3752     #data
3753     <input xmlns="http://www.w3.org/1999/xhtml"
3754     type="range"
3755     autocomplete="no"/>
3756     #errors
3757     /input/@autocomplete;enumerated:invalid;m
3758    
3759     #data
3760     <input xmlns="http://www.w3.org/1999/xhtml"
3761     type="range"
3762     autocomplete="true"/>
3763     #errors
3764     /input/@autocomplete;enumerated:invalid;m
3765    
3766     #data
3767     <input xmlns="http://www.w3.org/1999/xhtml"
3768     type="range"
3769     autocomplete="false"/>
3770     #errors
3771     /input/@autocomplete;enumerated:invalid;m
3772    
3773     #data
3774     <input xmlns="http://www.w3.org/1999/xhtml"
3775     type="range"
3776     autocomplete="autocomplete"/>
3777     #errors
3778     /input/@autocomplete;enumerated:invalid;m
3779    
3780     #data
3781     <input xmlns="http://www.w3.org/1999/xhtml"
3782     type="range"
3783     autocomplete="inherit"/>
3784     #errors
3785     /input/@autocomplete;enumerated:invalid;m
3786    
3787     #data
3788     <input xmlns="http://www.w3.org/1999/xhtml"
3789     type="text"
3790     readonly=""/>
3791     #errors
3792    
3793     #data
3794     <input xmlns="http://www.w3.org/1999/xhtml"
3795     type="text"
3796     readonly="readonly"/>
3797     #errors
3798    
3799     #data
3800     <input xmlns="http://www.w3.org/1999/xhtml"
3801     type="text"
3802     readonly="Readonly"/>
3803     #errors
3804    
3805     #data
3806     <input xmlns="http://www.w3.org/1999/xhtml"
3807     type="text"
3808     readonly="ReadOnly"/>
3809     #errors
3810    
3811     #data
3812     <input xmlns="http://www.w3.org/1999/xhtml"
3813     type="text"
3814     readonly="readonly "/>
3815     #errors
3816     /input/@readonly;boolean:invalid;m
3817    
3818     #data
3819     <input xmlns="http://www.w3.org/1999/xhtml"
3820     type="text"
3821     readonly=" readonly"/>
3822     #errors
3823     /input/@readonly;boolean:invalid;m
3824    
3825     #data
3826     <input xmlns="http://www.w3.org/1999/xhtml"
3827     type="text"
3828     readonly="yes"/>
3829     #errors
3830     /input/@readonly;boolean:invalid;m
3831    
3832     #data
3833     <input xmlns="http://www.w3.org/1999/xhtml"
3834     type="text"
3835     readonly="true"/>
3836     #errors
3837     /input/@readonly;boolean:invalid;m
3838    
3839     #data
3840     <input xmlns="http://www.w3.org/1999/xhtml"
3841     type="text"
3842     readonly="off"/>
3843     #errors
3844     /input/@readonly;boolean:invalid;m
3845    
3846     #data
3847     <input xmlns="http://www.w3.org/1999/xhtml"
3848     type="email"
3849     readonly=""/>
3850     #errors
3851    
3852     #data
3853     <input xmlns="http://www.w3.org/1999/xhtml"
3854     type="email"
3855     readonly="readonly"/>
3856     #errors
3857    
3858     #data
3859     <input xmlns="http://www.w3.org/1999/xhtml"
3860     type="email"
3861     readonly="Readonly"/>
3862     #errors
3863    
3864     #data
3865     <input xmlns="http://www.w3.org/1999/xhtml"
3866     type="email"
3867     readonly="ReadOnly"/>
3868     #errors
3869    
3870     #data
3871     <input xmlns="http://www.w3.org/1999/xhtml"
3872     type="email"
3873     readonly="readonly "/>
3874     #errors
3875     /input/@readonly;boolean:invalid;m
3876    
3877     #data
3878     <input xmlns="http://www.w3.org/1999/xhtml"
3879     type="email"
3880     readonly=" readonly"/>
3881     #errors
3882     /input/@readonly;boolean:invalid;m
3883    
3884     #data
3885     <input xmlns="http://www.w3.org/1999/xhtml"
3886     type="email"
3887     readonly="yes"/>
3888     #errors
3889     /input/@readonly;boolean:invalid;m
3890    
3891     #data
3892     <input xmlns="http://www.w3.org/1999/xhtml"
3893     type="email"
3894     readonly="true"/>
3895     #errors
3896     /input/@readonly;boolean:invalid;m
3897    
3898     #data
3899     <input xmlns="http://www.w3.org/1999/xhtml"
3900     type="email"
3901     readonly="off"/>
3902     #errors
3903     /input/@readonly;boolean:invalid;m
3904    
3905     #data
3906     <input xmlns="http://www.w3.org/1999/xhtml"
3907     type="url"
3908     readonly=""/>
3909     #errors
3910    
3911     #data
3912     <input xmlns="http://www.w3.org/1999/xhtml"
3913     type="url"
3914     readonly="readonly"/>
3915     #errors
3916    
3917     #data
3918     <input xmlns="http://www.w3.org/1999/xhtml"
3919     type="url"
3920     readonly="Readonly"/>
3921     #errors
3922    
3923     #data
3924     <input xmlns="http://www.w3.org/1999/xhtml"
3925     type="url"
3926     readonly="ReadOnly"/>
3927     #errors
3928    
3929     #data
3930     <input xmlns="http://www.w3.org/1999/xhtml"
3931     type="url"
3932     readonly="readonly "/>
3933     #errors
3934     /input/@readonly;boolean:invalid;m
3935    
3936     #data
3937     <input xmlns="http://www.w3.org/1999/xhtml"
3938     type="url"
3939     readonly=" readonly"/>
3940     #errors
3941     /input/@readonly;boolean:invalid;m
3942    
3943     #data
3944     <input xmlns="http://www.w3.org/1999/xhtml"
3945     type="url"
3946     readonly="yes"/>
3947     #errors
3948     /input/@readonly;boolean:invalid;m
3949    
3950     #data
3951     <input xmlns="http://www.w3.org/1999/xhtml"
3952     type="url"
3953     readonly="true"/>
3954     #errors
3955     /input/@readonly;boolean:invalid;m
3956    
3957     #data
3958     <input xmlns="http://www.w3.org/1999/xhtml"
3959     type="url"
3960     readonly="off"/>
3961     #errors
3962     /input/@readonly;boolean:invalid;m
3963    
3964     #data
3965     <input xmlns="http://www.w3.org/1999/xhtml"
3966 wakaba 1.12 type="search"
3967     readonly=""/>
3968     #errors
3969    
3970     #data
3971     <input xmlns="http://www.w3.org/1999/xhtml"
3972     type="search"
3973     readonly="readonly"/>
3974     #errors
3975    
3976     #data
3977     <input xmlns="http://www.w3.org/1999/xhtml"
3978     type="search"
3979     readonly="Readonly"/>
3980     #errors
3981    
3982     #data
3983     <input xmlns="http://www.w3.org/1999/xhtml"
3984     type="search"
3985     readonly="ReadOnly"/>
3986     #errors
3987    
3988     #data
3989     <input xmlns="http://www.w3.org/1999/xhtml"
3990     type="search"
3991     readonly="readonly "/>
3992     #errors
3993     /input/@readonly;boolean:invalid;m
3994    
3995     #data
3996     <input xmlns="http://www.w3.org/1999/xhtml"
3997     type="search"
3998     readonly=" readonly"/>
3999     #errors
4000     /input/@readonly;boolean:invalid;m
4001    
4002     #data
4003     <input xmlns="http://www.w3.org/1999/xhtml"
4004     type="search"
4005     readonly="yes"/>
4006     #errors
4007     /input/@readonly;boolean:invalid;m
4008    
4009     #data
4010     <input xmlns="http://www.w3.org/1999/xhtml"
4011     type="search"
4012     readonly="true"/>
4013     #errors
4014     /input/@readonly;boolean:invalid;m
4015    
4016     #data
4017     <input xmlns="http://www.w3.org/1999/xhtml"
4018     type="search"
4019     readonly="off"/>
4020     #errors
4021     /input/@readonly;boolean:invalid;m
4022    
4023     #data
4024     <input xmlns="http://www.w3.org/1999/xhtml"
4025 wakaba 1.6 type="password"
4026     readonly=""/>
4027     #errors
4028    
4029     #data
4030     <input xmlns="http://www.w3.org/1999/xhtml"
4031     type="password"
4032     readonly="readonly"/>
4033     #errors
4034    
4035     #data
4036     <input xmlns="http://www.w3.org/1999/xhtml"
4037     type="password"
4038     readonly="Readonly"/>
4039     #errors
4040    
4041     #data
4042     <input xmlns="http://www.w3.org/1999/xhtml"
4043     type="password"
4044     readonly="ReadOnly"/>
4045     #errors
4046    
4047     #data
4048     <input xmlns="http://www.w3.org/1999/xhtml"
4049     type="password"
4050     readonly="readonly "/>
4051     #errors
4052     /input/@readonly;boolean:invalid;m
4053    
4054     #data
4055     <input xmlns="http://www.w3.org/1999/xhtml"
4056     type="password"
4057     readonly=" readonly"/>
4058     #errors
4059     /input/@readonly;boolean:invalid;m
4060    
4061     #data
4062     <input xmlns="http://www.w3.org/1999/xhtml"
4063     type="password"
4064     readonly="yes"/>
4065     #errors
4066     /input/@readonly;boolean:invalid;m
4067    
4068     #data
4069     <input xmlns="http://www.w3.org/1999/xhtml"
4070     type="password"
4071     readonly="true"/>
4072     #errors
4073     /input/@readonly;boolean:invalid;m
4074    
4075     #data
4076     <input xmlns="http://www.w3.org/1999/xhtml"
4077     type="password"
4078     readonly="off"/>
4079     #errors
4080     /input/@readonly;boolean:invalid;m
4081    
4082     #data
4083     <input xmlns="http://www.w3.org/1999/xhtml"
4084     type="datetime"
4085     readonly=""/>
4086     #errors
4087    
4088     #data
4089     <input xmlns="http://www.w3.org/1999/xhtml"
4090     type="datetime"
4091     readonly="readonly"/>
4092     #errors
4093    
4094     #data
4095     <input xmlns="http://www.w3.org/1999/xhtml"
4096     type="datetime"
4097     readonly="Readonly"/>
4098     #errors
4099    
4100     #data
4101     <input xmlns="http://www.w3.org/1999/xhtml"
4102     type="datetime"
4103     readonly="ReadOnly"/>
4104     #errors
4105    
4106     #data
4107     <input xmlns="http://www.w3.org/1999/xhtml"
4108     type="datetime"
4109     readonly="readonly "/>
4110     #errors
4111     /input/@readonly;boolean:invalid;m
4112    
4113     #data
4114     <input xmlns="http://www.w3.org/1999/xhtml"
4115     type="datetime"
4116     readonly=" readonly"/>
4117     #errors
4118     /input/@readonly;boolean:invalid;m
4119    
4120     #data
4121     <input xmlns="http://www.w3.org/1999/xhtml"
4122     type="datetime"
4123     readonly="yes"/>
4124     #errors
4125     /input/@readonly;boolean:invalid;m
4126    
4127     #data
4128     <input xmlns="http://www.w3.org/1999/xhtml"
4129     type="datetime"
4130     readonly="true"/>
4131     #errors
4132     /input/@readonly;boolean:invalid;m
4133    
4134     #data
4135     <input xmlns="http://www.w3.org/1999/xhtml"
4136     type="datetime"
4137     readonly="off"/>
4138     #errors
4139     /input/@readonly;boolean:invalid;m
4140    
4141     #data
4142     <input xmlns="http://www.w3.org/1999/xhtml"
4143     type="date"
4144     readonly=""/>
4145     #errors
4146    
4147     #data
4148     <input xmlns="http://www.w3.org/1999/xhtml"
4149     type="date"
4150     readonly="readonly"/>
4151     #errors
4152    
4153     #data
4154     <input xmlns="http://www.w3.org/1999/xhtml"
4155     type="date"
4156     readonly="Readonly"/>
4157     #errors
4158    
4159     #data
4160     <input xmlns="http://www.w3.org/1999/xhtml"
4161     type="date"
4162     readonly="ReadOnly"/>
4163     #errors
4164    
4165     #data
4166     <input xmlns="http://www.w3.org/1999/xhtml"
4167     type="date"
4168     readonly="readonly "/>
4169     #errors
4170     /input/@readonly;boolean:invalid;m
4171    
4172     #data
4173     <input xmlns="http://www.w3.org/1999/xhtml"
4174     type="date"
4175     readonly=" readonly"/>
4176     #errors
4177     /input/@readonly;boolean:invalid;m
4178    
4179     #data
4180     <input xmlns="http://www.w3.org/1999/xhtml"
4181     type="date"
4182     readonly="yes"/>
4183     #errors
4184     /input/@readonly;boolean:invalid;m
4185    
4186     #data
4187     <input xmlns="http://www.w3.org/1999/xhtml"
4188     type="date"
4189     readonly="true"/>
4190     #errors
4191     /input/@readonly;boolean:invalid;m
4192    
4193     #data
4194     <input xmlns="http://www.w3.org/1999/xhtml"
4195     type="date"
4196     readonly="off"/>
4197     #errors
4198     /input/@readonly;boolean:invalid;m
4199    
4200     #data
4201     <input xmlns="http://www.w3.org/1999/xhtml"
4202     type="month"
4203     readonly=""/>
4204     #errors
4205    
4206     #data
4207     <input xmlns="http://www.w3.org/1999/xhtml"
4208     type="month"
4209     readonly="readonly"/>
4210     #errors
4211    
4212     #data
4213     <input xmlns="http://www.w3.org/1999/xhtml"
4214     type="month"
4215     readonly="Readonly"/>
4216     #errors
4217    
4218     #data
4219     <input xmlns="http://www.w3.org/1999/xhtml"
4220     type="month"
4221     readonly="ReadOnly"/>
4222     #errors
4223    
4224     #data
4225     <input xmlns="http://www.w3.org/1999/xhtml"
4226     type="month"
4227     readonly="readonly "/>
4228     #errors
4229     /input/@readonly;boolean:invalid;m
4230    
4231     #data
4232     <input xmlns="http://www.w3.org/1999/xhtml"
4233     type="month"
4234     readonly=" readonly"/>
4235     #errors
4236     /input/@readonly;boolean:invalid;m
4237    
4238     #data
4239     <input xmlns="http://www.w3.org/1999/xhtml"
4240     type="month"
4241     readonly="yes"/>
4242     #errors
4243     /input/@readonly;boolean:invalid;m
4244    
4245     #data
4246     <input xmlns="http://www.w3.org/1999/xhtml"
4247     type="month"
4248     readonly="true"/>
4249     #errors
4250     /input/@readonly;boolean:invalid;m
4251    
4252     #data
4253     <input xmlns="http://www.w3.org/1999/xhtml"
4254     type="month"
4255     readonly="off"/>
4256     #errors
4257     /input/@readonly;boolean:invalid;m
4258    
4259     #data
4260     <input xmlns="http://www.w3.org/1999/xhtml"
4261     type="week"
4262     readonly=""/>
4263     #errors
4264    
4265     #data
4266     <input xmlns="http://www.w3.org/1999/xhtml"
4267     type="week"
4268     readonly="readonly"/>
4269     #errors
4270    
4271     #data
4272     <input xmlns="http://www.w3.org/1999/xhtml"
4273     type="week"
4274     readonly="Readonly"/>
4275     #errors
4276    
4277     #data
4278     <input xmlns="http://www.w3.org/1999/xhtml"
4279     type="week"
4280     readonly="ReadOnly"/>
4281     #errors
4282    
4283     #data
4284     <input xmlns="http://www.w3.org/1999/xhtml"
4285     type="week"
4286     readonly="readonly "/>
4287     #errors
4288     /input/@readonly;boolean:invalid;m
4289    
4290     #data
4291     <input xmlns="http://www.w3.org/1999/xhtml"
4292     type="week"
4293     readonly=" readonly"/>
4294     #errors
4295     /input/@readonly;boolean:invalid;m
4296    
4297     #data
4298     <input xmlns="http://www.w3.org/1999/xhtml"
4299     type="week"
4300     readonly="yes"/>
4301     #errors
4302     /input/@readonly;boolean:invalid;m
4303    
4304     #data
4305     <input xmlns="http://www.w3.org/1999/xhtml"
4306     type="week"
4307     readonly="true"/>
4308     #errors
4309     /input/@readonly;boolean:invalid;m
4310    
4311     #data
4312     <input xmlns="http://www.w3.org/1999/xhtml"
4313     type="week"
4314     readonly="off"/>
4315     #errors
4316     /input/@readonly;boolean:invalid;m
4317    
4318     #data
4319     <input xmlns="http://www.w3.org/1999/xhtml"
4320     type="time"
4321     readonly=""/>
4322     #errors
4323    
4324     #data
4325     <input xmlns="http://www.w3.org/1999/xhtml"
4326     type="time"
4327     readonly="readonly"/>
4328     #errors
4329    
4330     #data
4331     <input xmlns="http://www.w3.org/1999/xhtml"
4332     type="time"
4333     readonly="Readonly"/>
4334     #errors
4335    
4336     #data
4337     <input xmlns="http://www.w3.org/1999/xhtml"
4338     type="time"
4339     readonly="ReadOnly"/>
4340     #errors
4341    
4342     #data
4343     <input xmlns="http://www.w3.org/1999/xhtml"
4344     type="time"
4345     readonly="readonly "/>
4346     #errors
4347     /input/@readonly;boolean:invalid;m
4348    
4349     #data
4350     <input xmlns="http://www.w3.org/1999/xhtml"
4351     type="time"
4352     readonly=" readonly"/>
4353     #errors
4354     /input/@readonly;boolean:invalid;m
4355    
4356     #data
4357     <input xmlns="http://www.w3.org/1999/xhtml"
4358     type="time"
4359     readonly="yes"/>
4360     #errors
4361     /input/@readonly;boolean:invalid;m
4362    
4363     #data
4364     <input xmlns="http://www.w3.org/1999/xhtml"
4365     type="time"
4366     readonly="true"/>
4367     #errors
4368     /input/@readonly;boolean:invalid;m
4369    
4370     #data
4371     <input xmlns="http://www.w3.org/1999/xhtml"
4372     type="time"
4373     readonly="off"/>
4374     #errors
4375     /input/@readonly;boolean:invalid;m
4376    
4377     #data
4378     <input xmlns="http://www.w3.org/1999/xhtml"
4379     type="datetime-local"
4380     readonly=""/>
4381     #errors
4382    
4383     #data
4384     <input xmlns="http://www.w3.org/1999/xhtml"
4385     type="datetime-local"
4386     readonly="readonly"/>
4387     #errors
4388    
4389     #data
4390     <input xmlns="http://www.w3.org/1999/xhtml"
4391     type="datetime-local"
4392     readonly="Readonly"/>
4393     #errors
4394    
4395     #data
4396     <input xmlns="http://www.w3.org/1999/xhtml"
4397     type="datetime-local"
4398     readonly="ReadOnly"/>
4399     #errors
4400    
4401     #data
4402     <input xmlns="http://www.w3.org/1999/xhtml"
4403     type="datetime-local"
4404     readonly="readonly "/>
4405     #errors
4406     /input/@readonly;boolean:invalid;m
4407    
4408     #data
4409     <input xmlns="http://www.w3.org/1999/xhtml"
4410     type="datetime-local"
4411     readonly=" readonly"/>
4412     #errors
4413     /input/@readonly;boolean:invalid;m
4414    
4415     #data
4416     <input xmlns="http://www.w3.org/1999/xhtml"
4417     type="datetime-local"
4418     readonly="yes"/>
4419     #errors
4420     /input/@readonly;boolean:invalid;m
4421    
4422     #data
4423     <input xmlns="http://www.w3.org/1999/xhtml"
4424     type="datetime-local"
4425     readonly="true"/>
4426     #errors
4427     /input/@readonly;boolean:invalid;m
4428    
4429     #data
4430     <input xmlns="http://www.w3.org/1999/xhtml"
4431     type="datetime-local"
4432     readonly="off"/>
4433     #errors
4434     /input/@readonly;boolean:invalid;m
4435    
4436     #data
4437     <input xmlns="http://www.w3.org/1999/xhtml"
4438     type="number"
4439     readonly=""/>
4440     #errors
4441    
4442     #data
4443     <input xmlns="http://www.w3.org/1999/xhtml"
4444     type="number"
4445     readonly="readonly"/>
4446     #errors
4447    
4448     #data
4449     <input xmlns="http://www.w3.org/1999/xhtml"
4450     type="number"
4451     readonly="Readonly"/>
4452     #errors
4453    
4454     #data
4455     <input xmlns="http://www.w3.org/1999/xhtml"
4456     type="number"
4457     readonly="ReadOnly"/>
4458     #errors
4459    
4460     #data
4461     <input xmlns="http://www.w3.org/1999/xhtml"
4462     type="number"
4463     readonly="readonly "/>
4464     #errors
4465     /input/@readonly;boolean:invalid;m
4466    
4467     #data
4468     <input xmlns="http://www.w3.org/1999/xhtml"
4469     type="number"
4470     readonly=" readonly"/>
4471     #errors
4472     /input/@readonly;boolean:invalid;m
4473    
4474     #data
4475     <input xmlns="http://www.w3.org/1999/xhtml"
4476     type="number"
4477     readonly="yes"/>
4478     #errors
4479     /input/@readonly;boolean:invalid;m
4480    
4481     #data
4482     <input xmlns="http://www.w3.org/1999/xhtml"
4483     type="number"
4484     readonly="true"/>
4485     #errors
4486     /input/@readonly;boolean:invalid;m
4487    
4488     #data
4489     <input xmlns="http://www.w3.org/1999/xhtml"
4490     type="number"
4491     readonly="off"/>
4492     #errors
4493     /input/@readonly;boolean:invalid;m
4494    
4495     #data
4496     <input xmlns="http://www.w3.org/1999/xhtml"
4497     type="text"
4498     size=""/>
4499     #errors
4500     /input/@size;nninteger:syntax error;m
4501    
4502     #data
4503     <input xmlns="http://www.w3.org/1999/xhtml"
4504     type="text"
4505     size="0"/>
4506     #errors
4507 wakaba 1.8 /input/@size;nninteger:out of range;m
4508 wakaba 1.6
4509     #data
4510     <input xmlns="http://www.w3.org/1999/xhtml"
4511     type="text"
4512     size="1"/>
4513     #errors
4514    
4515     #data
4516     <input xmlns="http://www.w3.org/1999/xhtml"
4517     type="text"
4518     size="100"/>
4519     #errors
4520    
4521     #data
4522     <input xmlns="http://www.w3.org/1999/xhtml"
4523     type="text"
4524     size="000000010"/>
4525     #errors
4526    
4527     #data
4528     <input xmlns="http://www.w3.org/1999/xhtml"
4529     type="text"
4530     size="-0"/>
4531     #errors
4532     /input/@size;nninteger:syntax error;m
4533    
4534     #data
4535     <input xmlns="http://www.w3.org/1999/xhtml"
4536     type="text"
4537     size="-12"/>
4538     #errors
4539     /input/@size;nninteger:syntax error;m
4540    
4541     #data
4542     <input xmlns="http://www.w3.org/1999/xhtml"
4543     type="text"
4544     size="0.00"/>
4545     #errors
4546     /input/@size;nninteger:syntax error;m
4547    
4548     #data
4549     <input xmlns="http://www.w3.org/1999/xhtml"
4550     type="text"
4551     size="100.0"/>
4552     #errors
4553     /input/@size;nninteger:syntax error;m
4554    
4555     #data
4556     <input xmlns="http://www.w3.org/1999/xhtml"
4557     type="text"
4558     size=" 4"/>
4559     #errors
4560     /input/@size;nninteger:syntax error;m
4561    
4562     #data
4563     <input xmlns="http://www.w3.org/1999/xhtml"
4564     type="text"
4565     size="55 "/>
4566     #errors
4567     /input/@size;nninteger:syntax error;m
4568    
4569     #data
4570     <input xmlns="http://www.w3.org/1999/xhtml"
4571     type="text"
4572     size="+43"/>
4573     #errors
4574     /input/@size;nninteger:syntax error;m
4575    
4576     #data
4577     <input xmlns="http://www.w3.org/1999/xhtml"
4578     type="text"
4579     size="4e5"/>
4580     #errors
4581     /input/@size;nninteger:syntax error;m
4582    
4583     #data
4584     <input xmlns="http://www.w3.org/1999/xhtml"
4585     type="text"
4586     size="4px"/>
4587     #errors
4588     /input/@size;nninteger:syntax error;m
4589    
4590     #data
4591     <input xmlns="http://www.w3.org/1999/xhtml"
4592     type="text"
4593     size="5em"/>
4594     #errors
4595     /input/@size;nninteger:syntax error;m
4596    
4597     #data
4598     <input xmlns="http://www.w3.org/1999/xhtml"
4599     type="email"
4600     size=""/>
4601     #errors
4602     /input/@size;nninteger:syntax error;m
4603    
4604     #data
4605     <input xmlns="http://www.w3.org/1999/xhtml"
4606     type="email"
4607     size="0"/>
4608     #errors
4609 wakaba 1.8 /input/@size;nninteger:out of range;m
4610 wakaba 1.6
4611     #data
4612     <input xmlns="http://www.w3.org/1999/xhtml"
4613 wakaba 1.12 type="email"
4614     size="1"/>
4615     #errors
4616    
4617     #data
4618     <input xmlns="http://www.w3.org/1999/xhtml"
4619     type="email"
4620     size="100"/>
4621     #errors
4622    
4623     #data
4624     <input xmlns="http://www.w3.org/1999/xhtml"
4625     type="email"
4626     size="000000010"/>
4627     #errors
4628    
4629     #data
4630     <input xmlns="http://www.w3.org/1999/xhtml"
4631     type="email"
4632     size="-0"/>
4633     #errors
4634     /input/@size;nninteger:syntax error;m
4635    
4636     #data
4637     <input xmlns="http://www.w3.org/1999/xhtml"
4638     type="email"
4639     size="-12"/>
4640     #errors
4641     /input/@size;nninteger:syntax error;m
4642    
4643     #data
4644     <input xmlns="http://www.w3.org/1999/xhtml"
4645     type="email"
4646     size="0.00"/>
4647     #errors
4648     /input/@size;nninteger:syntax error;m
4649    
4650     #data
4651     <input xmlns="http://www.w3.org/1999/xhtml"
4652     type="email"
4653     size="100.0"/>
4654     #errors
4655     /input/@size;nninteger:syntax error;m
4656    
4657     #data
4658     <input xmlns="http://www.w3.org/1999/xhtml"
4659     type="email"
4660     size=" 4"/>
4661     #errors
4662     /input/@size;nninteger:syntax error;m
4663    
4664     #data
4665     <input xmlns="http://www.w3.org/1999/xhtml"
4666     type="email"
4667     size="55 "/>
4668     #errors
4669     /input/@size;nninteger:syntax error;m
4670    
4671     #data
4672     <input xmlns="http://www.w3.org/1999/xhtml"
4673     type="email"
4674     size="+43"/>
4675     #errors
4676     /input/@size;nninteger:syntax error;m
4677    
4678     #data
4679     <input xmlns="http://www.w3.org/1999/xhtml"
4680     type="email"
4681     size="4e5"/>
4682     #errors
4683     /input/@size;nninteger:syntax error;m
4684    
4685     #data
4686     <input xmlns="http://www.w3.org/1999/xhtml"
4687     type="email"
4688     size="4px"/>
4689     #errors
4690     /input/@size;nninteger:syntax error;m
4691    
4692     #data
4693     <input xmlns="http://www.w3.org/1999/xhtml"
4694     type="email"
4695     size="5em"/>
4696     #errors
4697     /input/@size;nninteger:syntax error;m
4698    
4699     #data
4700     <input xmlns="http://www.w3.org/1999/xhtml"
4701     type="url"
4702     size=""/>
4703     #errors
4704     /input/@size;nninteger:syntax error;m
4705    
4706     #data
4707     <input xmlns="http://www.w3.org/1999/xhtml"
4708     type="url"
4709     size="0"/>
4710     #errors
4711     /input/@size;nninteger:out of range;m
4712    
4713     #data
4714     <input xmlns="http://www.w3.org/1999/xhtml"
4715     type="url"
4716 wakaba 1.6 size="1"/>
4717     #errors
4718    
4719     #data
4720     <input xmlns="http://www.w3.org/1999/xhtml"
4721 wakaba 1.12 type="url"
4722 wakaba 1.6 size="100"/>
4723     #errors
4724    
4725     #data
4726     <input xmlns="http://www.w3.org/1999/xhtml"
4727 wakaba 1.12 type="url"
4728 wakaba 1.6 size="000000010"/>
4729     #errors
4730    
4731     #data
4732     <input xmlns="http://www.w3.org/1999/xhtml"
4733 wakaba 1.12 type="url"
4734 wakaba 1.6 size="-0"/>
4735     #errors
4736     /input/@size;nninteger:syntax error;m
4737    
4738     #data
4739     <input xmlns="http://www.w3.org/1999/xhtml"
4740 wakaba 1.12 type="url"
4741 wakaba 1.6 size="-12"/>
4742     #errors
4743     /input/@size;nninteger:syntax error;m
4744    
4745     #data
4746     <input xmlns="http://www.w3.org/1999/xhtml"
4747 wakaba 1.12 type="url"
4748 wakaba 1.6 size="0.00"/>
4749     #errors
4750     /input/@size;nninteger:syntax error;m
4751    
4752     #data
4753     <input xmlns="http://www.w3.org/1999/xhtml"
4754 wakaba 1.12 type="url"
4755 wakaba 1.6 size="100.0"/>
4756     #errors
4757     /input/@size;nninteger:syntax error;m
4758    
4759     #data
4760     <input xmlns="http://www.w3.org/1999/xhtml"
4761 wakaba 1.12 type="url"
4762 wakaba 1.6 size=" 4"/>
4763     #errors
4764     /input/@size;nninteger:syntax error;m
4765    
4766     #data
4767     <input xmlns="http://www.w3.org/1999/xhtml"
4768 wakaba 1.12 type="url"
4769 wakaba 1.6 size="55 "/>
4770     #errors
4771     /input/@size;nninteger:syntax error;m
4772    
4773     #data
4774     <input xmlns="http://www.w3.org/1999/xhtml"
4775 wakaba 1.12 type="url"
4776 wakaba 1.6 size="+43"/>
4777     #errors
4778     /input/@size;nninteger:syntax error;m
4779    
4780     #data
4781     <input xmlns="http://www.w3.org/1999/xhtml"
4782 wakaba 1.12 type="url"
4783 wakaba 1.6 size="4e5"/>
4784     #errors
4785     /input/@size;nninteger:syntax error;m
4786    
4787     #data
4788     <input xmlns="http://www.w3.org/1999/xhtml"
4789 wakaba 1.12 type="url"
4790 wakaba 1.6 size="4px"/>
4791     #errors
4792     /input/@size;nninteger:syntax error;m
4793    
4794     #data
4795     <input xmlns="http://www.w3.org/1999/xhtml"
4796 wakaba 1.12 type="url"
4797 wakaba 1.6 size="5em"/>
4798     #errors
4799     /input/@size;nninteger:syntax error;m
4800    
4801     #data
4802     <input xmlns="http://www.w3.org/1999/xhtml"
4803 wakaba 1.12 type="search"
4804 wakaba 1.6 size=""/>
4805     #errors
4806     /input/@size;nninteger:syntax error;m
4807    
4808     #data
4809     <input xmlns="http://www.w3.org/1999/xhtml"
4810 wakaba 1.12 type="search"
4811 wakaba 1.6 size="0"/>
4812     #errors
4813 wakaba 1.8 /input/@size;nninteger:out of range;m
4814 wakaba 1.6
4815     #data
4816     <input xmlns="http://www.w3.org/1999/xhtml"
4817 wakaba 1.12 type="search"
4818 wakaba 1.6 size="1"/>
4819     #errors
4820    
4821     #data
4822     <input xmlns="http://www.w3.org/1999/xhtml"
4823 wakaba 1.12 type="search"
4824 wakaba 1.6 size="100"/>
4825     #errors
4826    
4827     #data
4828     <input xmlns="http://www.w3.org/1999/xhtml"
4829 wakaba 1.12 type="search"
4830 wakaba 1.6 size="000000010"/>
4831     #errors
4832    
4833     #data
4834     <input xmlns="http://www.w3.org/1999/xhtml"
4835 wakaba 1.12 type="search"
4836 wakaba 1.6 size="-0"/>
4837     #errors
4838     /input/@size;nninteger:syntax error;m
4839    
4840     #data
4841     <input xmlns="http://www.w3.org/1999/xhtml"
4842 wakaba 1.12 type="search"
4843 wakaba 1.6 size="-12"/>
4844     #errors
4845     /input/@size;nninteger:syntax error;m
4846    
4847     #data
4848     <input xmlns="http://www.w3.org/1999/xhtml"
4849 wakaba 1.12 type="search"
4850 wakaba 1.6 size="0.00"/>
4851     #errors
4852     /input/@size;nninteger:syntax error;m
4853    
4854     #data
4855     <input xmlns="http://www.w3.org/1999/xhtml"
4856 wakaba 1.12 type="search"
4857 wakaba 1.6 size="100.0"/>
4858     #errors
4859     /input/@size;nninteger:syntax error;m
4860    
4861     #data
4862     <input xmlns="http://www.w3.org/1999/xhtml"
4863 wakaba 1.12 type="search"
4864 wakaba 1.6 size=" 4"/>
4865     #errors
4866     /input/@size;nninteger:syntax error;m
4867    
4868     #data
4869     <input xmlns="http://www.w3.org/1999/xhtml"
4870 wakaba 1.12 type="search"
4871 wakaba 1.6 size="55 "/>
4872     #errors
4873     /input/@size;nninteger:syntax error;m
4874    
4875     #data
4876     <input xmlns="http://www.w3.org/1999/xhtml"
4877 wakaba 1.12 type="search"
4878 wakaba 1.6 size="+43"/>
4879     #errors
4880     /input/@size;nninteger:syntax error;m
4881    
4882     #data
4883     <input xmlns="http://www.w3.org/1999/xhtml"
4884 wakaba 1.12 type="search"
4885 wakaba 1.6 size="4e5"/>
4886     #errors
4887     /input/@size;nninteger:syntax error;m
4888    
4889     #data
4890     <input xmlns="http://www.w3.org/1999/xhtml"
4891 wakaba 1.12 type="search"
4892 wakaba 1.6 size="4px"/>
4893     #errors
4894     /input/@size;nninteger:syntax error;m
4895    
4896     #data
4897     <input xmlns="http://www.w3.org/1999/xhtml"
4898 wakaba 1.12 type="search"
4899 wakaba 1.6 size="5em"/>
4900     #errors
4901     /input/@size;nninteger:syntax error;m
4902    
4903     #data
4904     <input xmlns="http://www.w3.org/1999/xhtml"
4905     type="password"
4906     size=""/>
4907     #errors
4908     /input/@size;nninteger:syntax error;m
4909    
4910     #data
4911     <input xmlns="http://www.w3.org/1999/xhtml"
4912     type="password"
4913     size="0"/>
4914     #errors
4915 wakaba 1.8 /input/@size;nninteger:out of range;m
4916 wakaba 1.6
4917     #data
4918     <input xmlns="http://www.w3.org/1999/xhtml"
4919     type="password"
4920     size="1"/>
4921     #errors
4922    
4923     #data
4924     <input xmlns="http://www.w3.org/1999/xhtml"
4925     type="password"
4926     size="100"/>
4927     #errors
4928    
4929     #data
4930     <input xmlns="http://www.w3.org/1999/xhtml"
4931     type="password"
4932     size="000000010"/>
4933     #errors
4934    
4935     #data
4936     <input xmlns="http://www.w3.org/1999/xhtml"
4937     type="password"
4938     size="-0"/>
4939     #errors
4940     /input/@size;nninteger:syntax error;m
4941    
4942     #data
4943     <input xmlns="http://www.w3.org/1999/xhtml"
4944     type="password"
4945     size="-12"/>
4946     #errors
4947     /input/@size;nninteger:syntax error;m
4948    
4949     #data
4950     <input xmlns="http://www.w3.org/1999/xhtml"
4951     type="password"
4952     size="0.00"/>
4953     #errors
4954     /input/@size;nninteger:syntax error;m
4955    
4956     #data
4957     <input xmlns="http://www.w3.org/1999/xhtml"
4958     type="password"
4959     size="100.0"/>
4960     #errors
4961     /input/@size;nninteger:syntax error;m
4962    
4963     #data
4964     <input xmlns="http://www.w3.org/1999/xhtml"
4965     type="password"
4966     size=" 4"/>
4967     #errors
4968     /input/@size;nninteger:syntax error;m
4969    
4970     #data
4971     <input xmlns="http://www.w3.org/1999/xhtml"
4972     type="password"
4973     size="55 "/>
4974     #errors
4975     /input/@size;nninteger:syntax error;m
4976    
4977     #data
4978     <input xmlns="http://www.w3.org/1999/xhtml"
4979     type="password"
4980     size="+43"/>
4981     #errors
4982     /input/@size;nninteger:syntax error;m
4983    
4984     #data
4985     <input xmlns="http://www.w3.org/1999/xhtml"
4986     type="password"
4987     size="4e5"/>
4988     #errors
4989     /input/@size;nninteger:syntax error;m
4990    
4991     #data
4992     <input xmlns="http://www.w3.org/1999/xhtml"
4993     type="password"
4994     size="4px"/>
4995     #errors
4996     /input/@size;nninteger:syntax error;m
4997    
4998     #data
4999     <input xmlns="http://www.w3.org/1999/xhtml"
5000     type="password"
5001     size="5em"/>
5002     #errors
5003     /input/@size;nninteger:syntax error;m
5004 wakaba 1.7
5005     #data
5006     <input xmlns="http://www.w3.org/1999/xhtml"
5007     type="text"
5008     required=""/>
5009     #errors
5010    
5011     #data
5012     <input xmlns="http://www.w3.org/1999/xhtml"
5013     type="text"
5014     required="required"/>
5015     #errors
5016    
5017     #data
5018     <input xmlns="http://www.w3.org/1999/xhtml"
5019     type="text"
5020     required="Required"/>
5021     #errors
5022    
5023     #data
5024     <input xmlns="http://www.w3.org/1999/xhtml"
5025     type="text"
5026     required="RequireD"/>
5027     #errors
5028    
5029     #data
5030     <input xmlns="http://www.w3.org/1999/xhtml"
5031     type="text"
5032     required="required "/>
5033     #errors
5034     /input/@required;boolean:invalid;m
5035    
5036     #data
5037     <input xmlns="http://www.w3.org/1999/xhtml"
5038     type="text"
5039     required=" required"/>
5040     #errors
5041     /input/@required;boolean:invalid;m
5042    
5043     #data
5044     <input xmlns="http://www.w3.org/1999/xhtml"
5045     type="text"
5046     required="yes"/>
5047     #errors
5048     /input/@required;boolean:invalid;m
5049    
5050     #data
5051     <input xmlns="http://www.w3.org/1999/xhtml"
5052     type="text"
5053     required="true"/>
5054     #errors
5055     /input/@required;boolean:invalid;m
5056    
5057     #data
5058     <input xmlns="http://www.w3.org/1999/xhtml"
5059     type="text"
5060     required="off"/>
5061     #errors
5062     /input/@required;boolean:invalid;m
5063    
5064     #data
5065     <input xmlns="http://www.w3.org/1999/xhtml"
5066     type="email"
5067     required=""/>
5068     #errors
5069    
5070     #data
5071     <input xmlns="http://www.w3.org/1999/xhtml"
5072     type="email"
5073     required="required"/>
5074     #errors
5075    
5076     #data
5077     <input xmlns="http://www.w3.org/1999/xhtml"
5078     type="email"
5079     required="Required"/>
5080     #errors
5081    
5082     #data
5083     <input xmlns="http://www.w3.org/1999/xhtml"
5084     type="email"
5085     required="RequireD"/>
5086     #errors
5087    
5088     #data
5089     <input xmlns="http://www.w3.org/1999/xhtml"
5090     type="email"
5091     required="required "/>
5092     #errors
5093     /input/@required;boolean:invalid;m
5094    
5095     #data
5096     <input xmlns="http://www.w3.org/1999/xhtml"
5097     type="email"
5098     required=" required"/>
5099     #errors
5100     /input/@required;boolean:invalid;m
5101    
5102     #data
5103     <input xmlns="http://www.w3.org/1999/xhtml"
5104     type="email"
5105     required="yes"/>
5106     #errors
5107     /input/@required;boolean:invalid;m
5108    
5109     #data
5110     <input xmlns="http://www.w3.org/1999/xhtml"
5111     type="email"
5112     required="true"/>
5113     #errors
5114     /input/@required;boolean:invalid;m
5115    
5116     #data
5117     <input xmlns="http://www.w3.org/1999/xhtml"
5118     type="email"
5119     required="off"/>
5120     #errors
5121     /input/@required;boolean:invalid;m
5122    
5123     #data
5124     <input xmlns="http://www.w3.org/1999/xhtml"
5125     type="url"
5126     required=""/>
5127     #errors
5128    
5129     #data
5130     <input xmlns="http://www.w3.org/1999/xhtml"
5131     type="url"
5132     required="required"/>
5133     #errors
5134    
5135     #data
5136     <input xmlns="http://www.w3.org/1999/xhtml"
5137     type="url"
5138     required="Required"/>
5139     #errors
5140    
5141     #data
5142     <input xmlns="http://www.w3.org/1999/xhtml"
5143     type="url"
5144     required="RequireD"/>
5145     #errors
5146    
5147     #data
5148     <input xmlns="http://www.w3.org/1999/xhtml"
5149     type="url"
5150     required="required "/>
5151     #errors
5152     /input/@required;boolean:invalid;m
5153    
5154     #data
5155     <input xmlns="http://www.w3.org/1999/xhtml"
5156     type="url"
5157     required=" required"/>
5158     #errors
5159     /input/@required;boolean:invalid;m
5160    
5161     #data
5162     <input xmlns="http://www.w3.org/1999/xhtml"
5163     type="url"
5164     required="yes"/>
5165     #errors
5166     /input/@required;boolean:invalid;m
5167    
5168     #data
5169     <input xmlns="http://www.w3.org/1999/xhtml"
5170     type="url"
5171     required="true"/>
5172     #errors
5173     /input/@required;boolean:invalid;m
5174    
5175     #data
5176     <input xmlns="http://www.w3.org/1999/xhtml"
5177     type="url"
5178     required="off"/>
5179     #errors
5180     /input/@required;boolean:invalid;m
5181    
5182     #data
5183     <input xmlns="http://www.w3.org/1999/xhtml"
5184 wakaba 1.12 type="search"
5185     required=""/>
5186     #errors
5187    
5188     #data
5189     <input xmlns="http://www.w3.org/1999/xhtml"
5190     type="search"
5191     required="required"/>
5192     #errors
5193    
5194     #data
5195     <input xmlns="http://www.w3.org/1999/xhtml"
5196     type="search"
5197     required="Required"/>
5198     #errors
5199    
5200     #data
5201     <input xmlns="http://www.w3.org/1999/xhtml"
5202     type="search"
5203     required="RequireD"/>
5204     #errors
5205    
5206     #data
5207     <input xmlns="http://www.w3.org/1999/xhtml"
5208     type="search"
5209     required="required "/>
5210     #errors
5211     /input/@required;boolean:invalid;m
5212    
5213     #data
5214     <input xmlns="http://www.w3.org/1999/xhtml"
5215     type="search"
5216     required=" required"/>
5217     #errors
5218     /input/@required;boolean:invalid;m
5219    
5220     #data
5221     <input xmlns="http://www.w3.org/1999/xhtml"
5222     type="search"
5223     required="yes"/>
5224     #errors
5225     /input/@required;boolean:invalid;m
5226    
5227     #data
5228     <input xmlns="http://www.w3.org/1999/xhtml"
5229     type="search"
5230     required="true"/>
5231     #errors
5232     /input/@required;boolean:invalid;m
5233    
5234     #data
5235     <input xmlns="http://www.w3.org/1999/xhtml"
5236     type="search"
5237     required="off"/>
5238     #errors
5239     /input/@required;boolean:invalid;m
5240    
5241     #data
5242     <input xmlns="http://www.w3.org/1999/xhtml"
5243 wakaba 1.7 type="password"
5244     required=""/>
5245     #errors
5246    
5247     #data
5248     <input xmlns="http://www.w3.org/1999/xhtml"
5249     type="password"
5250     required="required"/>
5251     #errors
5252    
5253     #data
5254     <input xmlns="http://www.w3.org/1999/xhtml"
5255     type="password"
5256     required="Required"/>
5257     #errors
5258    
5259     #data
5260     <input xmlns="http://www.w3.org/1999/xhtml"
5261     type="password"
5262     required="RequireD"/>
5263     #errors
5264    
5265     #data
5266     <input xmlns="http://www.w3.org/1999/xhtml"
5267     type="password"
5268     required="required "/>
5269     #errors
5270     /input/@required;boolean:invalid;m
5271    
5272     #data
5273     <input xmlns="http://www.w3.org/1999/xhtml"
5274     type="password"
5275     required=" required"/>
5276     #errors
5277     /input/@required;boolean:invalid;m
5278    
5279     #data
5280     <input xmlns="http://www.w3.org/1999/xhtml"
5281     type="password"
5282     required="yes"/>
5283     #errors
5284     /input/@required;boolean:invalid;m
5285    
5286     #data
5287     <input xmlns="http://www.w3.org/1999/xhtml"
5288     type="password"
5289     required="true"/>
5290     #errors
5291     /input/@required;boolean:invalid;m
5292    
5293     #data
5294     <input xmlns="http://www.w3.org/1999/xhtml"
5295     type="password"
5296     required="off"/>
5297     #errors
5298     /input/@required;boolean:invalid;m
5299    
5300     #data
5301     <input xmlns="http://www.w3.org/1999/xhtml"
5302     type="datetime"
5303     required=""/>
5304     #errors
5305    
5306     #data
5307     <input xmlns="http://www.w3.org/1999/xhtml"
5308     type="datetime"
5309     required="required"/>
5310     #errors
5311    
5312     #data
5313     <input xmlns="http://www.w3.org/1999/xhtml"
5314     type="datetime"
5315     required="Required"/>
5316     #errors
5317    
5318     #data
5319     <input xmlns="http://www.w3.org/1999/xhtml"
5320     type="datetime"
5321     required="RequireD"/>
5322     #errors
5323    
5324     #data
5325     <input xmlns="http://www.w3.org/1999/xhtml"
5326     type="datetime"
5327     required="required "/>
5328     #errors
5329     /input/@required;boolean:invalid;m
5330    
5331     #data
5332     <input xmlns="http://www.w3.org/1999/xhtml"
5333     type="datetime"
5334     required=" required"/>
5335     #errors
5336     /input/@required;boolean:invalid;m
5337    
5338     #data
5339     <input xmlns="http://www.w3.org/1999/xhtml"
5340     type="datetime"
5341     required="yes"/>
5342     #errors
5343     /input/@required;boolean:invalid;m
5344    
5345     #data
5346     <input xmlns="http://www.w3.org/1999/xhtml"
5347     type="datetime"
5348     required="true"/>
5349     #errors
5350     /input/@required;boolean:invalid;m
5351    
5352     #data
5353     <input xmlns="http://www.w3.org/1999/xhtml"
5354     type="datetime"
5355     required="off"/>
5356     #errors
5357     /input/@required;boolean:invalid;m
5358    
5359     #data
5360     <input xmlns="http://www.w3.org/1999/xhtml"
5361     type="date"
5362     required=""/>
5363     #errors
5364    
5365     #data
5366     <input xmlns="http://www.w3.org/1999/xhtml"
5367     type="date"
5368     required="required"/>
5369     #errors
5370    
5371     #data
5372     <input xmlns="http://www.w3.org/1999/xhtml"
5373     type="date"
5374     required="Required"/>
5375     #errors
5376    
5377     #data
5378     <input xmlns="http://www.w3.org/1999/xhtml"
5379     type="date"
5380     required="RequireD"/>
5381     #errors
5382    
5383     #data
5384     <input xmlns="http://www.w3.org/1999/xhtml"
5385     type="date"
5386     required="required "/>
5387     #errors
5388     /input/@required;boolean:invalid;m
5389    
5390     #data
5391     <input xmlns="http://www.w3.org/1999/xhtml"
5392     type="date"
5393     required=" required"/>
5394     #errors
5395     /input/@required;boolean:invalid;m
5396    
5397     #data
5398     <input xmlns="http://www.w3.org/1999/xhtml"
5399     type="date"
5400     required="yes"/>
5401     #errors
5402     /input/@required;boolean:invalid;m
5403    
5404     #data
5405     <input xmlns="http://www.w3.org/1999/xhtml"
5406     type="date"
5407     required="true"/>
5408     #errors
5409     /input/@required;boolean:invalid;m
5410    
5411     #data
5412     <input xmlns="http://www.w3.org/1999/xhtml"
5413     type="date"
5414     required="off"/>
5415     #errors
5416     /input/@required;boolean:invalid;m
5417    
5418     #data
5419     <input xmlns="http://www.w3.org/1999/xhtml"
5420     type="month"
5421     required=""/>
5422     #errors
5423    
5424     #data
5425     <input xmlns="http://www.w3.org/1999/xhtml"
5426     type="month"
5427     required="required"/>
5428     #errors
5429    
5430     #data
5431     <input xmlns="http://www.w3.org/1999/xhtml"
5432     type="month"
5433     required="Required"/>
5434     #errors
5435    
5436     #data
5437     <input xmlns="http://www.w3.org/1999/xhtml"
5438     type="month"
5439     required="RequireD"/>
5440     #errors
5441    
5442     #data
5443     <input xmlns="http://www.w3.org/1999/xhtml"
5444     type="month"
5445     required="required "/>
5446     #errors
5447     /input/@required;boolean:invalid;m
5448    
5449     #data
5450     <input xmlns="http://www.w3.org/1999/xhtml"
5451     type="month"
5452     required=" required"/>
5453     #errors
5454     /input/@required;boolean:invalid;m
5455    
5456     #data
5457     <input xmlns="http://www.w3.org/1999/xhtml"
5458     type="month"
5459     required="yes"/>
5460     #errors
5461     /input/@required;boolean:invalid;m
5462    
5463     #data
5464     <input xmlns="http://www.w3.org/1999/xhtml"
5465     type="month"
5466     required="true"/>
5467     #errors
5468     /input/@required;boolean:invalid;m
5469    
5470     #data
5471     <input xmlns="http://www.w3.org/1999/xhtml"
5472     type="month"
5473     required="off"/>
5474     #errors
5475     /input/@required;boolean:invalid;m
5476    
5477     #data
5478     <input xmlns="http://www.w3.org/1999/xhtml"
5479     type="week"
5480     required=""/>
5481     #errors
5482    
5483     #data
5484     <input xmlns="http://www.w3.org/1999/xhtml"
5485     type="week"
5486     required="required"/>
5487     #errors
5488    
5489     #data
5490     <input xmlns="http://www.w3.org/1999/xhtml"
5491     type="week"
5492     required="Required"/>
5493     #errors
5494    
5495     #data
5496     <input xmlns="http://www.w3.org/1999/xhtml"
5497     type="week"
5498     required="RequireD"/>
5499     #errors
5500    
5501     #data
5502     <input xmlns="http://www.w3.org/1999/xhtml"
5503     type="week"
5504     required="required "/>
5505     #errors
5506     /input/@required;boolean:invalid;m
5507    
5508     #data
5509     <input xmlns="http://www.w3.org/1999/xhtml"
5510     type="week"
5511     required=" required"/>
5512     #errors
5513     /input/@required;boolean:invalid;m
5514    
5515     #data
5516     <input xmlns="http://www.w3.org/1999/xhtml"
5517     type="week"
5518     required="yes"/>
5519     #errors
5520     /input/@required;boolean:invalid;m
5521    
5522     #data
5523     <input xmlns="http://www.w3.org/1999/xhtml"
5524     type="week"
5525     required="true"/>
5526     #errors
5527     /input/@required;boolean:invalid;m
5528    
5529     #data
5530     <input xmlns="http://www.w3.org/1999/xhtml"
5531     type="week"
5532     required="off"/>
5533     #errors
5534     /input/@required;boolean:invalid;m
5535    
5536     #data
5537     <input xmlns="http://www.w3.org/1999/xhtml"
5538     type="time"
5539     required=""/>
5540     #errors
5541    
5542     #data
5543     <input xmlns="http://www.w3.org/1999/xhtml"
5544     type="time"
5545     required="required"/>
5546     #errors
5547    
5548     #data
5549     <input xmlns="http://www.w3.org/1999/xhtml"
5550     type="time"
5551     required="Required"/>
5552     #errors
5553    
5554     #data
5555     <input xmlns="http://www.w3.org/1999/xhtml"
5556     type="time"
5557     required="RequireD"/>
5558     #errors
5559    
5560     #data
5561     <input xmlns="http://www.w3.org/1999/xhtml"
5562     type="time"
5563     required="required "/>
5564     #errors
5565     /input/@required;boolean:invalid;m
5566    
5567     #data
5568     <input xmlns="http://www.w3.org/1999/xhtml"
5569     type="time"
5570     required=" required"/>
5571     #errors
5572     /input/@required;boolean:invalid;m
5573    
5574     #data
5575     <input xmlns="http://www.w3.org/1999/xhtml"
5576     type="time"
5577     required="yes"/>
5578     #errors
5579     /input/@required;boolean:invalid;m
5580    
5581     #data
5582     <input xmlns="http://www.w3.org/1999/xhtml"
5583     type="time"
5584     required="true"/>
5585     #errors
5586     /input/@required;boolean:invalid;m
5587    
5588     #data
5589     <input xmlns="http://www.w3.org/1999/xhtml"
5590     type="time"
5591     required="off"/>
5592     #errors
5593     /input/@required;boolean:invalid;m
5594    
5595     #data
5596     <input xmlns="http://www.w3.org/1999/xhtml"
5597     type="datetime-local"
5598     required=""/>
5599     #errors
5600    
5601     #data
5602     <input xmlns="http://www.w3.org/1999/xhtml"
5603     type="datetime-local"
5604     required="required"/>
5605     #errors
5606    
5607     #data
5608     <input xmlns="http://www.w3.org/1999/xhtml"
5609     type="datetime-local"
5610     required="Required"/>
5611     #errors
5612    
5613     #data
5614     <input xmlns="http://www.w3.org/1999/xhtml"
5615     type="datetime-local"
5616     required="RequireD"/>
5617     #errors
5618    
5619     #data
5620     <input xmlns="http://www.w3.org/1999/xhtml"
5621     type="datetime-local"
5622     required="required "/>
5623     #errors
5624     /input/@required;boolean:invalid;m
5625    
5626     #data
5627     <input xmlns="http://www.w3.org/1999/xhtml"
5628     type="datetime-local"
5629     required=" required"/>
5630     #errors
5631     /input/@required;boolean:invalid;m
5632    
5633     #data
5634     <input xmlns="http://www.w3.org/1999/xhtml"
5635     type="datetime-local"
5636     required="yes"/>
5637     #errors
5638     /input/@required;boolean:invalid;m
5639    
5640     #data
5641     <input xmlns="http://www.w3.org/1999/xhtml"
5642     type="datetime-local"
5643     required="true"/>
5644     #errors
5645     /input/@required;boolean:invalid;m
5646    
5647     #data
5648     <input xmlns="http://www.w3.org/1999/xhtml"
5649     type="datetime-local"
5650     required="off"/>
5651     #errors
5652     /input/@required;boolean:invalid;m
5653    
5654     #data
5655     <input xmlns="http://www.w3.org/1999/xhtml"
5656     type="number"
5657     required=""/>
5658     #errors
5659    
5660     #data
5661     <input xmlns="http://www.w3.org/1999/xhtml"
5662     type="number"
5663     required="required"/>
5664     #errors
5665    
5666     #data
5667     <input xmlns="http://www.w3.org/1999/xhtml"
5668     type="number"
5669     required="Required"/>
5670     #errors
5671    
5672     #data
5673     <input xmlns="http://www.w3.org/1999/xhtml"
5674     type="number"
5675     required="RequireD"/>
5676     #errors
5677    
5678     #data
5679     <input xmlns="http://www.w3.org/1999/xhtml"
5680     type="number"
5681     required="required "/>
5682     #errors
5683     /input/@required;boolean:invalid;m
5684    
5685     #data
5686     <input xmlns="http://www.w3.org/1999/xhtml"
5687     type="number"
5688     required=" required"/>
5689     #errors
5690     /input/@required;boolean:invalid;m
5691    
5692     #data
5693     <input xmlns="http://www.w3.org/1999/xhtml"
5694     type="number"
5695     required="yes"/>
5696     #errors
5697     /input/@required;boolean:invalid;m
5698    
5699     #data
5700     <input xmlns="http://www.w3.org/1999/xhtml"
5701     type="number"
5702     required="true"/>
5703     #errors
5704     /input/@required;boolean:invalid;m
5705    
5706     #data
5707     <input xmlns="http://www.w3.org/1999/xhtml"
5708     type="number"
5709     required="off"/>
5710     #errors
5711     /input/@required;boolean:invalid;m
5712    
5713     #data
5714     <input xmlns="http://www.w3.org/1999/xhtml"
5715     type="checkbox"
5716     required=""/>
5717     #errors
5718    
5719     #data
5720     <input xmlns="http://www.w3.org/1999/xhtml"
5721     type="checkbox"
5722     required="required"/>
5723     #errors
5724    
5725     #data
5726     <input xmlns="http://www.w3.org/1999/xhtml"
5727     type="checkbox"
5728     required="Required"/>
5729     #errors
5730    
5731     #data
5732     <input xmlns="http://www.w3.org/1999/xhtml"
5733     type="checkbox"
5734     required="RequireD"/>
5735     #errors
5736    
5737     #data
5738     <input xmlns="http://www.w3.org/1999/xhtml"
5739     type="checkbox"
5740     required="required "/>
5741     #errors
5742     /input/@required;boolean:invalid;m
5743    
5744     #data
5745     <input xmlns="http://www.w3.org/1999/xhtml"
5746     type="checkbox"
5747     required=" required"/>
5748     #errors
5749     /input/@required;boolean:invalid;m
5750    
5751     #data
5752     <input xmlns="http://www.w3.org/1999/xhtml"
5753     type="checkbox"
5754     required="yes"/>
5755     #errors
5756     /input/@required;boolean:invalid;m
5757    
5758     #data
5759     <input xmlns="http://www.w3.org/1999/xhtml"
5760     type="checkbox"
5761     required="true"/>
5762     #errors
5763     /input/@required;boolean:invalid;m
5764    
5765     #data
5766     <input xmlns="http://www.w3.org/1999/xhtml"
5767     type="checkbox"
5768     required="off"/>
5769     #errors
5770     /input/@required;boolean:invalid;m
5771    
5772     #data
5773     <input xmlns="http://www.w3.org/1999/xhtml"
5774     type="radio"
5775     required=""/>
5776     #errors
5777    
5778     #data
5779     <input xmlns="http://www.w3.org/1999/xhtml"
5780     type="radio"
5781     required="required"/>
5782     #errors
5783    
5784     #data
5785     <input xmlns="http://www.w3.org/1999/xhtml"
5786     type="radio"
5787     required="Required"/>
5788     #errors
5789    
5790     #data
5791     <input xmlns="http://www.w3.org/1999/xhtml"
5792     type="radio"
5793     required="RequireD"/>
5794     #errors
5795    
5796     #data
5797     <input xmlns="http://www.w3.org/1999/xhtml"
5798     type="radio"
5799     required="required "/>
5800     #errors
5801     /input/@required;boolean:invalid;m
5802    
5803     #data
5804     <input xmlns="http://www.w3.org/1999/xhtml"
5805     type="radio"
5806     required=" required"/>
5807     #errors
5808     /input/@required;boolean:invalid;m
5809    
5810     #data
5811     <input xmlns="http://www.w3.org/1999/xhtml"
5812     type="radio"
5813     required="yes"/>
5814     #errors
5815     /input/@required;boolean:invalid;m
5816    
5817     #data
5818     <input xmlns="http://www.w3.org/1999/xhtml"
5819     type="radio"
5820     required="true"/>
5821     #errors
5822     /input/@required;boolean:invalid;m
5823    
5824     #data
5825     <input xmlns="http://www.w3.org/1999/xhtml"
5826     type="radio"
5827     required="off"/>
5828     #errors
5829     /input/@required;boolean:invalid;m
5830    
5831     #data
5832     <input xmlns="http://www.w3.org/1999/xhtml"
5833     type="file"
5834     required=""/>
5835     #errors
5836    
5837     #data
5838     <input xmlns="http://www.w3.org/1999/xhtml"
5839     type="file"
5840     required="required"/>
5841     #errors
5842    
5843     #data
5844     <input xmlns="http://www.w3.org/1999/xhtml"
5845     type="file"
5846     required="Required"/>
5847     #errors
5848    
5849     #data
5850     <input xmlns="http://www.w3.org/1999/xhtml"
5851     type="file"
5852     required="RequireD"/>
5853     #errors
5854    
5855     #data
5856     <input xmlns="http://www.w3.org/1999/xhtml"
5857     type="file"
5858     required="required "/>
5859     #errors
5860     /input/@required;boolean:invalid;m
5861    
5862     #data
5863     <input xmlns="http://www.w3.org/1999/xhtml"
5864     type="file"
5865     required=" required"/>
5866     #errors
5867     /input/@required;boolean:invalid;m
5868    
5869     #data
5870     <input xmlns="http://www.w3.org/1999/xhtml"
5871     type="file"
5872     required="yes"/>
5873     #errors
5874     /input/@required;boolean:invalid;m
5875    
5876     #data
5877     <input xmlns="http://www.w3.org/1999/xhtml"
5878     type="file"
5879     required="true"/>
5880     #errors
5881     /input/@required;boolean:invalid;m
5882    
5883     #data
5884     <input xmlns="http://www.w3.org/1999/xhtml"
5885     type="file"
5886     required="off"/>
5887     #errors
5888     /input/@required;boolean:invalid;m
5889 wakaba 1.8
5890     #data
5891     <input xmlns="http://www.w3.org/1999/xhtml"
5892     type="text"
5893     maxlength=""/>
5894     #errors
5895     /input/@maxlength;nninteger:syntax error;m
5896    
5897     #data
5898     <input xmlns="http://www.w3.org/1999/xhtml"
5899     type="text"
5900     maxlength="0"/>
5901     #errors
5902    
5903     #data
5904     <input xmlns="http://www.w3.org/1999/xhtml"
5905     type="text"
5906     maxlength="1"/>
5907     #errors
5908    
5909     #data
5910     <input xmlns="http://www.w3.org/1999/xhtml"
5911     type="text"
5912     maxlength="100"/>
5913     #errors
5914    
5915     #data
5916     <input xmlns="http://www.w3.org/1999/xhtml"
5917     type="text"
5918     maxlength="000000010"/>
5919     #errors
5920    
5921     #data
5922     <input xmlns="http://www.w3.org/1999/xhtml"
5923     type="text"
5924     maxlength="-0"/>
5925     #errors
5926     /input/@maxlength;nninteger:syntax error;m
5927    
5928     #data
5929     <input xmlns="http://www.w3.org/1999/xhtml"
5930     type="text"
5931     maxlength="-12"/>
5932     #errors
5933     /input/@maxlength;nninteger:syntax error;m
5934    
5935     #data
5936     <input xmlns="http://www.w3.org/1999/xhtml"
5937     type="text"
5938     maxlength="0.00"/>
5939     #errors
5940     /input/@maxlength;nninteger:syntax error;m
5941    
5942     #data
5943     <input xmlns="http://www.w3.org/1999/xhtml"
5944     type="text"
5945     maxlength="100.0"/>
5946     #errors
5947     /input/@maxlength;nninteger:syntax error;m
5948    
5949     #data
5950     <input xmlns="http://www.w3.org/1999/xhtml"
5951     type="text"
5952     maxlength=" 4"/>
5953     #errors
5954     /input/@maxlength;nninteger:syntax error;m
5955    
5956     #data
5957     <input xmlns="http://www.w3.org/1999/xhtml"
5958     type="text"
5959     maxlength="55 "/>
5960     #errors
5961     /input/@maxlength;nninteger:syntax error;m
5962    
5963     #data
5964     <input xmlns="http://www.w3.org/1999/xhtml"
5965     type="text"
5966     maxlength="+43"/>
5967     #errors
5968     /input/@maxlength;nninteger:syntax error;m
5969    
5970     #data
5971     <input xmlns="http://www.w3.org/1999/xhtml"
5972     type="text"
5973     maxlength="4e5"/>
5974     #errors
5975     /input/@maxlength;nninteger:syntax error;m
5976    
5977     #data
5978     <input xmlns="http://www.w3.org/1999/xhtml"
5979     type="text"
5980     maxlength="4px"/>
5981     #errors
5982     /input/@maxlength;nninteger:syntax error;m
5983    
5984     #data
5985     <input xmlns="http://www.w3.org/1999/xhtml"
5986     type="text"
5987     maxlength="5em"/>
5988     #errors
5989     /input/@maxlength;nninteger:syntax error;m
5990    
5991     #data
5992     <input xmlns="http://www.w3.org/1999/xhtml"
5993     type="email"
5994     maxlength=""/>
5995     #errors
5996     /input/@maxlength;nninteger:syntax error;m
5997    
5998     #data
5999     <input xmlns="http://www.w3.org/1999/xhtml"
6000     type="email"
6001     maxlength="0"/>
6002     #errors
6003    
6004     #data
6005     <input xmlns="http://www.w3.org/1999/xhtml"
6006     type="email"
6007     maxlength="1"/>
6008     #errors
6009    
6010     #data
6011     <input xmlns="http://www.w3.org/1999/xhtml"
6012     type="email"
6013     maxlength="100"/>
6014     #errors
6015    
6016     #data
6017     <input xmlns="http://www.w3.org/1999/xhtml"
6018     type="email"
6019     maxlength="000000010"/>
6020     #errors
6021    
6022     #data
6023     <input xmlns="http://www.w3.org/1999/xhtml"
6024     type="email"
6025     maxlength="-0"/>
6026     #errors
6027     /input/@maxlength;nninteger:syntax error;m
6028    
6029     #data
6030     <input xmlns="http://www.w3.org/1999/xhtml"
6031     type="email"
6032     maxlength="-12"/>
6033     #errors
6034     /input/@maxlength;nninteger:syntax error;m
6035    
6036     #data
6037     <input xmlns="http://www.w3.org/1999/xhtml"
6038     type="email"
6039     maxlength="0.00"/>
6040     #errors
6041     /input/@maxlength;nninteger:syntax error;m
6042    
6043     #data
6044     <input xmlns="http://www.w3.org/1999/xhtml"
6045     type="email"
6046     maxlength="100.0"/>
6047     #errors
6048     /input/@maxlength;nninteger:syntax error;m
6049    
6050     #data
6051     <input xmlns="http://www.w3.org/1999/xhtml"
6052     type="email"
6053     maxlength=" 4"/>
6054     #errors
6055     /input/@maxlength;nninteger:syntax error;m
6056    
6057     #data
6058     <input xmlns="http://www.w3.org/1999/xhtml"
6059     type="email"
6060     maxlength="55 "/>
6061     #errors
6062     /input/@maxlength;nninteger:syntax error;m
6063    
6064     #data
6065     <input xmlns="http://www.w3.org/1999/xhtml"
6066     type="email"
6067     maxlength="+43"/>
6068     #errors
6069     /input/@maxlength;nninteger:syntax error;m
6070    
6071     #data
6072     <input xmlns="http://www.w3.org/1999/xhtml"
6073     type="email"
6074     maxlength="4e5"/>
6075     #errors
6076     /input/@maxlength;nninteger:syntax error;m
6077    
6078     #data
6079     <input xmlns="http://www.w3.org/1999/xhtml"
6080     type="email"
6081     maxlength="4px"/>
6082     #errors
6083     /input/@maxlength;nninteger:syntax error;m
6084    
6085     #data
6086     <input xmlns="http://www.w3.org/1999/xhtml"
6087     type="email"
6088     maxlength="5em"/>
6089     #errors
6090     /input/@maxlength;nninteger:syntax error;m
6091    
6092     #data
6093     <input xmlns="http://www.w3.org/1999/xhtml"
6094     type="url"
6095     maxlength=""/>
6096     #errors
6097     /input/@maxlength;nninteger:syntax error;m
6098    
6099     #data
6100     <input xmlns="http://www.w3.org/1999/xhtml"
6101     type="url"
6102     maxlength="0"/>
6103     #errors
6104    
6105     #data
6106     <input xmlns="http://www.w3.org/1999/xhtml"
6107     type="url"
6108     maxlength="1"/>
6109     #errors
6110    
6111     #data
6112     <input xmlns="http://www.w3.org/1999/xhtml"
6113     type="url"
6114     maxlength="100"/>
6115     #errors
6116    
6117     #data
6118     <input xmlns="http://www.w3.org/1999/xhtml"
6119     type="url"
6120     maxlength="000000010"/>
6121     #errors
6122    
6123     #data
6124     <input xmlns="http://www.w3.org/1999/xhtml"
6125     type="url"
6126     maxlength="-0"/>
6127     #errors
6128     /input/@maxlength;nninteger:syntax error;m
6129    
6130     #data
6131     <input xmlns="http://www.w3.org/1999/xhtml"
6132     type="url"
6133     maxlength="-12"/>
6134     #errors
6135     /input/@maxlength;nninteger:syntax error;m
6136    
6137     #data
6138     <input xmlns="http://www.w3.org/1999/xhtml"
6139     type="url"
6140     maxlength="0.00"/>
6141     #errors
6142     /input/@maxlength;nninteger:syntax error;m
6143    
6144     #data
6145     <input xmlns="http://www.w3.org/1999/xhtml"
6146     type="url"
6147     maxlength="100.0"/>
6148     #errors
6149     /input/@maxlength;nninteger:syntax error;m
6150    
6151     #data
6152     <input xmlns="http://www.w3.org/1999/xhtml"
6153     type="url"
6154     maxlength=" 4"/>
6155     #errors
6156     /input/@maxlength;nninteger:syntax error;m
6157    
6158     #data
6159     <input xmlns="http://www.w3.org/1999/xhtml"
6160     type="url"
6161     maxlength="55 "/>
6162     #errors
6163     /input/@maxlength;nninteger:syntax error;m
6164    
6165     #data
6166     <input xmlns="http://www.w3.org/1999/xhtml"
6167     type="url"
6168     maxlength="+43"/>
6169     #errors
6170     /input/@maxlength;nninteger:syntax error;m
6171    
6172     #data
6173     <input xmlns="http://www.w3.org/1999/xhtml"
6174     type="url"
6175     maxlength="4e5"/>
6176     #errors
6177     /input/@maxlength;nninteger:syntax error;m
6178    
6179     #data
6180     <input xmlns="http://www.w3.org/1999/xhtml"
6181     type="url"
6182     maxlength="4px"/>
6183     #errors
6184     /input/@maxlength;nninteger:syntax error;m
6185    
6186     #data
6187     <input xmlns="http://www.w3.org/1999/xhtml"
6188     type="url"
6189     maxlength="5em"/>
6190     #errors
6191     /input/@maxlength;nninteger:syntax error;m
6192    
6193     #data
6194     <input xmlns="http://www.w3.org/1999/xhtml"
6195 wakaba 1.12 type="search"
6196     maxlength=""/>
6197     #errors
6198     /input/@maxlength;nninteger:syntax error;m
6199    
6200     #data
6201     <input xmlns="http://www.w3.org/1999/xhtml"
6202     type="search"
6203     maxlength="0"/>
6204     #errors
6205    
6206     #data
6207     <input xmlns="http://www.w3.org/1999/xhtml"
6208     type="search"
6209     maxlength="1"/>
6210     #errors
6211    
6212     #data
6213     <input xmlns="http://www.w3.org/1999/xhtml"
6214     type="search"
6215     maxlength="100"/>
6216     #errors
6217    
6218     #data
6219     <input xmlns="http://www.w3.org/1999/xhtml"
6220     type="search"
6221     maxlength="000000010"/>
6222     #errors
6223    
6224     #data
6225     <input xmlns="http://www.w3.org/1999/xhtml"
6226     type="search"
6227     maxlength="-0"/>
6228     #errors
6229     /input/@maxlength;nninteger:syntax error;m
6230    
6231     #data
6232     <input xmlns="http://www.w3.org/1999/xhtml"
6233     type="search"
6234     maxlength="-12"/>
6235     #errors
6236     /input/@maxlength;nninteger:syntax error;m
6237    
6238     #data
6239     <input xmlns="http://www.w3.org/1999/xhtml"
6240     type="search"
6241     maxlength="0.00"/>
6242     #errors
6243     /input/@maxlength;nninteger:syntax error;m
6244    
6245     #data
6246     <input xmlns="http://www.w3.org/1999/xhtml"
6247     type="search"
6248     maxlength="100.0"/>
6249     #errors
6250     /input/@maxlength;nninteger:syntax error;m
6251    
6252     #data
6253     <input xmlns="http://www.w3.org/1999/xhtml"
6254     type="search"
6255     maxlength=" 4"/>
6256     #errors
6257     /input/@maxlength;nninteger:syntax error;m
6258    
6259     #data
6260     <input xmlns="http://www.w3.org/1999/xhtml"
6261     type="search"
6262     maxlength="55 "/>
6263     #errors
6264     /input/@maxlength;nninteger:syntax error;m
6265    
6266     #data
6267     <input xmlns="http://www.w3.org/1999/xhtml"
6268     type="search"
6269     maxlength="+43"/>
6270     #errors
6271     /input/@maxlength;nninteger:syntax error;m
6272    
6273     #data
6274     <input xmlns="http://www.w3.org/1999/xhtml"
6275     type="search"
6276     maxlength="4e5"/>
6277     #errors
6278     /input/@maxlength;nninteger:syntax error;m
6279    
6280     #data
6281     <input xmlns="http://www.w3.org/1999/xhtml"
6282     type="search"
6283     maxlength="4px"/>
6284     #errors
6285     /input/@maxlength;nninteger:syntax error;m
6286    
6287     #data
6288     <input xmlns="http://www.w3.org/1999/xhtml"
6289     type="search"
6290     maxlength="5em"/>
6291     #errors
6292     /input/@maxlength;nninteger:syntax error;m
6293    
6294     #data
6295     <input xmlns="http://www.w3.org/1999/xhtml"
6296 wakaba 1.8 type="password"
6297     maxlength=""/>
6298     #errors
6299     /input/@maxlength;nninteger:syntax error;m
6300    
6301     #data
6302     <input xmlns="http://www.w3.org/1999/xhtml"
6303     type="password"
6304     maxlength="0"/>
6305     #errors
6306    
6307     #data
6308     <input xmlns="http://www.w3.org/1999/xhtml"
6309     type="password"
6310     maxlength="1"/>
6311     #errors
6312    
6313     #data
6314     <input xmlns="http://www.w3.org/1999/xhtml"
6315     type="password"
6316     maxlength="100"/>
6317     #errors
6318    
6319     #data
6320     <input xmlns="http://www.w3.org/1999/xhtml"
6321     type="password"
6322     maxlength="000000010"/>
6323     #errors
6324    
6325     #data
6326     <input xmlns="http://www.w3.org/1999/xhtml"
6327     type="password"
6328     maxlength="-0"/>
6329     #errors
6330     /input/@maxlength;nninteger:syntax error;m
6331    
6332     #data
6333     <input xmlns="http://www.w3.org/1999/xhtml"
6334     type="password"
6335     maxlength="-12"/>
6336     #errors
6337     /input/@maxlength;nninteger:syntax error;m
6338    
6339     #data
6340     <input xmlns="http://www.w3.org/1999/xhtml"
6341     type="password"
6342     maxlength="0.00"/>
6343     #errors
6344     /input/@maxlength;nninteger:syntax error;m
6345    
6346     #data
6347     <input xmlns="http://www.w3.org/1999/xhtml"
6348     type="password"
6349     maxlength="100.0"/>
6350     #errors
6351     /input/@maxlength;nninteger:syntax error;m
6352    
6353     #data
6354     <input xmlns="http://www.w3.org/1999/xhtml"
6355     type="password"
6356     maxlength=" 4"/>
6357     #errors
6358     /input/@maxlength;nninteger:syntax error;m
6359    
6360     #data
6361     <input xmlns="http://www.w3.org/1999/xhtml"
6362     type="password"
6363     maxlength="55 "/>
6364     #errors
6365     /input/@maxlength;nninteger:syntax error;m
6366    
6367     #data
6368     <input xmlns="http://www.w3.org/1999/xhtml"
6369     type="password"
6370     maxlength="+43"/>
6371     #errors
6372     /input/@maxlength;nninteger:syntax error;m
6373    
6374     #data
6375     <input xmlns="http://www.w3.org/1999/xhtml"
6376     type="password"
6377     maxlength="4e5"/>
6378     #errors
6379     /input/@maxlength;nninteger:syntax error;m
6380    
6381     #data
6382     <input xmlns="http://www.w3.org/1999/xhtml"
6383     type="password"
6384     maxlength="4px"/>
6385     #errors
6386     /input/@maxlength;nninteger:syntax error;m
6387    
6388     #data
6389     <input xmlns="http://www.w3.org/1999/xhtml"
6390     type="password"
6391     maxlength="5em"/>
6392     #errors
6393     /input/@maxlength;nninteger:syntax error;m
6394    
6395     #data
6396     <input xmlns="http://www.w3.org/1999/xhtml"
6397     type="text"
6398     value=""
6399     maxlength="1"/>
6400     #errors
6401    
6402     #data
6403     <input xmlns="http://www.w3.org/1999/xhtml"
6404     type="text"
6405     value="ab"
6406     maxlength="1"/>
6407     #errors
6408     /input/@value;value too long;m
6409    
6410     #data
6411     <input xmlns="http://www.w3.org/1999/xhtml"
6412     type="text"
6413     value=""
6414     maxlength="0"/>
6415     #errors
6416    
6417     #data
6418     <input xmlns="http://www.w3.org/1999/xhtml"
6419     type="text"
6420     value="1234567890"
6421     maxlength="10"/>
6422     #errors
6423    
6424     #data
6425     <input xmlns="http://www.w3.org/1999/xhtml"
6426     type="text"
6427     value="12345678901"
6428     maxlength="10"/>
6429     #errors
6430     /input/@value;value too long;m
6431    
6432     #data escaped
6433     <input xmlns="http://www.w3.org/1999/xhtml"
6434     type="text"
6435     value="\U00010000"
6436     maxlength="1"/>
6437     #errors
6438     /input/@value;value too long;m
6439    
6440     #data
6441     <input xmlns="http://www.w3.org/1999/xhtml"
6442     type="email"
6443     value=""
6444     maxlength="1"/>
6445     #errors
6446    
6447     #data
6448     <input xmlns="http://www.w3.org/1999/xhtml"
6449     type="email"
6450     value="ab"
6451     maxlength="1"/>
6452     #errors
6453     /input/@value;value too long;m
6454    
6455     #data
6456     <input xmlns="http://www.w3.org/1999/xhtml"
6457     type="email"
6458     value=""
6459     maxlength="0"/>
6460     #errors
6461    
6462     #data
6463     <input xmlns="http://www.w3.org/1999/xhtml"
6464     type="email"
6465     value="1234567890"
6466     maxlength="10"/>
6467     #errors
6468    
6469     #data
6470     <input xmlns="http://www.w3.org/1999/xhtml"
6471     type="email"
6472     value="12345678901"
6473     maxlength="10"/>
6474     #errors
6475     /input/@value;value too long;m
6476    
6477     #data escaped
6478     <input xmlns="http://www.w3.org/1999/xhtml"
6479     type="email"
6480     value="\U00010000"
6481     maxlength="1"/>
6482     #errors
6483     /input/@value;value too long;m
6484    
6485     #data
6486     <input xmlns="http://www.w3.org/1999/xhtml"
6487     type="url"
6488     value=""
6489     maxlength="1"/>
6490     #errors
6491    
6492     #data
6493     <input xmlns="http://www.w3.org/1999/xhtml"
6494     type="url"
6495     value="ab"
6496     maxlength="1"/>
6497     #errors
6498     /input/@value;value too long;m
6499    
6500     #data
6501     <input xmlns="http://www.w3.org/1999/xhtml"
6502     type="url"
6503     value=""
6504     maxlength="0"/>
6505     #errors
6506    
6507     #data
6508     <input xmlns="http://www.w3.org/1999/xhtml"
6509     type="url"
6510     value="1234567890"
6511     maxlength="10"/>
6512     #errors
6513    
6514     #data
6515     <input xmlns="http://www.w3.org/1999/xhtml"
6516     type="url"
6517     value="12345678901"
6518     maxlength="10"/>
6519     #errors
6520     /input/@value;value too long;m
6521    
6522     #data escaped
6523     <input xmlns="http://www.w3.org/1999/xhtml"
6524     type="url"
6525     value="\U00010000"
6526     maxlength="1"/>
6527     #errors
6528     /input/@value;value too long;m
6529    
6530     #data
6531     <input xmlns="http://www.w3.org/1999/xhtml"
6532 wakaba 1.12 type="search"
6533     value=""
6534     maxlength="1"/>
6535     #errors
6536    
6537     #data
6538     <input xmlns="http://www.w3.org/1999/xhtml"
6539     type="search"
6540     value="ab"
6541     maxlength="1"/>
6542     #errors
6543     /input/@value;value too long;m
6544    
6545     #data
6546     <input xmlns="http://www.w3.org/1999/xhtml"
6547     type="search"
6548     value=""
6549     maxlength="0"/>
6550     #errors
6551    
6552     #data
6553     <input xmlns="http://www.w3.org/1999/xhtml"
6554     type="search"
6555     value="1234567890"
6556     maxlength="10"/>
6557     #errors
6558    
6559     #data
6560     <input xmlns="http://www.w3.org/1999/xhtml"
6561     type="search"
6562     value="12345678901"
6563     maxlength="10"/>
6564     #errors
6565     /input/@value;value too long;m
6566    
6567     #data escaped
6568     <input xmlns="http://www.w3.org/1999/xhtml"
6569     type="search"
6570     value="\U00010000"
6571     maxlength="1"/>
6572     #errors
6573     /input/@value;value too long;m
6574    
6575     #data
6576     <input xmlns="http://www.w3.org/1999/xhtml"
6577 wakaba 1.8 type="password"
6578     value=""
6579     maxlength="1"/>
6580     #errors
6581    
6582     #data
6583     <input xmlns="http://www.w3.org/1999/xhtml"
6584     type="password"
6585     value="ab"
6586     maxlength="1"/>
6587     #errors
6588     /input/@value;value too long;m
6589    
6590     #data
6591     <input xmlns="http://www.w3.org/1999/xhtml"
6592     type="password"
6593     value=""
6594     maxlength="0"/>
6595     #errors
6596    
6597     #data
6598     <input xmlns="http://www.w3.org/1999/xhtml"
6599     type="password"
6600     value="1234567890"
6601     maxlength="10"/>
6602     #errors
6603    
6604     #data
6605     <input xmlns="http://www.w3.org/1999/xhtml"
6606     type="password"
6607     value="12345678901"
6608     maxlength="10"/>
6609     #errors
6610     /input/@value;value too long;m
6611    
6612     #data escaped
6613     <input xmlns="http://www.w3.org/1999/xhtml"
6614     type="password"
6615     value="\U00010000"
6616     maxlength="1"/>
6617     #errors
6618     /input/@value;value too long;m
6619    
6620     #data escaped
6621     <input xmlns="http://www.w3.org/1999/xhtml"
6622     type="password"
6623     value="\U00010000\U00010000"
6624     maxlength="3"/>
6625     #errors
6626     /input/@value;value too long;m
6627 wakaba 1.9
6628     #data
6629     <input xmlns="http://www.w3.org/1999/xhtml"
6630     type="datetime"
6631     step="1"/>
6632     #errors
6633    
6634     #data
6635     <input xmlns="http://www.w3.org/1999/xhtml"
6636     type="datetime"
6637     step="100"/>
6638     #errors
6639    
6640     #data
6641     <input xmlns="http://www.w3.org/1999/xhtml"
6642     type="datetime"
6643     step="0000001"/>
6644     #errors
6645    
6646     #data
6647     <input xmlns="http://www.w3.org/1999/xhtml"
6648     type="datetime"
6649     step="32"/>
6650     #errors
6651    
6652     #data
6653     <input xmlns="http://www.w3.org/1999/xhtml"
6654     type="datetime"
6655     step="-1.4142135623730950488016887242097e0"/>
6656     #errors
6657    
6658     #data
6659     <input xmlns="http://www.w3.org/1999/xhtml"
6660     type="datetime"
6661     step="3.17e4"/>
6662     #errors
6663    
6664     #data
6665     <input xmlns="http://www.w3.org/1999/xhtml"
6666     type="datetime"
6667     step="0.4500"/>
6668     #errors
6669    
6670     #data
6671     <input xmlns="http://www.w3.org/1999/xhtml"
6672     type="datetime"
6673     step="0042.000"/>
6674     #errors
6675    
6676     #data
6677     <input xmlns="http://www.w3.org/1999/xhtml"
6678     type="datetime"
6679     step="42e0"/>
6680     #errors
6681    
6682     #data
6683     <input xmlns="http://www.w3.org/1999/xhtml"
6684     type="datetime"
6685     step="4.2e1"/>
6686     #errors
6687    
6688     #data
6689     <input xmlns="http://www.w3.org/1999/xhtml"
6690     type="datetime"
6691     step="420e-1"/>
6692     #errors
6693    
6694     #data
6695     <input xmlns="http://www.w3.org/1999/xhtml"
6696     type="datetime"
6697     step=""/>
6698     #errors
6699     /input/@step;float:syntax error;m
6700    
6701     #data
6702     <input xmlns="http://www.w3.org/1999/xhtml"
6703     type="datetime"
6704     step="+0"/>
6705     #errors
6706     /input/@step;float:syntax error;m
6707    
6708     #data
6709     <input xmlns="http://www.w3.org/1999/xhtml"
6710     type="datetime"
6711     step="0e+0"/>
6712     #errors
6713     /input/@step;float:syntax error;m
6714    
6715     #data
6716     <input xmlns="http://www.w3.org/1999/xhtml"
6717     type="datetime"
6718     step="+1e+3"/>
6719     #errors
6720     /input/@step;float:syntax error;m
6721    
6722     #data
6723     <input xmlns="http://www.w3.org/1999/xhtml"
6724     type="datetime"
6725     step=".42e2"/>
6726     #errors
6727     /input/@step;float:syntax error;m
6728    
6729     #data
6730     <input xmlns="http://www.w3.org/1999/xhtml"
6731     type="datetime"
6732     step="65000"/>
6733     #errors
6734    
6735     #data
6736     <input xmlns="http://www.w3.org/1999/xhtml"
6737     type="datetime"
6738     step="66000.0"/>
6739     #errors
6740    
6741     #data
6742     <input xmlns="http://www.w3.org/1999/xhtml"
6743     type="datetime"
6744     step="any"/>
6745     #errors
6746    
6747     #data
6748     <input xmlns="http://www.w3.org/1999/xhtml"
6749     type="datetime"
6750     step="Any"/>
6751     #errors
6752    
6753     #data
6754     <input xmlns="http://www.w3.org/1999/xhtml"
6755     type="datetime"
6756     step="ANY"/>
6757     #errors
6758    
6759     #data
6760     <input xmlns="http://www.w3.org/1999/xhtml"
6761     type="datetime"
6762     step="any "/>
6763     #errors
6764     /input/@step;float:syntax error;m
6765    
6766     #data
6767     <input xmlns="http://www.w3.org/1999/xhtml"
6768     type="datetime"
6769     step=" Any"/>
6770     #errors
6771     /input/@step;float:syntax error;m
6772    
6773     #data
6774     <input xmlns="http://www.w3.org/1999/xhtml"
6775     type="datetime"
6776     step="anything"/>
6777     #errors
6778     /input/@step;float:syntax error;m
6779    
6780     #data
6781     <input xmlns="http://www.w3.org/1999/xhtml"
6782     type="datetime"
6783     step=""/>
6784     #errors
6785     /input/@step;float:syntax error;m
6786    
6787     #data
6788     <input xmlns="http://www.w3.org/1999/xhtml"
6789     type="datetime"
6790     step="0"/>
6791     #errors
6792     /input/@step;float:out of range;m
6793    
6794     #data
6795     <input xmlns="http://www.w3.org/1999/xhtml"
6796     type="datetime"
6797     step="0.00"/>
6798     #errors
6799     /input/@step;float:out of range;m
6800    
6801     #data
6802     <input xmlns="http://www.w3.org/1999/xhtml"
6803     type="date"
6804     step="1"/>
6805     #errors
6806    
6807     #data
6808     <input xmlns="http://www.w3.org/1999/xhtml"
6809     type="date"
6810     step="100"/>
6811     #errors
6812    
6813     #data
6814     <input xmlns="http://www.w3.org/1999/xhtml"
6815     type="date"
6816     step="0000001"/>
6817     #errors
6818    
6819     #data
6820     <input xmlns="http://www.w3.org/1999/xhtml"
6821     type="date"
6822     step="32"/>
6823     #errors
6824    
6825     #data
6826     <input xmlns="http://www.w3.org/1999/xhtml"
6827     type="date"
6828     step="-1.4142135623730950488016887242097e0"/>
6829     #errors
6830    
6831     #data
6832     <input xmlns="http://www.w3.org/1999/xhtml"
6833     type="date"
6834     step="3.17e4"/>
6835     #errors
6836    
6837     #data
6838     <input xmlns="http://www.w3.org/1999/xhtml"
6839     type="date"
6840     step="0.4500"/>
6841     #errors
6842    
6843     #data
6844     <input xmlns="http://www.w3.org/1999/xhtml"
6845     type="date"
6846     step="0042.000"/>
6847     #errors
6848    
6849     #data
6850     <input xmlns="http://www.w3.org/1999/xhtml"
6851     type="date"
6852     step="42e0"/>
6853     #errors
6854    
6855     #data
6856     <input xmlns="http://www.w3.org/1999/xhtml"
6857     type="date"
6858     step="4.2e1"/>
6859     #errors
6860    
6861     #data
6862     <input xmlns="http://www.w3.org/1999/xhtml"
6863     type="date"
6864     step="420e-1"/>
6865     #errors
6866    
6867     #data
6868     <input xmlns="http://www.w3.org/1999/xhtml"
6869     type="date"
6870     step=""/>
6871     #errors
6872     /input/@step;float:syntax error;m
6873    
6874     #data
6875     <input xmlns="http://www.w3.org/1999/xhtml"
6876     type="date"
6877     step="+0"/>
6878     #errors
6879     /input/@step;float:syntax error;m
6880    
6881     #data
6882     <input xmlns="http://www.w3.org/1999/xhtml"
6883     type="date"
6884     step="0e+0"/>
6885     #errors
6886     /input/@step;float:syntax error;m
6887    
6888     #data
6889     <input xmlns="http://www.w3.org/1999/xhtml"
6890     type="date"
6891     step="+1e+3"/>
6892     #errors
6893     /input/@step;float:syntax error;m
6894    
6895     #data
6896     <input xmlns="http://www.w3.org/1999/xhtml"
6897     type="date"
6898     step=".42e2"/>
6899     #errors
6900     /input/@step;float:syntax error;m
6901    
6902     #data
6903     <input xmlns="http://www.w3.org/1999/xhtml"
6904     type="date"
6905     step="65000"/>
6906     #errors
6907    
6908     #data
6909     <input xmlns="http://www.w3.org/1999/xhtml"
6910     type="date"
6911     step="66000.0"/>
6912     #errors
6913    
6914     #data
6915     <input xmlns="http://www.w3.org/1999/xhtml"
6916     type="date"
6917     step="any"/>
6918     #errors
6919    
6920     #data
6921     <input xmlns="http://www.w3.org/1999/xhtml"
6922     type="date"
6923     step="Any"/>
6924     #errors
6925    
6926     #data
6927     <input xmlns="http://www.w3.org/1999/xhtml"
6928     type="date"
6929     step="ANY"/>
6930     #errors
6931    
6932     #data
6933     <input xmlns="http://www.w3.org/1999/xhtml"
6934     type="date"
6935     step="any "/>
6936     #errors
6937     /input/@step;float:syntax error;m
6938    
6939     #data
6940     <input xmlns="http://www.w3.org/1999/xhtml"
6941     type="date"
6942     step=" Any"/>
6943     #errors
6944     /input/@step;float:syntax error;m
6945    
6946     #data
6947     <input xmlns="http://www.w3.org/1999/xhtml"
6948     type="date"
6949     step="anything"/>
6950     #errors
6951     /input/@step;float:syntax error;m
6952    
6953     #data
6954     <input xmlns="http://www.w3.org/1999/xhtml"
6955     type="date"
6956     step=""/>
6957     #errors
6958     /input/@step;float:syntax error;m
6959    
6960     #data
6961     <input xmlns="http://www.w3.org/1999/xhtml"
6962     type="date"
6963     step="0"/>
6964     #errors
6965     /input/@step;float:out of range;m
6966    
6967     #data
6968     <input xmlns="http://www.w3.org/1999/xhtml"
6969     type="date"
6970     step="0.00"/>
6971     #errors
6972     /input/@step;float:out of range;m
6973    
6974     #data
6975     <input xmlns="http://www.w3.org/1999/xhtml"
6976     type="month"
6977     step="1"/>
6978     #errors
6979    
6980     #data
6981     <input xmlns="http://www.w3.org/1999/xhtml"
6982     type="month"
6983     step="100"/>
6984     #errors
6985    
6986     #data
6987     <input xmlns="http://www.w3.org/1999/xhtml"
6988     type="month"
6989     step="0000001"/>
6990     #errors
6991    
6992     #data
6993     <input xmlns="http://www.w3.org/1999/xhtml"
6994     type="month"
6995     step="32"/>
6996     #errors
6997    
6998     #data
6999     <input xmlns="http://www.w3.org/1999/xhtml"
7000     type="month"
7001     step="-1.4142135623730950488016887242097e0"/>
7002     #errors
7003    
7004     #data
7005     <input xmlns="http://www.w3.org/1999/xhtml"
7006     type="month"
7007     step="3.17e4"/>
7008     #errors
7009    
7010     #data
7011     <input xmlns="http://www.w3.org/1999/xhtml"
7012     type="month"
7013     step="0.4500"/>
7014     #errors
7015    
7016     #data
7017     <input xmlns="http://www.w3.org/1999/xhtml"
7018     type="month"
7019     step="0042.000"/>
7020     #errors
7021    
7022     #data
7023     <input xmlns="http://www.w3.org/1999/xhtml"
7024     type="month"
7025     step="42e0"/>
7026     #errors
7027    
7028     #data
7029     <input xmlns="http://www.w3.org/1999/xhtml"
7030     type="month"
7031     step="4.2e1"/>
7032     #errors
7033    
7034     #data
7035     <input xmlns="http://www.w3.org/1999/xhtml"
7036     type="month"
7037     step="420e-1"/>
7038     #errors
7039    
7040     #data
7041     <input xmlns="http://www.w3.org/1999/xhtml"
7042     type="month"
7043     step=""/>
7044     #errors
7045     /input/@step;float:syntax error;m
7046    
7047     #data
7048     <input xmlns="http://www.w3.org/1999/xhtml"
7049     type="month"
7050     step="+0"/>
7051     #errors
7052     /input/@step;float:syntax error;m
7053    
7054     #data
7055     <input xmlns="http://www.w3.org/1999/xhtml"
7056     type="month"
7057     step="0e+0"/>
7058     #errors
7059     /input/@step;float:syntax error;m
7060    
7061     #data
7062     <input xmlns="http://www.w3.org/1999/xhtml"
7063     type="month"
7064     step="+1e+3"/>
7065     #errors
7066     /input/@step;float:syntax error;m
7067    
7068     #data
7069     <input xmlns="http://www.w3.org/1999/xhtml"
7070     type="month"
7071     step=".42e2"/>
7072     #errors
7073     /input/@step;float:syntax error;m
7074    
7075     #data
7076     <input xmlns="http://www.w3.org/1999/xhtml"
7077     type="month"
7078     step="65000"/>
7079     #errors
7080    
7081     #data
7082     <input xmlns="http://www.w3.org/1999/xhtml"
7083     type="month"
7084     step="66000.0"/>
7085     #errors
7086    
7087     #data
7088     <input xmlns="http://www.w3.org/1999/xhtml"
7089     type="month"
7090     step="any"/>
7091     #errors
7092    
7093     #data
7094     <input xmlns="http://www.w3.org/1999/xhtml"
7095     type="month"
7096     step="Any"/>
7097     #errors
7098    
7099     #data
7100     <input xmlns="http://www.w3.org/1999/xhtml"
7101     type="month"
7102     step="ANY"/>
7103     #errors
7104    
7105     #data
7106     <input xmlns="http://www.w3.org/1999/xhtml"
7107     type="month"
7108     step="any "/>
7109     #errors
7110     /input/@step;float:syntax error;m
7111    
7112     #data
7113     <input xmlns="http://www.w3.org/1999/xhtml"
7114     type="month"
7115     step=" Any"/>
7116     #errors
7117     /input/@step;float:syntax error;m
7118    
7119     #data
7120     <input xmlns="http://www.w3.org/1999/xhtml"
7121     type="month"
7122     step="anything"/>
7123     #errors
7124     /input/@step;float:syntax error;m
7125    
7126     #data
7127     <input xmlns="http://www.w3.org/1999/xhtml"
7128     type="month"
7129     step=""/>
7130     #errors
7131     /input/@step;float:syntax error;m
7132    
7133     #data
7134     <input xmlns="http://www.w3.org/1999/xhtml"
7135     type="month"
7136     step="0"/>
7137     #errors
7138     /input/@step;float:out of range;m
7139    
7140     #data
7141     <input xmlns="http://www.w3.org/1999/xhtml"
7142     type="month"
7143     step="0.00"/>
7144     #errors
7145     /input/@step;float:out of range;m
7146    
7147     #data
7148     <input xmlns="http://www.w3.org/1999/xhtml"
7149     type="week"
7150     step="1"/>
7151     #errors
7152    
7153     #data
7154     <input xmlns="http://www.w3.org/1999/xhtml"
7155     type="week"
7156     step="100"/>
7157     #errors
7158    
7159     #data
7160     <input xmlns="http://www.w3.org/1999/xhtml"
7161     type="week"
7162     step="0000001"/>
7163     #errors
7164    
7165     #data
7166     <input xmlns="http://www.w3.org/1999/xhtml"
7167     type="week"
7168     step="32"/>
7169     #errors
7170    
7171     #data
7172     <input xmlns="http://www.w3.org/1999/xhtml"
7173     type="week"
7174     step="-1.4142135623730950488016887242097e0"/>
7175     #errors
7176    
7177     #data
7178     <input xmlns="http://www.w3.org/1999/xhtml"
7179     type="week"
7180     step="3.17e4"/>
7181     #errors
7182    
7183     #data
7184     <input xmlns="http://www.w3.org/1999/xhtml"
7185     type="week"
7186     step="0.4500"/>
7187     #errors
7188    
7189     #data
7190     <input xmlns="http://www.w3.org/1999/xhtml"
7191     type="week"
7192     step="0042.000"/>
7193     #errors
7194    
7195     #data
7196     <input xmlns="http://www.w3.org/1999/xhtml"
7197     type="week"
7198     step="42e0"/>
7199     #errors
7200    
7201     #data
7202     <input xmlns="http://www.w3.org/1999/xhtml"
7203     type="week"
7204     step="4.2e1"/>
7205     #errors
7206    
7207     #data
7208     <input xmlns="http://www.w3.org/1999/xhtml"
7209     type="week"
7210     step="420e-1"/>
7211     #errors
7212    
7213     #data
7214     <input xmlns="http://www.w3.org/1999/xhtml"
7215     type="week"
7216     step=""/>
7217     #errors
7218     /input/@step;float:syntax error;m
7219    
7220     #data
7221     <input xmlns="http://www.w3.org/1999/xhtml"
7222     type="week"
7223     step="+0"/>
7224     #errors
7225     /input/@step;float:syntax error;m
7226    
7227     #data
7228     <input xmlns="http://www.w3.org/1999/xhtml"
7229     type="week"
7230     step="0e+0"/>
7231     #errors
7232     /input/@step;float:syntax error;m
7233    
7234     #data
7235     <input xmlns="http://www.w3.org/1999/xhtml"
7236     type="week"
7237     step="+1e+3"/>
7238     #errors
7239     /input/@step;float:syntax error;m
7240    
7241     #data
7242     <input xmlns="http://www.w3.org/1999/xhtml"
7243     type="week"
7244     step=".42e2"/>
7245     #errors
7246     /input/@step;float:syntax error;m
7247    
7248     #data
7249     <input xmlns="http://www.w3.org/1999/xhtml"
7250     type="week"
7251     step="65000"/>
7252     #errors
7253    
7254     #data
7255     <input xmlns="http://www.w3.org/1999/xhtml"
7256     type="week"
7257     step="66000.0"/>
7258     #errors
7259    
7260     #data
7261     <input xmlns="http://www.w3.org/1999/xhtml"
7262     type="week"
7263     step="any"/>
7264     #errors
7265    
7266     #data
7267     <input xmlns="http://www.w3.org/1999/xhtml"
7268     type="week"
7269     step="Any"/>
7270     #errors
7271    
7272     #data
7273     <input xmlns="http://www.w3.org/1999/xhtml"
7274     type="week"
7275     step="ANY"/>
7276     #errors
7277    
7278     #data
7279     <input xmlns="http://www.w3.org/1999/xhtml"
7280     type="week"
7281     step="any "/>
7282     #errors
7283     /input/@step;float:syntax error;m
7284    
7285     #data
7286     <input xmlns="http://www.w3.org/1999/xhtml"
7287     type="week"
7288     step=" Any"/>
7289     #errors
7290     /input/@step;float:syntax error;m
7291    
7292     #data
7293     <input xmlns="http://www.w3.org/1999/xhtml"
7294     type="week"
7295     step="anything"/>
7296     #errors
7297     /input/@step;float:syntax error;m
7298    
7299     #data
7300     <input xmlns="http://www.w3.org/1999/xhtml"
7301     type="week"
7302     step=""/>
7303     #errors
7304     /input/@step;float:syntax error;m
7305    
7306     #data
7307     <input xmlns="http://www.w3.org/1999/xhtml"
7308     type="week"
7309     step="0"/>
7310     #errors
7311     /input/@step;float:out of range;m
7312    
7313     #data
7314     <input xmlns="http://www.w3.org/1999/xhtml"
7315     type="week"
7316     step="0.00"/>
7317     #errors
7318     /input/@step;float:out of range;m
7319    
7320     #data
7321     <input xmlns="http://www.w3.org/1999/xhtml"
7322     type="time"
7323     step="1"/>
7324     #errors
7325    
7326     #data
7327     <input xmlns="http://www.w3.org/1999/xhtml"
7328     type="time"
7329     step="100"/>
7330     #errors
7331    
7332     #data
7333     <input xmlns="http://www.w3.org/1999/xhtml"
7334     type="time"
7335     step="0000001"/>
7336     #errors
7337    
7338     #data
7339     <input xmlns="http://www.w3.org/1999/xhtml"
7340     type="time"
7341     step="32"/>
7342     #errors
7343    
7344     #data
7345     <input xmlns="http://www.w3.org/1999/xhtml"
7346     type="time"
7347     step="-1.4142135623730950488016887242097e0"/>
7348     #errors
7349    
7350     #data
7351     <input xmlns="http://www.w3.org/1999/xhtml"
7352     type="time"
7353     step="3.17e4"/>
7354     #errors
7355    
7356     #data
7357     <input xmlns="http://www.w3.org/1999/xhtml"
7358     type="time"
7359     step="0.4500"/>
7360     #errors
7361    
7362     #data
7363     <input xmlns="http://www.w3.org/1999/xhtml"
7364     type="time"
7365     step="0042.000"/>
7366     #errors
7367    
7368     #data
7369     <input xmlns="http://www.w3.org/1999/xhtml"
7370     type="time"
7371     step="42e0"/>
7372     #errors
7373    
7374     #data
7375     <input xmlns="http://www.w3.org/1999/xhtml"
7376     type="time"
7377     step="4.2e1"/>
7378     #errors
7379    
7380     #data
7381     <input xmlns="http://www.w3.org/1999/xhtml"
7382     type="time"
7383     step="420e-1"/>
7384     #errors
7385    
7386     #data
7387     <input xmlns="http://www.w3.org/1999/xhtml"
7388     type="time"
7389     step=""/>
7390     #errors
7391     /input/@step;float:syntax error;m
7392    
7393     #data
7394     <input xmlns="http://www.w3.org/1999/xhtml"
7395     type="time"
7396     step="+0"/>
7397     #errors
7398     /input/@step;float:syntax error;m
7399    
7400     #data
7401     <input xmlns="http://www.w3.org/1999/xhtml"
7402     type="time"
7403     step="0e+0"/>
7404     #errors
7405     /input/@step;float:syntax error;m
7406    
7407     #data
7408     <input xmlns="http://www.w3.org/1999/xhtml"
7409     type="time"
7410     step="+1e+3"/>
7411     #errors
7412     /input/@step;float:syntax error;m
7413    
7414     #data
7415     <input xmlns="http://www.w3.org/1999/xhtml"
7416     type="time"
7417     step=".42e2"/>
7418     #errors
7419     /input/@step;float:syntax error;m
7420    
7421     #data
7422     <input xmlns="http://www.w3.org/1999/xhtml"
7423     type="time"
7424     step="65000"/>
7425     #errors
7426    
7427     #data
7428     <input xmlns="http://www.w3.org/1999/xhtml"
7429     type="time"
7430     step="66000.0"/>
7431     #errors
7432    
7433     #data
7434     <input xmlns="http://www.w3.org/1999/xhtml"
7435     type="time"
7436     step="any"/>
7437     #errors
7438    
7439     #data
7440     <input xmlns="http://www.w3.org/1999/xhtml"
7441     type="time"
7442     step="Any"/>
7443     #errors
7444    
7445     #data
7446     <input xmlns="http://www.w3.org/1999/xhtml"
7447     type="time"
7448     step="ANY"/>
7449     #errors
7450    
7451     #data
7452     <input xmlns="http://www.w3.org/1999/xhtml"
7453     type="time"
7454     step="any "/>
7455     #errors
7456     /input/@step;float:syntax error;m
7457    
7458     #data
7459     <input xmlns="http://www.w3.org/1999/xhtml"
7460     type="time"
7461     step=" Any"/>
7462     #errors
7463     /input/@step;float:syntax error;m
7464    
7465     #data
7466     <input xmlns="http://www.w3.org/1999/xhtml"
7467     type="time"
7468     step="anything"/>
7469     #errors
7470     /input/@step;float:syntax error;m
7471    
7472     #data
7473     <input xmlns="http://www.w3.org/1999/xhtml"
7474     type="time"
7475     step=""/>
7476     #errors
7477     /input/@step;float:syntax error;m
7478    
7479     #data
7480     <input xmlns="http://www.w3.org/1999/xhtml"
7481     type="time"
7482     step="0"/>
7483     #errors
7484     /input/@step;float:out of range;m
7485    
7486     #data
7487     <input xmlns="http://www.w3.org/1999/xhtml"
7488     type="time"
7489     step="0.00"/>
7490     #errors
7491     /input/@step;float:out of range;m
7492    
7493     #data
7494     <input xmlns="http://www.w3.org/1999/xhtml"
7495     type="datetime-local"
7496     step="1"/>
7497     #errors
7498    
7499     #data
7500     <input xmlns="http://www.w3.org/1999/xhtml"
7501     type="datetime-local"
7502     step="100"/>
7503     #errors
7504    
7505     #data
7506     <input xmlns="http://www.w3.org/1999/xhtml"
7507     type="datetime-local"
7508     step="0000001"/>
7509     #errors
7510    
7511     #data
7512     <input xmlns="http://www.w3.org/1999/xhtml"
7513     type="datetime-local"
7514     step="32"/>
7515     #errors
7516    
7517     #data
7518     <input xmlns="http://www.w3.org/1999/xhtml"
7519     type="datetime-local"
7520     step="-1.4142135623730950488016887242097e0"/>
7521     #errors
7522    
7523     #data
7524     <input xmlns="http://www.w3.org/1999/xhtml"
7525     type="datetime-local"
7526     step="3.17e4"/>
7527     #errors
7528    
7529     #data
7530     <input xmlns="http://www.w3.org/1999/xhtml"
7531     type="datetime-local"
7532     step="0.4500"/>
7533     #errors
7534    
7535     #data
7536     <input xmlns="http://www.w3.org/1999/xhtml"
7537     type="datetime-local"
7538     step="0042.000"/>
7539     #errors
7540    
7541     #data
7542     <input xmlns="http://www.w3.org/1999/xhtml"
7543     type="datetime-local"
7544     step="42e0"/>
7545     #errors
7546    
7547     #data
7548     <input xmlns="http://www.w3.org/1999/xhtml"
7549     type="datetime-local"
7550     step="4.2e1"/>
7551     #errors
7552    
7553     #data
7554     <input xmlns="http://www.w3.org/1999/xhtml"
7555     type="datetime-local"
7556     step="420e-1"/>
7557     #errors
7558    
7559     #data
7560     <input xmlns="http://www.w3.org/1999/xhtml"
7561     type="datetime-local"
7562     step=""/>
7563     #errors
7564     /input/@step;float:syntax error;m
7565    
7566     #data
7567     <input xmlns="http://www.w3.org/1999/xhtml"
7568     type="datetime-local"
7569     step="+0"/>
7570     #errors
7571     /input/@step;float:syntax error;m
7572    
7573     #data
7574     <input xmlns="http://www.w3.org/1999/xhtml"
7575     type="datetime-local"
7576     step="0e+0"/>
7577     #errors
7578     /input/@step;float:syntax error;m
7579    
7580     #data
7581     <input xmlns="http://www.w3.org/1999/xhtml"
7582     type="datetime-local"
7583     step="+1e+3"/>
7584     #errors
7585     /input/@step;float:syntax error;m
7586    
7587     #data
7588     <input xmlns="http://www.w3.org/1999/xhtml"
7589     type="datetime-local"
7590     step=".42e2"/>
7591     #errors
7592     /input/@step;float:syntax error;m
7593    
7594     #data
7595     <input xmlns="http://www.w3.org/1999/xhtml"
7596     type="datetime-local"
7597     step="65000"/>
7598     #errors
7599    
7600     #data
7601     <input xmlns="http://www.w3.org/1999/xhtml"
7602     type="datetime-local"
7603     step="66000.0"/>
7604     #errors
7605    
7606     #data
7607     <input xmlns="http://www.w3.org/1999/xhtml"
7608     type="datetime-local"
7609     step="any"/>
7610     #errors
7611    
7612     #data
7613     <input xmlns="http://www.w3.org/1999/xhtml"
7614     type="datetime-local"
7615     step="Any"/>
7616     #errors
7617    
7618     #data
7619     <input xmlns="http://www.w3.org/1999/xhtml"
7620     type="datetime-local"
7621     step="ANY"/>
7622     #errors
7623    
7624     #data
7625     <input xmlns="http://www.w3.org/1999/xhtml"
7626     type="datetime-local"
7627     step="any "/>
7628     #errors
7629     /input/@step;float:syntax error;m
7630    
7631     #data
7632     <input xmlns="http://www.w3.org/1999/xhtml"
7633     type="datetime-local"
7634     step=" Any"/>
7635     #errors
7636     /input/@step;float:syntax error;m
7637    
7638     #data
7639     <input xmlns="http://www.w3.org/1999/xhtml"
7640     type="datetime-local"
7641     step="anything"/>
7642     #errors
7643     /input/@step;float:syntax error;m
7644    
7645     #data
7646     <input xmlns="http://www.w3.org/1999/xhtml"
7647     type="datetime-local"
7648     step=""/>
7649     #errors
7650     /input/@step;float:syntax error;m
7651    
7652     #data
7653     <input xmlns="http://www.w3.org/1999/xhtml"
7654     type="datetime-local"
7655     step="0"/>
7656     #errors
7657     /input/@step;float:out of range;m
7658    
7659     #data
7660     <input xmlns="http://www.w3.org/1999/xhtml"
7661     type="datetime-local"
7662     step="0.00"/>
7663     #errors
7664     /input/@step;float:out of range;m
7665    
7666     #data
7667     <input xmlns="http://www.w3.org/1999/xhtml"
7668     type="number"
7669     step="1"/>
7670     #errors
7671    
7672     #data
7673     <input xmlns="http://www.w3.org/1999/xhtml"
7674     type="number"
7675     step="100"/>
7676     #errors
7677    
7678     #data
7679     <input xmlns="http://www.w3.org/1999/xhtml"
7680     type="number"
7681     step="0000001"/>
7682     #errors
7683    
7684     #data
7685     <input xmlns="http://www.w3.org/1999/xhtml"
7686     type="number"
7687     step="32"/>
7688     #errors
7689    
7690     #data
7691     <input xmlns="http://www.w3.org/1999/xhtml"
7692     type="number"
7693     step="-1.4142135623730950488016887242097e0"/>
7694     #errors
7695    
7696     #data
7697     <input xmlns="http://www.w3.org/1999/xhtml"
7698     type="number"
7699     step="3.17e4"/>
7700     #errors
7701    
7702     #data
7703     <input xmlns="http://www.w3.org/1999/xhtml"
7704     type="number"
7705     step="0.4500"/>
7706     #errors
7707    
7708     #data
7709     <input xmlns="http://www.w3.org/1999/xhtml"
7710     type="number"
7711     step="0042.000"/>
7712     #errors
7713    
7714     #data
7715     <input xmlns="http://www.w3.org/1999/xhtml"
7716     type="number"
7717     step="42e0"/>
7718     #errors
7719    
7720     #data
7721     <input xmlns="http://www.w3.org/1999/xhtml"
7722     type="number"
7723     step="4.2e1"/>
7724     #errors
7725    
7726     #data
7727     <input xmlns="http://www.w3.org/1999/xhtml"
7728     type="number"
7729     step="420e-1"/>
7730     #errors
7731    
7732     #data
7733     <input xmlns="http://www.w3.org/1999/xhtml"
7734     type="number"
7735     step=""/>
7736     #errors
7737     /input/@step;float:syntax error;m
7738    
7739     #data
7740     <input xmlns="http://www.w3.org/1999/xhtml"
7741     type="number"
7742     step="+0"/>
7743     #errors
7744     /input/@step;float:syntax error;m
7745    
7746     #data
7747     <input xmlns="http://www.w3.org/1999/xhtml"
7748     type="number"
7749     step="0e+0"/>
7750     #errors
7751     /input/@step;float:syntax error;m
7752    
7753     #data
7754     <input xmlns="http://www.w3.org/1999/xhtml"
7755     type="number"
7756     step="+1e+3"/>
7757     #errors
7758     /input/@step;float:syntax error;m
7759    
7760     #data
7761     <input xmlns="http://www.w3.org/1999/xhtml"
7762     type="number"
7763     step=".42e2"/>
7764     #errors
7765     /input/@step;float:syntax error;m
7766    
7767     #data
7768     <input xmlns="http://www.w3.org/1999/xhtml"
7769     type="number"
7770     step="65000"/>
7771     #errors
7772    
7773     #data
7774     <input xmlns="http://www.w3.org/1999/xhtml"
7775     type="number"
7776     step="66000.0"/>
7777     #errors
7778    
7779     #data
7780     <input xmlns="http://www.w3.org/1999/xhtml"
7781     type="number"
7782     step="any"/>
7783     #errors
7784    
7785     #data
7786     <input xmlns="http://www.w3.org/1999/xhtml"
7787     type="number"
7788     step="Any"/>
7789     #errors
7790    
7791     #data
7792     <input xmlns="http://www.w3.org/1999/xhtml"
7793     type="number"
7794     step="ANY"/>
7795     #errors
7796    
7797     #data
7798     <input xmlns="http://www.w3.org/1999/xhtml"
7799     type="number"
7800     step="any "/>
7801     #errors
7802     /input/@step;float:syntax error;m
7803    
7804     #data
7805     <input xmlns="http://www.w3.org/1999/xhtml"
7806     type="number"
7807     step=" Any"/>
7808     #errors
7809     /input/@step;float:syntax error;m
7810    
7811     #data
7812     <input xmlns="http://www.w3.org/1999/xhtml"
7813     type="number"
7814     step="anything"/>
7815     #errors
7816     /input/@step;float:syntax error;m
7817    
7818     #data
7819     <input xmlns="http://www.w3.org/1999/xhtml"
7820     type="number"
7821     step=""/>
7822     #errors
7823     /input/@step;float:syntax error;m
7824    
7825     #data
7826     <input xmlns="http://www.w3.org/1999/xhtml"
7827     type="number"
7828     step="0"/>
7829     #errors
7830     /input/@step;float:out of range;m
7831    
7832     #data
7833     <input xmlns="http://www.w3.org/1999/xhtml"
7834     type="number"
7835     step="0.00"/>
7836     #errors
7837     /input/@step;float:out of range;m
7838    
7839     #data
7840     <input xmlns="http://www.w3.org/1999/xhtml"
7841     type="range"
7842     step="1"/>
7843     #errors
7844    
7845     #data
7846     <input xmlns="http://www.w3.org/1999/xhtml"
7847     type="range"
7848     step="100"/>
7849     #errors
7850    
7851     #data
7852     <input xmlns="http://www.w3.org/1999/xhtml"
7853     type="range"
7854     step="0000001"/>
7855     #errors
7856    
7857     #data
7858     <input xmlns="http://www.w3.org/1999/xhtml"
7859     type="range"
7860     step="32"/>
7861     #errors
7862    
7863     #data
7864     <input xmlns="http://www.w3.org/1999/xhtml"
7865     type="range"
7866     step="-1.4142135623730950488016887242097e0"/>
7867     #errors
7868    
7869     #data
7870     <input xmlns="http://www.w3.org/1999/xhtml"
7871     type="range"
7872     step="3.17e4"/>
7873     #errors
7874    
7875     #data
7876     <input xmlns="http://www.w3.org/1999/xhtml"
7877     type="range"
7878     step="0.4500"/>
7879     #errors
7880    
7881     #data
7882     <input xmlns="http://www.w3.org/1999/xhtml"
7883     type="range"
7884     step="0042.000"/>
7885     #errors
7886    
7887     #data
7888     <input xmlns="http://www.w3.org/1999/xhtml"
7889     type="range"
7890     step="42e0"/>
7891     #errors
7892    
7893     #data
7894     <input xmlns="http://www.w3.org/1999/xhtml"
7895     type="range"
7896     step="4.2e1"/>
7897     #errors
7898    
7899     #data
7900     <input xmlns="http://www.w3.org/1999/xhtml"
7901     type="range"
7902     step="420e-1"/>
7903     #errors
7904    
7905     #data
7906     <input xmlns="http://www.w3.org/1999/xhtml"
7907     type="range"
7908     step=""/>
7909     #errors
7910     /input/@step;float:syntax error;m
7911    
7912     #data
7913     <input xmlns="http://www.w3.org/1999/xhtml"
7914     type="range"
7915     step="+0"/>
7916     #errors
7917     /input/@step;float:syntax error;m
7918    
7919     #data
7920     <input xmlns="http://www.w3.org/1999/xhtml"
7921     type="range"
7922     step="0e+0"/>
7923     #errors
7924     /input/@step;float:syntax error;m
7925    
7926     #data
7927     <input xmlns="http://www.w3.org/1999/xhtml"
7928     type="range"
7929     step="+1e+3"/>
7930     #errors
7931     /input/@step;float:syntax error;m
7932    
7933     #data
7934     <input xmlns="http://www.w3.org/1999/xhtml"
7935     type="range"
7936     step=".42e2"/>
7937     #errors
7938     /input/@step;float:syntax error;m
7939    
7940     #data
7941     <input xmlns="http://www.w3.org/1999/xhtml"
7942     type="range"
7943     step="65000"/>
7944     #errors
7945    
7946     #data
7947     <input xmlns="http://www.w3.org/1999/xhtml"
7948     type="range"
7949     step="66000.0"/>
7950     #errors
7951    
7952     #data
7953     <input xmlns="http://www.w3.org/1999/xhtml"
7954     type="range"
7955     step="any"/>
7956     #errors
7957    
7958     #data
7959     <input xmlns="http://www.w3.org/1999/xhtml"
7960     type="range"
7961     step="Any"/>
7962     #errors
7963    
7964     #data
7965     <input xmlns="http://www.w3.org/1999/xhtml"
7966     type="range"
7967     step="ANY"/>
7968     #errors
7969    
7970     #data
7971     <input xmlns="http://www.w3.org/1999/xhtml"
7972     type="range"
7973     step="any "/>
7974     #errors
7975     /input/@step;float:syntax error;m
7976    
7977     #data
7978     <input xmlns="http://www.w3.org/1999/xhtml"
7979     type="range"
7980     step=" Any"/>
7981     #errors
7982     /input/@step;float:syntax error;m
7983    
7984     #data
7985     <input xmlns="http://www.w3.org/1999/xhtml"
7986     type="range"
7987     step="anything"/>
7988     #errors
7989     /input/@step;float:syntax error;m
7990    
7991     #data
7992     <input xmlns="http://www.w3.org/1999/xhtml"
7993     type="range"
7994     step=""/>
7995     #errors
7996     /input/@step;float:syntax error;m
7997    
7998     #data
7999     <input xmlns="http://www.w3.org/1999/xhtml"
8000     type="range"
8001     step="0"/>
8002     #errors
8003     /input/@step;float:out of range;m
8004    
8005     #data
8006     <input xmlns="http://www.w3.org/1999/xhtml"
8007     type="range"
8008     step="0.00"/>
8009     #errors
8010     /input/@step;float:out of range;m
8011 wakaba 1.10
8012     #data
8013     <input xmlns="http://www.w3.org/1999/xhtml"
8014     accept-charset=""/>
8015     #errors
8016     /input/@accept-charset;attribute not defined;m
8017    
8018     #data
8019     <input xmlns="http://www.w3.org/1999/xhtml"
8020     accept-charset="x-euc-jp"/>
8021     #errors
8022     /input/@accept-charset;attribute not defined;m
8023     /input/@accept-charset;charset:private;w
8024     /input/@accept-charset;charset:not preferred;m
8025    
8026     #data
8027     <input xmlns="http://www.w3.org/1999/xhtml"
8028     accept-charset="us-ascii iso-2022-jp"/>
8029     #errors
8030     /input/@accept-charset;attribute not defined;m
8031     /input/@accept-charset;charset:not ascii compat;m
8032    
8033     #data
8034     <input xmlns="http://www.w3.org/1999/xhtml"
8035     type="hidden"
8036     accept-charset="us-ascii"/>
8037     #errors
8038     /input/@accept-charset;attribute not defined;m
8039    
8040    
8041     #data
8042     <input xmlns="http://www.w3.org/1999/xhtml"
8043     type="hidden"
8044     accept-charset="us-ascii"/>
8045     #errors
8046     /input/@accept-charset;attribute not defined;m
8047    
8048    
8049     #data
8050     <input xmlns="http://www.w3.org/1999/xhtml"
8051     type="email"
8052     accept-charset="us-ascii"/>
8053     #errors
8054     /input/@accept-charset;attribute not defined;m
8055    
8056     #data
8057     <input xmlns="http://www.w3.org/1999/xhtml"
8058     type="url"
8059     accept-charset="us-ascii"/>
8060     #errors
8061     /input/@accept-charset;attribute not defined;m
8062    
8063 wakaba 1.12 #data
8064     <input xmlns="http://www.w3.org/1999/xhtml"
8065     type="search"
8066     accept-charset="us-ascii"/>
8067     #errors
8068     /input/@accept-charset;attribute not defined;m
8069 wakaba 1.10
8070     #data
8071     <input xmlns="http://www.w3.org/1999/xhtml"
8072     type="password"
8073     accept-charset="us-ascii"/>
8074     #errors
8075     /input/@accept-charset;attribute not defined;m
8076    
8077    
8078     #data
8079     <input xmlns="http://www.w3.org/1999/xhtml"
8080     type="datetime"
8081     accept-charset="us-ascii"/>
8082     #errors
8083     /input/@accept-charset;attribute not defined;m
8084    
8085    
8086     #data
8087     <input xmlns="http://www.w3.org/1999/xhtml"
8088     type="date"
8089     accept-charset="us-ascii"/>
8090     #errors
8091     /input/@accept-charset;attribute not defined;m
8092    
8093    
8094     #data
8095     <input xmlns="http://www.w3.org/1999/xhtml"
8096     type="month"
8097     accept-charset="us-ascii"/>
8098     #errors
8099     /input/@accept-charset;attribute not defined;m
8100    
8101    
8102     #data
8103     <input xmlns="http://www.w3.org/1999/xhtml"
8104     type="week"
8105     accept-charset="us-ascii"/>
8106     #errors
8107     /input/@accept-charset;attribute not defined;m
8108    
8109    
8110     #data
8111     <input xmlns="http://www.w3.org/1999/xhtml"
8112     type="time"
8113     accept-charset="us-ascii"/>
8114     #errors
8115     /input/@accept-charset;attribute not defined;m
8116    
8117    
8118     #data
8119     <input xmlns="http://www.w3.org/1999/xhtml"
8120     type="datetime-local"
8121     accept-charset="us-ascii"/>
8122     #errors
8123     /input/@accept-charset;attribute not defined;m
8124    
8125    
8126     #data
8127     <input xmlns="http://www.w3.org/1999/xhtml"
8128     type="number"
8129     accept-charset="us-ascii"/>
8130     #errors
8131     /input/@accept-charset;attribute not defined;m
8132    
8133    
8134     #data
8135     <input xmlns="http://www.w3.org/1999/xhtml"
8136     type="range"
8137     accept-charset="us-ascii"/>
8138     #errors
8139     /input/@accept-charset;attribute not defined;m
8140    
8141    
8142     #data
8143     <input xmlns="http://www.w3.org/1999/xhtml"
8144     type="checkbox"
8145     accept-charset="us-ascii"/>
8146     #errors
8147     /input/@accept-charset;attribute not defined;m
8148    
8149    
8150     #data
8151     <input xmlns="http://www.w3.org/1999/xhtml"
8152     type="radio"
8153     accept-charset="us-ascii"/>
8154     #errors
8155     /input/@accept-charset;attribute not defined;m
8156    
8157    
8158     #data
8159     <input xmlns="http://www.w3.org/1999/xhtml"
8160     type="file"
8161     accept-charset="us-ascii"/>
8162     #errors
8163     /input/@accept-charset;attribute not defined;m
8164    
8165    
8166     #data
8167     <input xmlns="http://www.w3.org/1999/xhtml"
8168     type="submit"
8169     accept-charset="us-ascii"/>
8170     #errors
8171     /input/@accept-charset;attribute not defined;m
8172    
8173    
8174     #data
8175     <input xmlns="http://www.w3.org/1999/xhtml"
8176     type="image"
8177     accept-charset="us-ascii"/>
8178     #errors
8179     /input/@accept-charset;attribute not defined;m
8180    
8181     #data
8182     <input xmlns="http://www.w3.org/1999/xhtml"
8183     type="reset"
8184     accept-charset="us-ascii"/>
8185     #errors
8186     /input/@accept-charset;attribute not defined;m
8187    
8188     #data
8189     <input xmlns="http://www.w3.org/1999/xhtml"
8190     type="button"
8191     accept-charset="us-ascii"/>
8192     #errors
8193     /input/@accept-charset;attribute not defined;m
8194    
8195     #data
8196     <input xmlns="http://www.w3.org/1999/xhtml"
8197     type="add"
8198     accept-charset="us-ascii"/>
8199     #errors
8200     /input/@accept-charset;attribute not defined;m
8201     /input/@type;enumerated:invalid;m
8202    
8203     #data
8204     <input xmlns="http://www.w3.org/1999/xhtml"
8205     type="remove"
8206     accept-charset="us-ascii"/>
8207     #errors
8208     /input/@accept-charset;attribute not defined;m
8209     /input/@type;enumerated:invalid;m
8210    
8211     #data
8212     <input xmlns="http://www.w3.org/1999/xhtml"
8213     type="move-up"
8214     accept-charset="us-ascii"/>
8215     #errors
8216     /input/@accept-charset;attribute not defined;m
8217     /input/@type;enumerated:invalid;m
8218    
8219     #data
8220     <input xmlns="http://www.w3.org/1999/xhtml"
8221     type="move-down"
8222     accept-charset="us-ascii"/>
8223     #errors
8224     /input/@accept-charset;attribute not defined;m
8225     /input/@type;enumerated:invalid;m
8226    
8227     #data
8228     <input accesskey="" xmlns="http://www.w3.org/1999/xhtml"/>
8229     #errors
8230     /input/@accesskey;char:syntax error;m
8231     /input/@accesskey;attribute not defined;m
8232    
8233     #data
8234     <input accesskey="x" xmlns="http://www.w3.org/1999/xhtml"/>
8235     #errors
8236     /input/@accesskey;attribute not defined;m
8237    
8238     #data
8239     <input xmlns="http://www.w3.org/1999/xhtml"
8240     type="hidden"
8241     accesskey="a"/>
8242     #errors
8243     /input/@accesskey;attribute not defined;m
8244     /input/@accesskey;input attr not applicable;hidden;m
8245    
8246     #data
8247     <input xmlns="http://www.w3.org/1999/xhtml"
8248     type="text"
8249     accesskey="a"/>
8250     #errors
8251     /input/@accesskey;attribute not defined;m
8252    
8253     #data
8254     <input xmlns="http://www.w3.org/1999/xhtml"
8255     type="email"
8256     accesskey="a"/>
8257     #errors
8258     /input/@accesskey;attribute not defined;m
8259    
8260     #data
8261     <input xmlns="http://www.w3.org/1999/xhtml"
8262     type="url"
8263     accesskey="a"/>
8264     #errors
8265     /input/@accesskey;attribute not defined;m
8266    
8267     #data
8268     <input xmlns="http://www.w3.org/1999/xhtml"
8269 wakaba 1.12 type="search"
8270     accesskey="a"/>
8271     #errors
8272     /input/@accesskey;attribute not defined;m
8273    
8274     #data
8275     <input xmlns="http://www.w3.org/1999/xhtml"
8276 wakaba 1.10 type="password"
8277     accesskey="a"/>
8278     #errors
8279     /input/@accesskey;attribute not defined;m
8280    
8281     #data
8282     <input xmlns="http://www.w3.org/1999/xhtml"
8283     type="datetime"
8284     accesskey="a"/>
8285     #errors
8286     /input/@accesskey;attribute not defined;m
8287    
8288     #data
8289     <input xmlns="http://www.w3.org/1999/xhtml"
8290     type="date"
8291     accesskey="a"/>
8292     #errors
8293     /input/@accesskey;attribute not defined;m
8294    
8295     #data
8296     <input xmlns="http://www.w3.org/1999/xhtml"
8297     type="month"
8298     accesskey="a"/>
8299     #errors
8300     /input/@accesskey;attribute not defined;m
8301    
8302     #data
8303     <input xmlns="http://www.w3.org/1999/xhtml"
8304     type="week"
8305     accesskey="a"/>
8306     #errors
8307     /input/@accesskey;attribute not defined;m
8308    
8309     #data
8310     <input xmlns="http://www.w3.org/1999/xhtml"
8311     type="time"
8312     accesskey="a"/>
8313     #errors
8314     /input/@accesskey;attribute not defined;m
8315    
8316     #data
8317     <input xmlns="http://www.w3.org/1999/xhtml"
8318     type="datetime-local"
8319     accesskey="a"/>
8320     #errors
8321     /input/@accesskey;attribute not defined;m
8322    
8323     #data
8324     <input xmlns="http://www.w3.org/1999/xhtml"
8325     type="number"
8326     accesskey="a"/>
8327     #errors
8328     /input/@accesskey;attribute not defined;m
8329    
8330     #data
8331     <input xmlns="http://www.w3.org/1999/xhtml"
8332     type="range"
8333     accesskey="a"/>
8334     #errors
8335     /input/@accesskey;attribute not defined;m
8336    
8337     #data
8338     <input xmlns="http://www.w3.org/1999/xhtml"
8339     type="checkbox"
8340     accesskey="a"/>
8341     #errors
8342     /input/@accesskey;attribute not defined;m
8343    
8344     #data
8345     <input xmlns="http://www.w3.org/1999/xhtml"
8346     type="radio"
8347     accesskey="a"/>
8348     #errors
8349     /input/@accesskey;attribute not defined;m
8350    
8351     #data
8352     <input xmlns="http://www.w3.org/1999/xhtml"
8353     type="file"
8354     accesskey="a"/>
8355     #errors
8356     /input/@accesskey;attribute not defined;m
8357    
8358     #data
8359     <input xmlns="http://www.w3.org/1999/xhtml"
8360     type="submit"
8361     accesskey="a"/>
8362     #errors
8363     /input/@accesskey;attribute not defined;m
8364    
8365     #data
8366     <input xmlns="http://www.w3.org/1999/xhtml"
8367     type="image"
8368     accesskey="a"/>
8369     #errors
8370     /input/@accesskey;attribute not defined;m
8371    
8372     #data
8373     <input xmlns="http://www.w3.org/1999/xhtml"
8374     type="reset"
8375     accesskey="a"/>
8376     #errors
8377     /input/@accesskey;attribute not defined;m
8378    
8379     #data
8380     <input xmlns="http://www.w3.org/1999/xhtml"
8381     type="button"
8382     accesskey="a"/>
8383     #errors
8384     /input/@accesskey;attribute not defined;m
8385    
8386     #data
8387     <input xmlns="http://www.w3.org/1999/xhtml"
8388     type="add"
8389     accesskey="a"/>
8390     #errors
8391     /input/@type;enumerated:invalid;m
8392     /input/@accesskey;attribute not defined;m
8393    
8394     #data
8395     <input xmlns="http://www.w3.org/1999/xhtml"
8396     type="remove"
8397     accesskey="a"/>
8398     #errors
8399     /input/@type;enumerated:invalid;m
8400     /input/@accesskey;attribute not defined;m
8401    
8402     #data
8403     <input xmlns="http://www.w3.org/1999/xhtml"
8404     type="move-up"
8405     accesskey="a"/>
8406     #errors
8407     /input/@accesskey;attribute not defined;m
8408     /input/@type;enumerated:invalid;m
8409    
8410     #data
8411     <input xmlns="http://www.w3.org/1999/xhtml"
8412     type="move-down"
8413     accesskey="a"/>
8414     #errors
8415     /input/@accesskey;attribute not defined;m
8416     /input/@type;enumerated:invalid;m
8417    
8418     #data
8419     <input xmlns="http://www.w3.org/1999/xhtml"
8420     type="hidden"
8421     replace=""/>
8422     #errors
8423     /input/@replace;attribute not defined;m
8424     /input/@replace;input attr not applicable;hidden;m
8425    
8426     #data
8427     <input xmlns="http://www.w3.org/1999/xhtml"
8428     type="text"
8429     replace=""/>
8430     #errors
8431     /input/@replace;attribute not defined;m
8432     /input/@replace;input attr not applicable;text;m
8433    
8434     #data
8435     <input xmlns="http://www.w3.org/1999/xhtml"
8436     type="email"
8437     replace=""/>
8438     #errors
8439     /input/@replace;attribute not defined;m
8440     /input/@replace;input attr not applicable;email;m
8441    
8442     #data
8443     <input xmlns="http://www.w3.org/1999/xhtml"
8444     type="url"
8445     replace=""/>
8446     #errors
8447     /input/@replace;attribute not defined;m
8448     /input/@replace;input attr not applicable;url;m
8449    
8450     #data
8451     <input xmlns="http://www.w3.org/1999/xhtml"
8452 wakaba 1.12 type="search"
8453     replace=""/>
8454     #errors
8455     /input/@replace;attribute not defined;m
8456     /input/@replace;input attr not applicable;search;m
8457    
8458     #data
8459     <input xmlns="http://www.w3.org/1999/xhtml"
8460 wakaba 1.10 type="password"
8461     replace=""/>
8462     #errors
8463     /input/@replace;attribute not defined;m
8464     /input/@replace;input attr not applicable;password;m
8465    
8466     #data
8467     <input xmlns="http://www.w3.org/1999/xhtml"
8468     type="datetime"
8469     replace=""/>
8470     #errors
8471     /input/@replace;attribute not defined;m
8472     /input/@replace;input attr not applicable;datetime;m
8473    
8474     #data
8475     <input xmlns="http://www.w3.org/1999/xhtml"
8476     type="date"
8477     replace=""/>
8478     #errors
8479     /input/@replace;attribute not defined;m
8480     /input/@replace;input attr not applicable;date;m
8481    
8482     #data
8483     <input xmlns="http://www.w3.org/1999/xhtml"
8484     type="month"
8485     replace=""/>
8486     #errors
8487     /input/@replace;attribute not defined;m
8488     /input/@replace;input attr not applicable;month;m
8489    
8490     #data
8491     <input xmlns="http://www.w3.org/1999/xhtml"
8492     type="week"
8493     replace=""/>
8494     #errors
8495     /input/@replace;attribute not defined;m
8496     /input/@replace;input attr not applicable;week;m
8497    
8498     #data
8499     <input xmlns="http://www.w3.org/1999/xhtml"
8500     type="time"
8501     replace=""/>
8502     #errors
8503     /input/@replace;attribute not defined;m
8504     /input/@replace;input attr not applicable;time;m
8505    
8506     #data
8507     <input xmlns="http://www.w3.org/1999/xhtml"
8508     type="datetime-local"
8509     replace=""/>
8510     #errors
8511     /input/@replace;attribute not defined;m
8512     /input/@replace;input attr not applicable;datetime-local;m
8513    
8514     #data
8515     <input xmlns="http://www.w3.org/1999/xhtml"
8516     type="number"
8517     replace=""/>
8518     #errors
8519     /input/@replace;attribute not defined;m
8520     /input/@replace;input attr not applicable;number;m
8521    
8522     #data
8523     <input xmlns="http://www.w3.org/1999/xhtml"
8524     type="range"
8525     replace=""/>
8526     #errors
8527     /input/@replace;attribute not defined;m
8528     /input/@replace;input attr not applicable;range;m
8529    
8530     #data
8531     <input xmlns="http://www.w3.org/1999/xhtml"
8532     type="checkbox"
8533     replace=""/>
8534     #errors
8535     /input/@replace;attribute not defined;m
8536     /input/@replace;input attr not applicable;checkbox;m
8537    
8538     #data
8539     <input xmlns="http://www.w3.org/1999/xhtml"
8540     type="radio"
8541     replace=""/>
8542     #errors
8543     /input/@replace;attribute not defined;m
8544     /input/@replace;input attr not applicable;radio;m
8545    
8546     #data
8547     <input xmlns="http://www.w3.org/1999/xhtml"
8548     type="file"
8549     replace=""/>
8550     #errors
8551     /input/@replace;attribute not defined;m
8552     /input/@replace;input attr not applicable;file;m
8553    
8554     #data
8555     <input xmlns="http://www.w3.org/1999/xhtml"
8556     type="reset"
8557     replace=""/>
8558     #errors
8559     /input/@replace;attribute not defined;m
8560     /input/@replace;input attr not applicable;reset;m
8561    
8562     #data
8563     <input xmlns="http://www.w3.org/1999/xhtml"
8564     type="button"
8565     replace=""/>
8566     #errors
8567     /input/@replace;attribute not defined;m
8568     /input/@replace;input attr not applicable;button;m
8569    
8570     #data
8571     <input xmlns="http://www.w3.org/1999/xhtml"
8572     type="add"
8573     replace=""/>
8574     #errors
8575     /input/@replace;attribute not defined;m
8576     /input/@replace;input attr not applicable;add;m
8577     /input/@type;enumerated:invalid;m
8578    
8579     #data
8580     <input xmlns="http://www.w3.org/1999/xhtml"
8581     type="remove"
8582     replace=""/>
8583     #errors
8584     /input/@replace;attribute not defined;m
8585     /input/@replace;input attr not applicable;remove;m
8586     /input/@type;enumerated:invalid;m
8587    
8588     #data
8589     <input xmlns="http://www.w3.org/1999/xhtml"
8590     type="move-up"
8591     replace=""/>
8592     #errors
8593     /input/@replace;attribute not defined;m
8594     /input/@replace;input attr not applicable;move-up;m
8595     /input/@type;enumerated:invalid;m
8596    
8597     #data
8598     <input xmlns="http://www.w3.org/1999/xhtml"
8599     type="move-down"
8600     replace=""/>
8601     #errors
8602     /input/@replace;attribute not defined;m
8603     /input/@replace;input attr not applicable;move-down;m
8604     /input/@type;enumerated:invalid;m
8605    
8606     #data
8607     <input xmlns="http://www.w3.org/1999/xhtml"
8608     type="submit"
8609     replace=""/>
8610     #errors
8611     /input/@replace;attribute not defined;m
8612     /input/@replace;enumerated:invalid;m
8613    
8614     #data
8615     <input xmlns="http://www.w3.org/1999/xhtml"
8616     type="image"
8617     alt="x" src=""
8618     replace=""/>
8619     #errors
8620     /input/@replace;attribute not defined;m
8621     /input/@replace;enumerated:invalid;m
8622    
8623     #data
8624     <input xmlns="http://www.w3.org/1999/xhtml"
8625     type="submit"
8626     replace="document"/>
8627     #errors
8628     /input/@replace;attribute not defined;m
8629    
8630     #data
8631     <input xmlns="http://www.w3.org/1999/xhtml"
8632     type="submit"
8633     replace="values"/>
8634     #errors
8635     /input/@replace;attribute not defined;m
8636    
8637     #data
8638     <input xmlns="http://www.w3.org/1999/xhtml"
8639     type="submit"
8640     replace="documents"/>
8641     #errors
8642     /input/@replace;attribute not defined;m
8643     /input/@replace;enumerated:invalid;m
8644    
8645     #data
8646     <input xmlns="http://www.w3.org/1999/xhtml"
8647     type="submit"
8648     replace="value"/>
8649     #errors
8650     /input/@replace;attribute not defined;m
8651     /input/@replace;enumerated:invalid;m
8652    
8653     #data
8654     <input xmlns="http://www.w3.org/1999/xhtml"
8655     type="submit"
8656     replace="DocuMent"/>
8657     #errors
8658     /input/@replace;attribute not defined;m
8659    
8660     #data
8661     <input xmlns="http://www.w3.org/1999/xhtml"
8662     type="submit"
8663     replace="ValueS"/>
8664     #errors
8665     /input/@replace;attribute not defined;m
8666    
8667     #data
8668     <input xmlns="http://www.w3.org/1999/xhtml"
8669     type="submit"
8670     replace=" document "/>
8671     #errors
8672     /input/@replace;attribute not defined;m
8673     /input/@replace;enumerated:invalid;m
8674    
8675     #data
8676     <input xmlns="http://www.w3.org/1999/xhtml"
8677     type="submit"
8678     replace="docs"/>
8679     #errors
8680     /input/@replace;attribute not defined;m
8681     /input/@replace;enumerated:invalid;m
8682    
8683     #data
8684     <input xmlns="http://www.w3.org/1999/xhtml"
8685     type="submit"
8686     replace="form"/>
8687     #errors
8688     /input/@replace;attribute not defined;m
8689     /input/@replace;enumerated:invalid;m
8690    
8691     #data
8692     <input xmlns="http://www.w3.org/1999/xhtml"
8693     type="submit"
8694     replace="yes"/>
8695     #errors
8696     /input/@replace;attribute not defined;m
8697     /input/@replace;enumerated:invalid;m
8698    
8699     #data
8700     <input xmlns="http://www.w3.org/1999/xhtml"
8701     type="hidden"
8702     align=""/>
8703     #errors
8704     /input/@align;attribute not defined;m
8705     /input/@align;input attr not applicable;hidden;m
8706    
8707     #data
8708     <input xmlns="http://www.w3.org/1999/xhtml"
8709     type="text"
8710     align=""/>
8711     #errors
8712     /input/@align;attribute not defined;m
8713     /input/@align;input attr not applicable;text;m
8714    
8715     #data
8716     <input xmlns="http://www.w3.org/1999/xhtml"
8717     type="email"
8718     align=""/>
8719     #errors
8720     /input/@align;attribute not defined;m
8721     /input/@align;input attr not applicable;email;m
8722    
8723     #data
8724     <input xmlns="http://www.w3.org/1999/xhtml"
8725     type="url"
8726     align=""/>
8727     #errors
8728     /input/@align;attribute not defined;m
8729     /input/@align;input attr not applicable;url;m
8730    
8731     #data
8732     <input xmlns="http://www.w3.org/1999/xhtml"
8733 wakaba 1.12 type="search"
8734     align=""/>
8735     #errors
8736     /input/@align;attribute not defined;m
8737     /input/@align;input attr not applicable;search;m
8738    
8739     #data
8740     <input xmlns="http://www.w3.org/1999/xhtml"
8741 wakaba 1.10 type="password"
8742     align=""/>
8743     #errors
8744     /input/@align;attribute not defined;m
8745     /input/@align;input attr not applicable;password;m
8746    
8747     #data
8748     <input xmlns="http://www.w3.org/1999/xhtml"
8749     type="datetime"
8750     align=""/>
8751     #errors
8752     /input/@align;attribute not defined;m
8753     /input/@align;input attr not applicable;datetime;m
8754    
8755     #data
8756     <input xmlns="http://www.w3.org/1999/xhtml"
8757     type="date"
8758     align=""/>
8759     #errors
8760     /input/@align;attribute not defined;m
8761     /input/@align;input attr not applicable;date;m
8762    
8763     #data
8764     <input xmlns="http://www.w3.org/1999/xhtml"
8765     type="month"
8766     align=""/>
8767     #errors
8768     /input/@align;attribute not defined;m
8769     /input/@align;input attr not applicable;month;m
8770    
8771     #data
8772     <input xmlns="http://www.w3.org/1999/xhtml"
8773     type="week"
8774     align=""/>
8775     #errors
8776     /input/@align;attribute not defined;m
8777     /input/@align;input attr not applicable;week;m
8778    
8779     #data
8780     <input xmlns="http://www.w3.org/1999/xhtml"
8781     type="time"
8782     align=""/>
8783     #errors
8784     /input/@align;attribute not defined;m
8785     /input/@align;input attr not applicable;time;m
8786    
8787     #data
8788     <input xmlns="http://www.w3.org/1999/xhtml"
8789     type="datetime-local"
8790     align=""/>
8791     #errors
8792     /input/@align;attribute not defined;m
8793     /input/@align;input attr not applicable;datetime-local;m
8794    
8795     #data
8796     <input xmlns="http://www.w3.org/1999/xhtml"
8797     type="number"
8798     align=""/>
8799     #errors
8800     /input/@align;attribute not defined;m
8801     /input/@align;input attr not applicable;number;m
8802    
8803     #data
8804     <input xmlns="http://www.w3.org/1999/xhtml"
8805     type="range"
8806     align=""/>
8807     #errors
8808     /input/@align;attribute not defined;m
8809     /input/@align;input attr not applicable;range;m
8810    
8811     #data
8812     <input xmlns="http://www.w3.org/1999/xhtml"
8813     type="checkbox"
8814     align=""/>
8815     #errors
8816     /input/@align;attribute not defined;m
8817     /input/@align;input attr not applicable;checkbox;m
8818    
8819     #data
8820     <input xmlns="http://www.w3.org/1999/xhtml"
8821     type="radio"
8822     align=""/>
8823     #errors
8824     /input/@align;attribute not defined;m
8825     /input/@align;input attr not applicable;radio;m
8826    
8827     #data
8828     <input xmlns="http://www.w3.org/1999/xhtml"
8829     type="file"
8830     align=""/>
8831     #errors
8832     /input/@align;attribute not defined;m
8833     /input/@align;input attr not applicable;file;m
8834    
8835     #data
8836     <input xmlns="http://www.w3.org/1999/xhtml"
8837     type="submit"
8838     align=""/>
8839     #errors
8840     /input/@align;attribute not defined;m
8841     /input/@align;input attr not applicable;submit;m
8842    
8843     #data
8844     <input xmlns="http://www.w3.org/1999/xhtml"
8845     type="reset"
8846     align=""/>
8847     #errors
8848     /input/@align;attribute not defined;m
8849     /input/@align;input attr not applicable;reset;m
8850    
8851     #data
8852     <input xmlns="http://www.w3.org/1999/xhtml"
8853     type="button"
8854     align=""/>
8855     #errors
8856     /input/@align;attribute not defined;m
8857     /input/@align;input attr not applicable;button;m
8858    
8859     #data
8860     <input xmlns="http://www.w3.org/1999/xhtml"
8861     type="add"
8862     align=""/>
8863     #errors
8864     /input/@align;attribute not defined;m
8865     /input/@align;input attr not applicable;add;m
8866     /input/@type;enumerated:invalid;m
8867    
8868     #data
8869     <input xmlns="http://www.w3.org/1999/xhtml"
8870     type="remove"
8871     align=""/>
8872     #errors
8873     /input/@align;attribute not defined;m
8874     /input/@align;input attr not applicable;remove;m
8875     /input/@type;enumerated:invalid;m
8876    
8877     #data
8878     <input xmlns="http://www.w3.org/1999/xhtml"
8879     type="move-up"
8880     align=""/>
8881     #errors
8882     /input/@align;attribute not defined;m
8883     /input/@align;input attr not applicable;move-up;m
8884     /input/@type;enumerated:invalid;m
8885    
8886     #data
8887     <input xmlns="http://www.w3.org/1999/xhtml"
8888     type="move-down"
8889     align=""/>
8890     #errors
8891     /input/@align;attribute not defined;m
8892     /input/@align;input attr not applicable;move-down;m
8893     /input/@type;enumerated:invalid;m
8894    
8895     #data
8896     <input xmlns="http://www.w3.org/1999/xhtml"
8897     type="image" src="" alt="x"
8898     align=""/>
8899     #errors
8900     /input/@align;attribute not defined;m
8901     /input/@align;enumerated:invalid;m
8902    
8903     #data
8904     <input xmlns="http://www.w3.org/1999/xhtml"
8905     type="image" src="" alt="x"
8906     align=" "/>
8907     #errors
8908     /input/@align;attribute not defined;m
8909     /input/@align;enumerated:invalid;m
8910    
8911     #data
8912     <input xmlns="http://www.w3.org/1999/xhtml"
8913     type="image" src="" alt="x"
8914     align="top"/>
8915     #errors
8916     /input/@align;attribute not defined;m
8917    
8918     #data
8919     <input xmlns="http://www.w3.org/1999/xhtml"
8920     type="image" src="" alt="x"
8921     align="middle"/>
8922     #errors
8923     /input/@align;attribute not defined;m
8924    
8925     #data
8926     <input xmlns="http://www.w3.org/1999/xhtml"
8927     type="image" src="" alt="x"
8928     align="bottom"/>
8929     #errors
8930     /input/@align;attribute not defined;m
8931    
8932     #data
8933     <input xmlns="http://www.w3.org/1999/xhtml"
8934     type="image" src="" alt="x"
8935     align="left"/>
8936     #errors
8937     /input/@align;attribute not defined;m
8938    
8939     #data
8940     <input xmlns="http://www.w3.org/1999/xhtml"
8941     type="image" src="" alt="x"
8942     align="right"/>
8943     #errors
8944     /input/@align;attribute not defined;m
8945    
8946     #data
8947     <input xmlns="http://www.w3.org/1999/xhtml"
8948     type="image" src="" alt="x"
8949     align="center"/>
8950     #errors
8951     /input/@align;attribute not defined;m
8952     /input/@align;enumerated:invalid;m
8953    
8954     #data
8955     <input xmlns="http://www.w3.org/1999/xhtml"
8956     type="image" src="" alt="x"
8957     align="texttop"/>
8958     #errors
8959     /input/@align;attribute not defined;m
8960     /input/@align;enumerated:invalid;m
8961    
8962     #data
8963     <input xmlns="http://www.w3.org/1999/xhtml"
8964     type="image" src="" alt="x"
8965     align="textbottom"/>
8966     #errors
8967     /input/@align;attribute not defined;m
8968     /input/@align;enumerated:invalid;m
8969    
8970     #data
8971     <input xmlns="http://www.w3.org/1999/xhtml"
8972     type="image" src="" alt="x"
8973     align="justify"/>
8974     #errors
8975     /input/@align;attribute not defined;m
8976     /input/@align;enumerated:invalid;m
8977    
8978     #data
8979     <input xmlns="http://www.w3.org/1999/xhtml"
8980     type="image" src="" alt="x"
8981     align="LEFT"/>
8982     #errors
8983     /input/@align;attribute not defined;m
8984    
8985     #data
8986     <input xmlns="http://www.w3.org/1999/xhtml"
8987     type="image" src="" alt="x"
8988     align="RIGHT"/>
8989     #errors
8990     /input/@align;attribute not defined;m
8991    
8992     #data
8993     <input xmlns="http://www.w3.org/1999/xhtml"
8994     type="image" src="" alt="x"
8995     align="MIDDLE"/>
8996     #errors
8997     /input/@align;attribute not defined;m
8998    
8999     #data escaped
9000     <input xmlns="http://www.w3.org/1999/xhtml"
9001     type="image" src="" alt="x"
9002     align="r\u0130ght"/>
9003     #errors
9004     /input/@align;attribute not defined;m
9005     /input/@align;enumerated:invalid;m
9006    
9007     #data escaped
9008     <input xmlns="http://www.w3.org/1999/xhtml"
9009     type="image" src="" alt="x"
9010     align="m\0131ddle"/>
9011     #errors
9012     /input/@align;attribute not defined;m
9013     /input/@align;enumerated:invalid;m
9014    
9015     #data
9016     <input xmlns="http://www.w3.org/1999/xhtml"
9017     type="image" src="" alt="x"
9018     align=" left"/>
9019     #errors
9020     /input/@align;attribute not defined;m
9021     /input/@align;enumerated:invalid;m
9022    
9023     #data
9024     <input xmlns="http://www.w3.org/1999/xhtml"
9025     type="image" src="" alt="x"
9026     align="top "/>
9027     #errors
9028     /input/@align;attribute not defined;m
9029     /input/@align;enumerated:invalid;m
9030 wakaba 1.11
9031     #data
9032     <input xmlns="http://www.w3.org/1999/xhtml"
9033     type="hidden"
9034     ismap=""/>
9035     #errors
9036     /input/@ismap;attribute not defined;m
9037     /input/@ismap;input attr not applicable;hidden;m
9038    
9039     #data
9040     <input xmlns="http://www.w3.org/1999/xhtml"
9041     type="text"
9042     ismap=""/>
9043     #errors
9044     /input/@ismap;attribute not defined;m
9045     /input/@ismap;input attr not applicable;text;m
9046    
9047     #data
9048     <input xmlns="http://www.w3.org/1999/xhtml"
9049     type="email"
9050     ismap=""/>
9051     #errors
9052     /input/@ismap;attribute not defined;m
9053     /input/@ismap;input attr not applicable;email;m
9054    
9055     #data
9056     <input xmlns="http://www.w3.org/1999/xhtml"
9057     type="url"
9058     ismap=""/>
9059     #errors
9060     /input/@ismap;attribute not defined;m
9061     /input/@ismap;input attr not applicable;url;m
9062    
9063     #data
9064     <input xmlns="http://www.w3.org/1999/xhtml"
9065 wakaba 1.12 type="search"
9066     ismap=""/>
9067     #errors
9068     /input/@ismap;attribute not defined;m
9069     /input/@ismap;input attr not applicable;search;m
9070    
9071     #data
9072     <input xmlns="http://www.w3.org/1999/xhtml"
9073 wakaba 1.11 type="password"
9074     ismap=""/>
9075     #errors
9076     /input/@ismap;attribute not defined;m
9077     /input/@ismap;input attr not applicable;password;m
9078    
9079     #data
9080     <input xmlns="http://www.w3.org/1999/xhtml"
9081     type="datetime"
9082     ismap=""/>
9083     #errors
9084     /input/@ismap;attribute not defined;m
9085     /input/@ismap;input attr not applicable;datetime;m
9086    
9087     #data
9088     <input xmlns="http://www.w3.org/1999/xhtml"
9089     type="date"
9090     ismap=""/>
9091     #errors
9092     /input/@ismap;attribute not defined;m
9093     /input/@ismap;input attr not applicable;date;m
9094    
9095     #data
9096     <input xmlns="http://www.w3.org/1999/xhtml"
9097     type="month"
9098     ismap=""/>
9099     #errors
9100     /input/@ismap;attribute not defined;m
9101     /input/@ismap;input attr not applicable;month;m
9102    
9103     #data
9104     <input xmlns="http://www.w3.org/1999/xhtml"
9105     type="week"
9106     ismap=""/>
9107     #errors
9108     /input/@ismap;attribute not defined;m
9109     /input/@ismap;input attr not applicable;week;m
9110    
9111     #data
9112     <input xmlns="http://www.w3.org/1999/xhtml"
9113     type="time"
9114     ismap=""/>
9115     #errors
9116     /input/@ismap;attribute not defined;m
9117     /input/@ismap;input attr not applicable;time;m
9118    
9119     #data
9120     <input xmlns="http://www.w3.org/1999/xhtml"
9121     type="datetime-local"
9122     ismap=""/>
9123     #errors
9124     /input/@ismap;attribute not defined;m
9125     /input/@ismap;input attr not applicable;datetime-local;m
9126    
9127     #data
9128     <input xmlns="http://www.w3.org/1999/xhtml"
9129     type="number"
9130     ismap=""/>
9131     #errors
9132     /input/@ismap;attribute not defined;m
9133     /input/@ismap;input attr not applicable;number;m
9134    
9135     #data
9136     <input xmlns="http://www.w3.org/1999/xhtml"
9137     type="range"
9138     ismap=""/>
9139     #errors
9140     /input/@ismap;attribute not defined;m
9141     /input/@ismap;input attr not applicable;range;m
9142    
9143     #data
9144     <input xmlns="http://www.w3.org/1999/xhtml"
9145     type="checkbox"
9146     ismap=""/>
9147     #errors
9148     /input/@ismap;attribute not defined;m
9149     /input/@ismap;input attr not applicable;checkbox;m
9150    
9151     #data
9152     <input xmlns="http://www.w3.org/1999/xhtml"
9153     type="radio"
9154     ismap=""/>
9155     #errors
9156     /input/@ismap;attribute not defined;m
9157     /input/@ismap;input attr not applicable;radio;m
9158    
9159     #data
9160     <input xmlns="http://www.w3.org/1999/xhtml"
9161     type="file"
9162     ismap=""/>
9163     #errors
9164     /input/@ismap;attribute not defined;m
9165     /input/@ismap;input attr not applicable;file;m
9166    
9167     #data
9168     <input xmlns="http://www.w3.org/1999/xhtml"
9169     type="submit"
9170     ismap=""/>
9171     #errors
9172     /input/@ismap;attribute not defined;m
9173     /input/@ismap;input attr not applicable;submit;m
9174    
9175     #data
9176     <input xmlns="http://www.w3.org/1999/xhtml"
9177     type="reset"
9178     ismap=""/>
9179     #errors
9180     /input/@ismap;attribute not defined;m
9181     /input/@ismap;input attr not applicable;reset;m
9182    
9183     #data
9184     <input xmlns="http://www.w3.org/1999/xhtml"
9185     type="button"
9186     ismap=""/>
9187     #errors
9188     /input/@ismap;attribute not defined;m
9189     /input/@ismap;input attr not applicable;button;m
9190    
9191     #data
9192     <input xmlns="http://www.w3.org/1999/xhtml"
9193     type="add"
9194     ismap=""/>
9195     #errors
9196     /input/@ismap;attribute not defined;m
9197     /input/@ismap;input attr not applicable;add;m
9198     /input/@type;enumerated:invalid;m
9199    
9200     #data
9201     <input xmlns="http://www.w3.org/1999/xhtml"
9202     type="remove"
9203     ismap=""/>
9204     #errors
9205     /input/@ismap;attribute not defined;m
9206     /input/@ismap;input attr not applicable;remove;m
9207     /input/@type;enumerated:invalid;m
9208    
9209     #data
9210     <input xmlns="http://www.w3.org/1999/xhtml"
9211     type="move-up"
9212     ismap=""/>
9213     #errors
9214     /input/@ismap;attribute not defined;m
9215     /input/@ismap;input attr not applicable;move-up;m
9216     /input/@type;enumerated:invalid;m
9217    
9218     #data
9219     <input xmlns="http://www.w3.org/1999/xhtml"
9220     type="move-down"
9221     ismap=""/>
9222     #errors
9223     /input/@ismap;attribute not defined;m
9224     /input/@ismap;input attr not applicable;move-down;m
9225     /input/@type;enumerated:invalid;m
9226    
9227     #data
9228     <input xmlns="http://www.w3.org/1999/xhtml"
9229     type="image"
9230     ismap=""/>
9231     #errors
9232     /input/@ismap;attribute not defined;m
9233    
9234     #data
9235     <input xmlns="http://www.w3.org/1999/xhtml"
9236     type="image"
9237     ismap="ismap"/>
9238     #errors
9239     /input/@ismap;attribute not defined;m
9240    
9241     #data
9242     <input xmlns="http://www.w3.org/1999/xhtml"
9243     type="image"
9244     ismap="isMap"/>
9245     #errors
9246     /input/@ismap;attribute not defined;m
9247    
9248     #data
9249     <input xmlns="http://www.w3.org/1999/xhtml"
9250     type="image"
9251     ismap="ISMAP"/>
9252     #errors
9253     /input/@ismap;attribute not defined;m
9254    
9255     #data
9256     <input xmlns="http://www.w3.org/1999/xhtml"
9257     type="image"
9258     ismap="ismap "/>
9259     #errors
9260     /input/@ismap;attribute not defined;m
9261     /input/@ismap;boolean:invalid;m
9262    
9263     #data
9264     <input xmlns="http://www.w3.org/1999/xhtml"
9265     type="image"
9266     ismap=" ismap"/>
9267     #errors
9268     /input/@ismap;attribute not defined;m
9269     /input/@ismap;boolean:invalid;m
9270    
9271     #data
9272     <input xmlns="http://www.w3.org/1999/xhtml"
9273     type="image"
9274     ismap="is map"/>
9275     #errors
9276     /input/@ismap;attribute not defined;m
9277     /input/@ismap;boolean:invalid;m
9278    
9279     #data escaped
9280     <input xmlns="http://www.w3.org/1999/xhtml"
9281     type="image"
9282     ismap="\u0130smap"/>
9283     #errors
9284     /input/@ismap;attribute not defined;m
9285     /input/@ismap;boolean:invalid;m
9286    
9287     #data escaped
9288     <input xmlns="http://www.w3.org/1999/xhtml"
9289     type="image"
9290     ismap="\u0131smap"/>
9291     #errors
9292     /input/@ismap;attribute not defined;m
9293     /input/@ismap;boolean:invalid;m
9294    
9295     #data
9296     <input xmlns="http://www.w3.org/1999/xhtml"
9297     type="image"
9298     src="" alt="x"/>
9299     #errors
9300    
9301     #data
9302     <input xmlns="http://www.w3.org/1999/xhtml"
9303     type="image"
9304     src="abcdefg" alt="x"/>
9305     #errors
9306    
9307     #data
9308     <input xmlns="http://www.w3.org/1999/xhtml"
9309     type="image"
9310     src="http://www.w3.org/" alt="x"/>
9311     #errors
9312    
9313     #data
9314     <input xmlns="http://www.w3.org/1999/xhtml"
9315     type="image"
9316     src="[noniri]" alt="x"/>
9317     #errors
9318     /input/@src;syntax error:iriref3987;m
9319    
9320     #data
9321     <input xmlns="http://www.w3.org/1999/xhtml"
9322     type="hidden"
9323     usemap=""/>
9324     #errors
9325     /input/@usemap;attribute not defined;m
9326     /input/@usemap;input attr not applicable;hidden;m
9327    
9328     #data
9329     <input xmlns="http://www.w3.org/1999/xhtml"
9330     type="text"
9331     usemap=""/>
9332     #errors
9333     /input/@usemap;attribute not defined;m
9334     /input/@usemap;input attr not applicable;text;m
9335    
9336     #data
9337     <input xmlns="http://www.w3.org/1999/xhtml"
9338     type="email"
9339     usemap=""/>
9340     #errors
9341     /input/@usemap;attribute not defined;m
9342     /input/@usemap;input attr not applicable;email;m
9343    
9344     #data
9345     <input xmlns="http://www.w3.org/1999/xhtml"
9346     type="url"
9347     usemap=""/>
9348     #errors
9349     /input/@usemap;attribute not defined;m
9350     /input/@usemap;input attr not applicable;url;m
9351    
9352     #data
9353     <input xmlns="http://www.w3.org/1999/xhtml"
9354 wakaba 1.12 type="search"
9355     usemap=""/>
9356     #errors
9357     /input/@usemap;attribute not defined;m
9358     /input/@usemap;input attr not applicable;search;m
9359    
9360     #data
9361     <input xmlns="http://www.w3.org/1999/xhtml"
9362 wakaba 1.11 type="password"
9363     usemap=""/>
9364     #errors
9365     /input/@usemap;attribute not defined;m
9366     /input/@usemap;input attr not applicable;password;m
9367    
9368     #data
9369     <input xmlns="http://www.w3.org/1999/xhtml"
9370     type="datetime"
9371     usemap=""/>
9372     #errors
9373     /input/@usemap;attribute not defined;m
9374     /input/@usemap;input attr not applicable;datetime;m
9375    
9376     #data
9377     <input xmlns="http://www.w3.org/1999/xhtml"
9378     type="date"
9379     usemap=""/>
9380     #errors
9381     /input/@usemap;attribute not defined;m
9382     /input/@usemap;input attr not applicable;date;m
9383    
9384     #data
9385     <input xmlns="http://www.w3.org/1999/xhtml"
9386     type="month"
9387     usemap=""/>
9388     #errors
9389     /input/@usemap;attribute not defined;m
9390     /input/@usemap;input attr not applicable;month;m
9391    
9392     #data
9393     <input xmlns="http://www.w3.org/1999/xhtml"
9394     type="week"
9395     usemap=""/>
9396     #errors
9397     /input/@usemap;attribute not defined;m
9398     /input/@usemap;input attr not applicable;week;m
9399    
9400     #data
9401     <input xmlns="http://www.w3.org/1999/xhtml"
9402     type="time"
9403     usemap=""/>
9404     #errors
9405     /input/@usemap;attribute not defined;m
9406     /input/@usemap;input attr not applicable;time;m
9407    
9408     #data
9409     <input xmlns="http://www.w3.org/1999/xhtml"
9410     type="datetime-local"
9411     usemap=""/>
9412     #errors
9413     /input/@usemap;attribute not defined;m
9414     /input/@usemap;input attr not applicable;datetime-local;m
9415    
9416     #data
9417     <input xmlns="http://www.w3.org/1999/xhtml"
9418     type="number"
9419     usemap=""/>
9420     #errors
9421     /input/@usemap;attribute not defined;m
9422     /input/@usemap;input attr not applicable;number;m
9423    
9424     #data
9425     <input xmlns="http://www.w3.org/1999/xhtml"
9426     type="range"
9427     usemap=""/>
9428     #errors
9429     /input/@usemap;attribute not defined;m
9430     /input/@usemap;input attr not applicable;range;m
9431    
9432     #data
9433     <input xmlns="http://www.w3.org/1999/xhtml"
9434     type="checkbox"
9435     usemap=""/>
9436     #errors
9437     /input/@usemap;attribute not defined;m
9438     /input/@usemap;input attr not applicable;checkbox;m
9439    
9440     #data
9441     <input xmlns="http://www.w3.org/1999/xhtml"
9442     type="radio"
9443     usemap=""/>
9444     #errors
9445     /input/@usemap;attribute not defined;m
9446     /input/@usemap;input attr not applicable;radio;m
9447    
9448     #data
9449     <input xmlns="http://www.w3.org/1999/xhtml"
9450     type="file"
9451     usemap=""/>
9452     #errors
9453     /input/@usemap;attribute not defined;m
9454     /input/@usemap;input attr not applicable;file;m
9455    
9456     #data
9457     <input xmlns="http://www.w3.org/1999/xhtml"
9458     type="submit"
9459     usemap=""/>
9460     #errors
9461     /input/@usemap;attribute not defined;m
9462     /input/@usemap;input attr not applicable;submit;m
9463    
9464     #data
9465     <input xmlns="http://www.w3.org/1999/xhtml"
9466     type="reset"
9467     usemap=""/>
9468     #errors
9469     /input/@usemap;attribute not defined;m
9470     /input/@usemap;input attr not applicable;reset;m
9471    
9472     #data
9473     <input xmlns="http://www.w3.org/1999/xhtml"
9474     type="button"
9475     usemap=""/>
9476     #errors
9477     /input/@usemap;attribute not defined;m
9478     /input/@usemap;input attr not applicable;button;m
9479    
9480     #data
9481     <input xmlns="http://www.w3.org/1999/xhtml"
9482     type="add"
9483     usemap=""/>
9484     #errors
9485     /input/@usemap;attribute not defined;m
9486     /input/@usemap;input attr not applicable;add;m
9487     /input/@type;enumerated:invalid;m
9488    
9489     #data
9490     <input xmlns="http://www.w3.org/1999/xhtml"
9491     type="remove"
9492     usemap=""/>
9493     #errors
9494     /input/@usemap;attribute not defined;m
9495     /input/@usemap;input attr not applicable;remove;m
9496     /input/@type;enumerated:invalid;m
9497    
9498     #data
9499     <input xmlns="http://www.w3.org/1999/xhtml"
9500     type="move-up"
9501     usemap=""/>
9502     #errors
9503     /input/@usemap;attribute not defined;m
9504     /input/@usemap;input attr not applicable;move-up;m
9505     /input/@type;enumerated:invalid;m
9506    
9507     #data
9508     <input xmlns="http://www.w3.org/1999/xhtml"
9509     type="move-down"
9510     usemap=""/>
9511     #errors
9512     /input/@usemap;attribute not defined;m
9513     /input/@usemap;input attr not applicable;move-down;m
9514     /input/@type;enumerated:invalid;m
9515    
9516     #data
9517     <input xmlns="http://www.w3.org/1999/xhtml"
9518     type="image"
9519     usemap=""/>
9520     #errors
9521     /input/@usemap;attribute not defined;m
9522     /input/@usemap;hashref:syntax error;m
9523    
9524    
9525     #data
9526     <input xmlns="http://www.w3.org/1999/xhtml"
9527     type="image"
9528     usemap="abcd"/>
9529     #errors
9530     /input/@usemap;attribute not defined;m
9531     /input/@usemap;hashref:syntax error;m
9532    
9533     #data
9534     <input xmlns="http://www.w3.org/1999/xhtml"
9535     type="image"
9536     usemap="#abcd"/>
9537     #errors
9538     /input/@usemap;attribute not defined;m
9539     /input/@usemap;no referenced map;m
9540    
9541     #data
9542     <map xmlns="http://www.w3.org/1999/xhtml" name="abc">
9543     <input type="image"
9544     usemap="#abc"/>x
9545     </map>
9546     #errors
9547     /map/input/@usemap;attribute not defined;m
9548    
9549     #data
9550     <map xmlns="http://www.w3.org/1999/xhtml" name="ABC">
9551     <input type="image"
9552     usemap="#abc"/>x
9553     </map>
9554     #errors
9555     /map/input/@usemap;attribute not defined;m
9556     /map/input/@usemap;no referenced map;m
9557    
9558     #data
9559     <map xmlns="http://www.w3.org/1999/xhtml" name="abc">
9560     <input type="image"
9561     usemap="#%61bc"/>x
9562     </map>
9563     #errors
9564     /map/input/@usemap;attribute not defined;m
9565     /map/input/@usemap;no referenced map;m
9566    
9567     #data
9568     <input xmlns="http://www.w3.org/1999/xhtml"
9569     type="hidden"
9570     template="a"/>
9571     #errors
9572    
9573     #data
9574     <input xmlns="http://www.w3.org/1999/xhtml"
9575     type="text"
9576     template="a"/>
9577     #errors
9578    
9579     #data
9580     <input xmlns="http://www.w3.org/1999/xhtml"
9581     type="email"
9582     template="a"/>
9583     #errors
9584    
9585     #data
9586     <input xmlns="http://www.w3.org/1999/xhtml"
9587     type="url"
9588 wakaba 1.12 template="a"/>
9589     #errors
9590    
9591     #data
9592     <input xmlns="http://www.w3.org/1999/xhtml"
9593     type="search"
9594 wakaba 1.11 template="a"/>
9595     #errors
9596    
9597     #data
9598     <input xmlns="http://www.w3.org/1999/xhtml"
9599     type="password"
9600     template="a"/>
9601     #errors
9602    
9603     #data
9604     <input xmlns="http://www.w3.org/1999/xhtml"
9605     type="datetime"
9606     template="a"/>
9607     #errors
9608    
9609     #data
9610     <input xmlns="http://www.w3.org/1999/xhtml"
9611     type="date"
9612     template="a"/>
9613     #errors
9614    
9615     #data
9616     <input xmlns="http://www.w3.org/1999/xhtml"
9617     type="month"
9618     template="a"/>
9619     #errors
9620    
9621     #data
9622     <input xmlns="http://www.w3.org/1999/xhtml"
9623     type="week"
9624     template="a"/>
9625     #errors
9626    
9627     #data
9628     <input xmlns="http://www.w3.org/1999/xhtml"
9629     type="time"
9630     template="a"/>
9631     #errors
9632    
9633     #data
9634     <input xmlns="http://www.w3.org/1999/xhtml"
9635     type="datetime-local"
9636     template="a"/>
9637     #errors
9638    
9639     #data
9640     <input xmlns="http://www.w3.org/1999/xhtml"
9641     type="number"
9642     template="a"/>
9643     #errors
9644    
9645     #data
9646     <input xmlns="http://www.w3.org/1999/xhtml"
9647     type="range"
9648     template="a"/>
9649     #errors
9650    
9651     #data
9652     <input xmlns="http://www.w3.org/1999/xhtml"
9653     type="checkbox"
9654     template="a"/>
9655     #errors
9656    
9657     #data
9658     <input xmlns="http://www.w3.org/1999/xhtml"
9659     type="radio"
9660     template="a"/>
9661     #errors
9662    
9663     #data
9664     <input xmlns="http://www.w3.org/1999/xhtml"
9665     type="file"
9666     template="a"/>
9667     #errors
9668    
9669     #data
9670     <input xmlns="http://www.w3.org/1999/xhtml"
9671     type="submit"
9672     template="a"/>
9673     #errors
9674    
9675     #data
9676     <input xmlns="http://www.w3.org/1999/xhtml"
9677     type="image"
9678     template="a"/>
9679     #errors
9680    
9681     #data
9682     <input xmlns="http://www.w3.org/1999/xhtml"
9683     type="reset"
9684     template="a"/>
9685     #errors
9686    
9687     #data
9688     <input xmlns="http://www.w3.org/1999/xhtml"
9689     type="button"
9690     template="a"/>
9691     #errors
9692    
9693     #data
9694     <input xmlns="http://www.w3.org/1999/xhtml"
9695     type="add"
9696     template="a"/>
9697     #errors
9698     /input/@type;enumerated:invalid;m
9699    
9700     #data
9701     <input xmlns="http://www.w3.org/1999/xhtml"
9702     type="remove"
9703     template="a"/>
9704     #errors
9705     /input/@type;enumerated:invalid;m
9706    
9707     #data
9708     <input xmlns="http://www.w3.org/1999/xhtml"
9709     type="move-up"
9710     template="a"/>
9711     #errors
9712     /input/@type;enumerated:invalid;m
9713    
9714     #data
9715     <input xmlns="http://www.w3.org/1999/xhtml"
9716     type="move-down"
9717     template="a"/>
9718     #errors
9719     /input/@type;enumerated:invalid;m

[email protected]
ViewVC Help
Powered by ViewVC 1.1.24