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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.9 - (hide annotations) (download)
Sat Dec 13 04:49:06 2008 UTC (17 years, 7 months ago) by wakaba
Branch: MAIN
Changes since 1.8: +36 -0 lines
++ whatpm/t/ChangeLog	13 Dec 2008 04:48:14 -0000
2008-12-13  Wakaba  <wakaba@suika.fam.cx>

	* content-model-7.dat: Added an example from HTML5 spec.

++ whatpm/t/dom-conformance/ChangeLog	13 Dec 2008 04:48:48 -0000
	* html-form-label.dat, html-forms-1.dat: Added test data for
	form="".

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

++ whatpm/Whatpm/ContentChecker/ChangeLog	13 Dec 2008 04:47:22 -0000
	* HTML.pm: Implemented <object form> and <legend form>.

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

1 wakaba 1.1
2     #data
3     <form xmlns="http://www.w3.org/1999/xhtml"></form>
4     #errors
5     /form;no significant content;s
6    
7     #data
8     <form xmlns="http://www.w3.org/1999/xhtml"> </form>
9     #errors
10     /form;no significant content;s
11    
12     #data
13     <form xmlns="http://www.w3.org/1999/xhtml">x</form>
14     #errors
15    
16     #data
17     <form xmlns="http://www.w3.org/1999/xhtml"><p></p></form>
18     #errors
19     /form;no significant content;s
20     /form/p;no significant content;s
21    
22     #data
23     <form xmlns="http://www.w3.org/1999/xhtml"><em></em></form>
24     #errors
25     /form;no significant content;s
26     /form/em;no significant content;s
27    
28     #data
29     <form xmlns="http://www.w3.org/1999/xhtml"><img src="" alt="x"/></form>
30     #errors
31    
32     #data
33     <form xmlns="http://www.w3.org/1999/xhtml"><br/></form>
34     #errors
35     /form;no significant content;s
36    
37     #data
38     <form xmlns="http://www.w3.org/1999/xhtml"><p>xx</p>yy</form>
39     #errors
40    
41     #data
42     <form xmlns="http://www.w3.org/1999/xhtml">yyy<em>ccc</em></form>
43     #errors
44    
45     #data
46     <form xmlns="http://www.w3.org/1999/xhtml"><ins>xx</ins></form>
47     #errors
48    
49     #data
50     <form xmlns="http://www.w3.org/1999/xhtml"><style scoped=""/><ins>xx</ins></form>
51     #errors
52     /form/style;SUBDOC
53    
54     #data
55     <form xmlns="http://www.w3.org/1999/xhtml">xx<style scoped=""/>yy</form>
56     #errors
57     /form/style;SUBDOC
58     /form/style;element not allowed:flow style;m
59    
60     #data
61     <form xmlns="http://www.w3.org/1999/xhtml"><style scoped=""/><style scoped=""/>xx</form>
62     #errors
63     /form/style;SUBDOC
64     /form/style;SUBDOC
65    
66     #data
67     <form xmlns="http://www.w3.org/1999/xhtml"><style/><style scoped=""/>xx</form>
68     #errors
69     /form/style;SUBDOC
70     /form/style;SUBDOC
71     /form/style;element not allowed:flow style;m
72    
73     #data
74     <form xmlns="http://www.w3.org/1999/xhtml"><nest/></form>
75     #errors
76     /form/nest;element not allowed:flow;m
77     /form;no significant content;s
78    
79     #data
80     <form xmlns="http://www.w3.org/1999/xhtml"><meta name="keywords" content="x"/></form>
81     #errors
82     /form;no significant content;s
83     /form/meta;element not allowed:flow;m
84    
85     #data
86     <form xmlns="http://www.w3.org/1999/xhtml"><form/></form>
87     #errors
88     /form;no significant content;s
89     /form/form;element not allowed:minus;m
90     /form/form;no significant content;s
91    
92     #data
93     <form xmlns="http://www.w3.org/1999/xhtml"><div><form/></div></form>
94     #errors
95     /form;no significant content;s
96     /form/div/form;element not allowed:minus;m
97     /form/div;no significant content;s
98     /form/div/form;no significant content;s
99    
100     #data
101     <div xmlns="http://www.w3.org/1999/xhtml"><form/></div>
102     #errors
103     /div;no significant content;s
104     /div/form;no significant content;s
105    
106     #data
107     <em xmlns="http://www.w3.org/1999/xhtml"><form/></em>
108     #errors
109     /em;no significant content;s
110     /em/form;no significant content;s
111     /em/form;element not allowed:phrasing;m
112    
113     #data
114     <br xmlns="http://www.w3.org/1999/xhtml"><form/></br>
115     #errors
116     /br/form;no significant content;s
117     /br/form;element not allowed:empty;m
118    
119     #data
120     <title xmlns="http://www.w3.org/1999/xhtml"><form/></title>
121     #errors
122     /title/form;element not allowed:text;m
123     /title/form;no significant content;s
124    
125     #data
126     <fieldset xmlns="http://www.w3.org/1999/xhtml"></fieldset>
127     #errors
128     /fieldset;no significant content;s
129     /fieldset;child element missing;legend;m
130    
131     #data
132     <fieldset xmlns="http://www.w3.org/1999/xhtml"> </fieldset>
133     #errors
134     /fieldset;no significant content;s
135     /fieldset;child element missing;legend;m
136    
137     #data
138     <fieldset xmlns="http://www.w3.org/1999/xhtml">x</fieldset>
139     #errors
140     /fieldset;child element missing;legend;m
141    
142     #data
143     <fieldset xmlns="http://www.w3.org/1999/xhtml"><p>x</p></fieldset>
144     #errors
145     /fieldset;child element missing;legend;m
146    
147     #data
148     <fieldset xmlns="http://www.w3.org/1999/xhtml"><em>x</em></fieldset>
149     #errors
150     /fieldset;child element missing;legend;m
151    
152     #data
153     <fieldset xmlns="http://www.w3.org/1999/xhtml"><ins>x</ins></fieldset>
154     #errors
155     /fieldset;child element missing;legend;m
156    
157     #data
158     <fieldset xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style>x</fieldset>
159     #errors
160     /fieldset;child element missing;legend;m
161     /fieldset/style;SUBDOC
162    
163     #data
164     <fieldset xmlns="http://www.w3.org/1999/xhtml"><legend>y</legend>x</fieldset>
165     #errors
166    
167     #data
168     <fieldset xmlns="http://www.w3.org/1999/xhtml"><legend>y</legend></fieldset>
169     #errors
170    
171     #data
172     <fieldset xmlns="http://www.w3.org/1999/xhtml"><legend></legend></fieldset>
173     #errors
174     /fieldset;no significant content;s
175     /fieldset/legend;no significant content;s
176    
177     #data
178     <fieldset xmlns="http://www.w3.org/1999/xhtml"><legend>y</legend><p>x</p></fieldset>
179     #errors
180    
181     #data
182     <fieldset xmlns="http://www.w3.org/1999/xhtml"><legend>y</legend><span>x</span></fieldset>
183     #errors
184    
185     #data
186     <fieldset xmlns="http://www.w3.org/1999/xhtml"><ins><legend>y</legend>x</ins></fieldset>
187     #errors
188    
189     #data
190     <fieldset xmlns="http://www.w3.org/1999/xhtml"><del><legend>y</legend></del><ins><legend>z</legend></ins>x</fieldset>
191     #errors
192     /fieldset/ins/legend;element not allowed:details legend;m
193    
194     #data
195     <fieldset xmlns="http://www.w3.org/1999/xhtml"><lengend>y</lengend>x</fieldset>
196     #errors
197     /fieldset/lengend;element not allowed:flow;m
198     /fieldset/lengend;element not defined;m
199     /fieldset;child element missing;legend;m
200    
201     #data
202     <fieldset xmlns="http://www.w3.org/1999/xhtml"><legned>y</legned>x</fieldset>
203     #errors
204     /fieldset/legned;element not allowed:flow;m
205     /fieldset/legned;element not defined;m
206     /fieldset;child element missing;legend;m
207    
208     #data
209     <fieldset xmlns="http://www.w3.org/1999/xhtml">x<legend>y</legend></fieldset>
210     #errors
211     /fieldset/legend;element not allowed:details legend;m
212    
213     #data
214     <fieldset xmlns="http://www.w3.org/1999/xhtml">x<legend>y</legend>z</fieldset>
215     #errors
216     /fieldset/legend;element not allowed:details legend;m
217    
218     #data
219     <fieldset xmlns="http://www.w3.org/1999/xhtml"><style scoped=""></style><legend>y</legend>x</fieldset>
220     #errors
221     /fieldset/legend;element not allowed:details legend;m
222     /fieldset/style;SUBDOC
223    
224     #data
225 wakaba 1.7 <fieldset xmlns="http://www.w3.org/1999/xhtml"
226     disabled="">
227     <legend>x</legend>
228     </fieldset>
229     #errors
230    
231     #data
232     <fieldset xmlns="http://www.w3.org/1999/xhtml"
233     disabled="disabled">
234     <legend>x</legend>
235     </fieldset>
236     #errors
237    
238     #data
239     <fieldset xmlns="http://www.w3.org/1999/xhtml"
240     disabled="DisableD">
241     <legend>x</legend>
242     </fieldset>
243     #errors
244    
245     #data
246     <fieldset xmlns="http://www.w3.org/1999/xhtml"
247     disabled="no">
248     <legend>x</legend>
249     </fieldset>
250     #errors
251     /fieldset/@disabled;boolean:invalid;m
252    
253     #data
254 wakaba 1.1 <output xmlns="http://www.w3.org/1999/xhtml"></output>
255     #errors
256     /output;no significant content;s
257    
258     #data
259     <output xmlns="http://www.w3.org/1999/xhtml"> </output>
260     #errors
261     /output;no significant content;s
262    
263     #data
264     <output xmlns="http://www.w3.org/1999/xhtml">xx</output>
265     #errors
266    
267     #data
268     <output xmlns="http://www.w3.org/1999/xhtml"><span></span></output>
269     #errors
270     /output;no significant content;s
271     /output/span;no significant content;s
272    
273     #data
274     <output xmlns="http://www.w3.org/1999/xhtml"><code>x</code>y</output>
275     #errors
276    
277     #data
278     <output xmlns="http://www.w3.org/1999/xhtml"><p>x</p></output>
279     #errors
280     /output/p;element not allowed:phrasing;m
281    
282     #data
283     <output xmlns="http://www.w3.org/1999/xhtml"><title>x</title></output>
284     #errors
285     /output/title;element not allowed:phrasing;m
286    
287     #data
288     <em xmlns="http://www.w3.org/1999/xhtml"><output>x</output></em>
289     #errors
290    
291     #data
292     <output xmlns="http://www.w3.org/1999/xhtml"><output>x</output></output>
293     #errors
294    
295     #data
296     <div xmlns="http://www.w3.org/1999/xhtml"><output>x</output></div>
297     #errors
298    
299     #data
300     <input xmlns="http://www.w3.org/1999/xhtml"><output>x</output></input>
301     #errors
302     /input/output;element not allowed:empty;m
303    
304     #data
305 wakaba 1.7 <output xmlns="http://www.w3.org/1999/xhtml"
306     for="">
307     x
308     </output>
309     #errors
310    
311     #data
312     <output xmlns="http://www.w3.org/1999/xhtml"
313     for=" ">
314     x
315     </output>
316     #errors
317    
318     #data
319     <output xmlns="http://www.w3.org/1999/xhtml"
320     for="x">
321     <span id="x">x</span>
322     </output>
323     #errors
324    
325     #data
326     <output xmlns="http://www.w3.org/1999/xhtml"
327     for=" x ">
328     <span id="x">x</span>
329     </output>
330     #errors
331    
332     #data
333     <output xmlns="http://www.w3.org/1999/xhtml"
334     for="x y">
335     <span id="x">x</span> <span id="y">X</span>
336     </output>
337     #errors
338    
339     #data
340     <div xmlns="http://www.w3.org/1999/xhtml" id="x">
341     <output for="x">
342     x
343     </output>
344     </div>
345     #errors
346    
347     #data
348     <div xmlns="http://www.w3.org/1999/xhtml">
349     <img id="x" src="" alt="y"/>
350     <output for="x">
351     x
352     </output>
353     </div>
354     #errors
355    
356     #data
357     <div xmlns="http://www.w3.org/1999/xhtml">
358     <output for="x">
359     x
360     </output>
361     <br id="x"/>
362     </div>
363     #errors
364    
365     #data
366     <div xmlns="http://www.w3.org/1999/xhtml">
367     <output for="x">
368     x
369     </output>
370     </div>
371     #errors
372     /div/output/@for;no referenced element;m
373    
374     #data
375     <div xmlns="http://www.w3.org/1999/xhtml">
376     <output for="x">
377     <span id="x">x</span>
378     <br id="x"/>
379     </output>
380     </div>
381     #errors
382     /div/output/br/@id;duplicate ID;m
383    
384     #data
385     <div xmlns="http://www.w3.org/1999/xhtml" id="X">
386     <output for="x">
387     x
388     </output>
389     </div>
390     #errors
391     /div/output/@for;no referenced element;m
392    
393     #data
394     <div xmlns="http://www.w3.org/1999/xhtml" id="x y">
395     <output for="x y">
396     x
397     </output>
398     </div>
399     #errors
400     /div/@id;space in ID;m
401     /div/output/@for;no referenced element;m
402     /div/output/@for;no referenced element;m
403    
404     #data
405     <div xmlns="http://www.w3.org/1999/xhtml">
406     <output for="x y">
407     x
408     </output>
409     </div>
410     #errors
411     /div/output/@for;no referenced element;m
412     /div/output/@for;no referenced element;m
413    
414     #data
415     <div xmlns="http://www.w3.org/1999/xhtml" id="x">
416     <output for="x x">
417     x
418     </output>
419     </div>
420     #errors
421     /div/output/@for;duplicate token;m
422    
423     #data
424     <div xmlns="http://www.w3.org/1999/xhtml" id="x">
425     <output for="x x x">
426     x
427     </output>
428     </div>
429     #errors
430     /div/output/@for;duplicate token;m
431     /div/output/@for;duplicate token;m
432    
433     #data
434     <div xmlns="http://www.w3.org/1999/xhtml">
435     <output for="x">
436     x
437     </output>
438     <menu id="x">x</menu>
439     </div>
440     #errors
441    
442     #data
443     <div xmlns="http://www.w3.org/1999/xhtml">
444     <output for="x">
445     x
446     </output>
447     <input id="x"/>
448     </div>
449     #errors
450    
451     #data
452     <form xmlns="http://www.w3.org/1999/xhtml" id="x">
453     <output for="x">
454     x
455     </output>
456     </form>
457     #errors
458    
459     #data
460     <output xmlns="http://www.w3.org/1999/xhtml"
461     disabled="">z</output>
462     #errors
463     /output/@disabled;attribute not defined;m
464    
465     #data
466 wakaba 1.1 <form xmlns="http://www.w3.org/1999/xhtml"
467     accept-charset="">x</form>
468     #errors
469    
470     #data
471     <form xmlns="http://www.w3.org/1999/xhtml"
472     accept-charset=" ">x</form>
473     #errors
474    
475     #data
476     <form xmlns="http://www.w3.org/1999/xhtml"
477     accept-charset="euc-jp">x</form>
478     #errors
479    
480     #data
481     <form xmlns="http://www.w3.org/1999/xhtml"
482     accept-charset="euc-jp us-ascii">x</form>
483     #errors
484    
485     #data
486     <form xmlns="http://www.w3.org/1999/xhtml"
487     accept-charset="euc-jp&#x09;us-ascii">x</form>
488     #errors
489    
490     #data
491     <form xmlns="http://www.w3.org/1999/xhtml"
492     accept-charset="euc-jp&#x0a;us-ascii">x</form>
493     #errors
494    
495     #data
496     <?xml version="1.1"?>
497     <form xmlns="http://www.w3.org/1999/xhtml"
498     accept-charset="euc-jp&#x0c;us-ascii">x</form>
499     #errors
500    
501     #data
502     <form xmlns="http://www.w3.org/1999/xhtml"
503     accept-charset="euc-jp&#x0d;us-ascii">x</form>
504     #errors
505    
506     #data
507     <form xmlns="http://www.w3.org/1999/xhtml"
508     accept-charset="euc-jp, us-ascii">x</form>
509     #errors
510     /form/@accept-charset;charset:not registered;w
511    
512     #data
513     <form xmlns="http://www.w3.org/1999/xhtml"
514     accept-charset=" euc-JP ">x</form>
515     #errors
516    
517     #data
518     <form xmlns="http://www.w3.org/1999/xhtml"
519     accept-charset=" eucjp ">x</form>
520     #errors
521     /form/@accept-charset;charset:not registered;w
522    
523     #data
524     <form xmlns="http://www.w3.org/1999/xhtml"
525     accept-charset="x-euc-jp">x</form>
526     #errors
527     /form/@accept-charset;charset:private;w
528     /form/@accept-charset;charset:not preferred;m
529    
530     #data
531     <form xmlns="http://www.w3.org/1999/xhtml"
532     accept-charset="us-ascii x-euc-jp">x</form>
533     #errors
534     /form/@accept-charset;charset:private;w
535     /form/@accept-charset;charset:not preferred;m
536    
537     #data
538     <form xmlns="http://www.w3.org/1999/xhtml"
539     accept-charset="ascii">x</form>
540     #errors
541     /form/@accept-charset;charset:not preferred;m
542    
543     #data
544     <form xmlns="http://www.w3.org/1999/xhtml"
545     accept-charset="iso-2022-jp">x</form>
546     #errors
547     /form/@accept-charset;charset:not ascii compat;m
548    
549     #data
550     <?xml version="1.1"?>
551     <form xmlns="http://www.w3.org/1999/xhtml"
552     accept-charset="euc-jp&#x000b;">x</form>
553     #errors
554     /form/@accept-charset;charset:not registered;w
555     /form/@accept-charset;charset:syntax error;m
556    
557     #data
558     <?xml version="1.1"?>
559     <form xmlns="http://www.w3.org/1999/xhtml"
560     accept-charset="&#x000b;euc-jp">x</form>
561     #errors
562     /form/@accept-charset;charset:not registered;w
563     /form/@accept-charset;charset:syntax error;m
564    
565     #data
566     <?xml version="1.1"?>
567     <form xmlns="http://www.w3.org/1999/xhtml"
568     accept-charset="euc-jp&#x000b;us-ascii">x</form>
569     #errors
570     /form/@accept-charset;charset:not registered;w
571     /form/@accept-charset;charset:syntax error;m
572    
573     #data
574     <form xmlns="http://www.w3.org/1999/xhtml"
575     name="">x</form>
576     #errors
577     /form/@name;empty form name;m
578    
579     #data
580     <div xmlns="http://www.w3.org/1999/xhtml">
581     <form name="">x</form>
582     <form name="">y</form>
583     </div>
584     #errors
585     /div/form/@name;empty form name;m
586     /div/form/@name;empty form name;m
587    
588     #data
589     <form xmlns="http://www.w3.org/1999/xhtml"
590     name="xxx">x</form>
591     #errors
592    
593     #data
594     <form xmlns="http://www.w3.org/1999/xhtml"
595     name="abc def">x</form>
596     #errors
597    
598     #data
599     <form xmlns="http://www.w3.org/1999/xhtml"
600     name=" a ">x</form>
601     #errors
602    
603     #data
604     <div xmlns="http://www.w3.org/1999/xhtml">
605     <form name="abc">x</form>
606     <form name="def">y</form>
607     </div>
608     #errors
609    
610     #data
611     <div xmlns="http://www.w3.org/1999/xhtml">
612     <form name="a">x</form>
613     <form name="a ">y</form>
614     </div>
615     #errors
616    
617     #data
618     <div xmlns="http://www.w3.org/1999/xhtml">
619     <form name="a">x</form>
620     <form name=" a">y</form>
621     </div>
622     #errors
623    
624     #data
625     <div xmlns="http://www.w3.org/1999/xhtml">
626     <form name="a b">x</form>
627     <form name="b">y</form>
628     </div>
629     #errors
630    
631     #data
632     <div xmlns="http://www.w3.org/1999/xhtml">
633     <form name="abc">x</form>
634     <form name="ABC">y</form>
635     </div>
636     #errors
637    
638     #data
639     <div xmlns="http://www.w3.org/1999/xhtml">
640     <form name="a">x</form>
641     <form name="a">y</form>
642     </div>
643     #errors
644     /div/form/@name;duplicate form name;m
645    
646     #data
647     <div xmlns="http://www.w3.org/1999/xhtml">
648     <form name="a">x
649     <form name="a">y</form>
650     </form>
651     </div>
652     #errors
653     /div/form/form;element not allowed:minus;m
654     /div/form/form/@name;duplicate form name;m
655    
656     #data
657     <form xmlns="http://www.w3.org/1999/xhtml"
658     name="a" id="b">x</form>
659     #errors
660    
661     #data
662     <form xmlns="http://www.w3.org/1999/xhtml"
663     name="a" id="a">x</form>
664     #errors
665    
666     #data
667     <form xmlns="http://www.w3.org/1999/xhtml"
668     name="a">x<a name="a">u</a></form>
669     #errors
670     /form/a/@name;attribute not defined;m
671 wakaba 1.4 /form/a/@name;unknown attribute;u
672 wakaba 1.1
673     #data
674     <form xmlns="http://www.w3.org/1999/xhtml" form="a" id="a">x</form>
675     #errors
676     /form/@form;attribute not defined;m
677    
678     #data
679     <fieldset xmlns="http://www.w3.org/1999/xhtml" form="a">
680     <legend>y</legend>
681     <form id="a">x</form>
682     </fieldset>
683     #errors
684    
685     #data
686     <div xmlns="http://www.w3.org/1999/xhtml">
687     <form id="a">x</form>
688     <fieldset form="a"><legend>y</legend>x</fieldset>
689     </div>
690     #errors
691    
692     #data
693     <div xmlns="http://www.w3.org/1999/xhtml">
694     <fieldset form="a"><legend>y</legend>x</fieldset>
695     <form id="a">x</form>
696     </div>
697     #errors
698    
699     #data
700     <div xmlns="http://www.w3.org/1999/xhtml">
701     <fieldset form="a"><legend>ty</legend>x</fieldset>
702     <form xml:id="a">x</form>
703     </div>
704     #errors
705    
706     #data
707     <div xmlns="http://www.w3.org/1999/xhtml">
708     <form id="x">
709     <fieldset form="x"><legend>y</legend>x</fieldset>
710     </form>
711     </div>
712     #errors
713    
714     #data
715     <fieldset form="x" xmlns="http://www.w3.org/1999/xhtml">
716     <legend>y</legend>y</fieldset>
717     #errors
718     /fieldset/@form;no referenced form;m
719    
720     #data
721     <div xmlns="http://www.w3.org/1999/xhtml">
722     <form id="a">x</form>
723     <form id="b">y</form>
724     <fieldset form="a b"><legend>y</legend>z</fieldset>
725     </div>
726     #errors
727     /div/fieldset/@form;no referenced form;m
728    
729     #data
730     <div xmlns="http://www.w3.org/1999/xhtml">
731     <form id="a">x</form>
732     <fieldset form="a "><legend>y</legend>z</fieldset>
733     </div>
734     #errors
735     /div/fieldset/@form;no referenced form;m
736    
737     #data
738     <div xmlns="http://www.w3.org/1999/xhtml">
739     <div id="a">x</div>
740     <fieldset form="a"><legend>y</legend>z</fieldset>
741     </div>
742     #errors
743     /div/fieldset/@form;no referenced form;m
744    
745     #data
746     <div xmlns="http://www.w3.org/1999/xhtml">
747     <div id="a">b</div>
748     <form id="a">x</form>
749     <fieldset form="a"><legend>y</legend>z</fieldset>
750     </div>
751     #errors
752     /div/form/@id;duplicate ID;m
753     /div/fieldset/@form;no referenced form;m
754    
755     #data
756     <div xmlns="http://www.w3.org/1999/xhtml">
757     <form id="a">x</form>
758     <div id="a">y</div>
759     <fieldset form="a"><legend>y</legend>z</fieldset>
760     </div>
761     #errors
762     /div/div/@id;duplicate ID;m
763    
764     #data
765 wakaba 1.9 <legend form="a" xmlns="http://www.w3.org/1999/xhtml">a</legend>
766     #errors
767     /legend/@form;attribute not defined;m
768     /legend/@form;no referenced form;m
769    
770     #data
771     <form xmlns="http://www.w3.org/1999/xhtml" id="a">
772     <fieldset><legend form="a">a</legend></fieldset></form>
773     #errors
774     /form/fieldset/legend/@form;attribute not defined;m
775    
776     #data
777     <label xmlns="http://www.w3.org/1999/xhtml" form="a">x<input/></label>
778     #errors
779     /label/@form;no referenced form;m
780    
781     #data
782     <div xmlns="http://www.w3.org/1999/xhtml">
783     <label form="b">y<input/></label>
784     <form id="b">x</form>
785     </div>
786     #errors
787    
788     #data
789 wakaba 1.1 <div xmlns="http://www.w3.org/1999/xhtml"><input form="a"/>x</div>
790     #errors
791     /div/input/@form;no referenced form;m
792    
793     #data
794     <div xmlns="http://www.w3.org/1999/xhtml">
795     <input form="b"/>
796     <form id="b">x</form>
797     </div>
798     #errors
799    
800     #data
801     <button xmlns="http://www.w3.org/1999/xhtml" form="a">x</button>
802     #errors
803     /button/@form;no referenced form;m
804    
805     #data
806     <div xmlns="http://www.w3.org/1999/xhtml">
807     <button form="b">y</button>
808     <form id="b">x</form>
809     </div>
810     #errors
811    
812     #data
813     <select xmlns="http://www.w3.org/1999/xhtml" form="a"></select>
814     #errors
815     /select/@form;no referenced form;m
816    
817     #data
818     <div xmlns="http://www.w3.org/1999/xhtml">
819     <select form="b"></select>
820     <form id="b">x</form>
821     </div>
822     #errors
823    
824     #data
825     <datalist xmlns="http://www.w3.org/1999/xhtml" form="a">x</datalist>
826     #errors
827     /datalist/@form;attribute not defined;m
828    
829     #data
830     <div xmlns="http://www.w3.org/1999/xhtml">
831     <datalist form="b">y</datalist>
832     <form id="b">x</form>
833     </div>
834     #errors
835     /div/datalist/@form;attribute not defined;m
836    
837     #data
838     <select xmlns="http://www.w3.org/1999/xhtml"><optgroup form="a"/></select>
839     #errors
840     /select/optgroup/@form;attribute not defined;m
841 wakaba 1.6 /select/optgroup;attribute missing;label;m
842 wakaba 1.1
843     #data
844     <div xmlns="http://www.w3.org/1999/xhtml">
845     <select><optgroup form="b"/></select>
846     <form id="b">x</form>
847     </div>
848     #errors
849     /div/select/optgroup/@form;attribute not defined;m
850 wakaba 1.6 /div/select/optgroup;attribute missing;label;m
851 wakaba 1.1
852     #data
853     <select xmlns="http://www.w3.org/1999/xhtml"><option form="a">x</option></select>
854     #errors
855     /select/option/@form;attribute not defined;m
856    
857     #data
858     <div xmlns="http://www.w3.org/1999/xhtml">
859     <select><option form="b">y</option></select>
860     <form id="b">x</form>
861     </div>
862     #errors
863     /div/select/option/@form;attribute not defined;m
864    
865     #data
866     <textarea xmlns="http://www.w3.org/1999/xhtml" form="a">x</textarea>
867     #errors
868     /textarea/@form;no referenced form;m
869    
870     #data
871     <div xmlns="http://www.w3.org/1999/xhtml">
872     <textarea form="b">y</textarea>
873     <form id="b">x</form>
874     </div>
875     #errors
876    
877     #data
878     <output xmlns="http://www.w3.org/1999/xhtml" form="a">x</output>
879     #errors
880     /output/@form;no referenced form;m
881    
882     #data
883     <div xmlns="http://www.w3.org/1999/xhtml">
884     <output form="b">y</output>
885 wakaba 1.9 <form id="b">x</form>
886     </div>
887     #errors
888    
889     #data
890     <object data="" xmlns="http://www.w3.org/1999/xhtml" form="a">x</object>
891     #errors
892     /object/@form;no referenced form;m
893    
894     #data
895     <div xmlns="http://www.w3.org/1999/xhtml">
896     <object data="" form="b">y</object>
897 wakaba 1.1 <form id="b">x</form>
898     </div>
899     #errors
900 wakaba 1.3
901     #data
902     <form xmlns="http://www.w3.org/1999/xhtml"
903     action=""
904     accept="">x</form>
905     #errors
906     /form/@accept;IMTnp:syntax error;m
907     /form/@accept;attribute not defined;m
908    
909     #data
910     <form xmlns="http://www.w3.org/1999/xhtml"
911     action=""
912     accept=",">x</form>
913     #errors
914     /form/@accept;IMTnp:syntax error;m
915     /form/@accept;duplicate token;m
916     /form/@accept;attribute not defined;m
917    
918     #data
919     <form xmlns="http://www.w3.org/1999/xhtml"
920     action=""
921     accept="text/plain">x</form>
922     #errors
923     /form/@accept;attribute not defined;m
924    
925     #data
926     <form xmlns="http://www.w3.org/1999/xhtml"
927     action=""
928     accept="text/plain,text/html">x</form>
929     #errors
930     /form/@accept;attribute not defined;m
931    
932     #data
933     <form xmlns="http://www.w3.org/1999/xhtml"
934     action=""
935     accept="text/plain, text/html">x</form>
936     #errors
937     /form/@accept;IMTnp:syntax error;m
938     /form/@accept;attribute not defined;m
939    
940     #data
941     <form xmlns="http://www.w3.org/1999/xhtml"
942     action=""
943     accept="text/plain,">x</form>
944     #errors
945     /form/@accept;IMTnp:syntax error;m
946     /form/@accept;attribute not defined;m
947    
948     #data
949     <form xmlns="http://www.w3.org/1999/xhtml"
950     action=""
951     accept="image/png">x</form>
952     #errors
953     /form/@accept;attribute not defined;m
954    
955     #data
956     <form xmlns="http://www.w3.org/1999/xhtml"
957     action=""
958     accept=",image/png">x</form>
959     #errors
960     /form/@accept;IMTnp:syntax error;m
961     /form/@accept;attribute not defined;m
962    
963     #data
964     <form xmlns="http://www.w3.org/1999/xhtml"
965     action=""
966     accept="image/png,,image/jpeg">x</form>
967     #errors
968     /form/@accept;IMTnp:syntax error;m
969     /form/@accept;attribute not defined;m
970    
971     #data
972     <form xmlns="http://www.w3.org/1999/xhtml"
973     action=""
974     accept=" image/png ">x</form>
975     #errors
976     /form/@accept;IMTnp:syntax error;m
977     /form/@accept;attribute not defined;m
978    
979     #data
980     <form xmlns="http://www.w3.org/1999/xhtml"
981     action=""
982     accept="image/*">x</form>
983     #errors
984     /form/@accept;attribute not defined;m
985    
986     #data
987     <form xmlns="http://www.w3.org/1999/xhtml"
988     action=""
989     accept="audio/*">x</form>
990     #errors
991     /form/@accept;attribute not defined;m
992    
993     #data
994     <form xmlns="http://www.w3.org/1999/xhtml"
995     action=""
996     accept="video/*">x</form>
997     #errors
998     /form/@accept;attribute not defined;m
999    
1000     #data
1001     <form xmlns="http://www.w3.org/1999/xhtml"
1002     action=""
1003     accept="text/*">x</form>
1004     #errors
1005     /form/@accept;IMTnp:syntax error;m
1006     /form/@accept;attribute not defined;m
1007    
1008     #data
1009     <form xmlns="http://www.w3.org/1999/xhtml"
1010     action=""
1011     accept="multipart/*">x</form>
1012     #errors
1013     /form/@accept;attribute not defined;m
1014     /form/@accept;IMTnp:syntax error;m
1015    
1016     #data
1017     <form xmlns="http://www.w3.org/1999/xhtml"
1018     action=""
1019     accept="model/*">x</form>
1020     #errors
1021     /form/@accept;IMTnp:syntax error;m
1022     /form/@accept;attribute not defined;m
1023    
1024     #data
1025     <form xmlns="http://www.w3.org/1999/xhtml"
1026     action=""
1027     accept="application/*">x</form>
1028     #errors
1029     /form/@accept;IMTnp:syntax error;m
1030     /form/@accept;attribute not defined;m
1031    
1032     #data
1033     <form xmlns="http://www.w3.org/1999/xhtml"
1034     action=""
1035     accept="message/*">x</form>
1036     #errors
1037     /form/@accept;IMTnp:syntax error;m
1038     /form/@accept;attribute not defined;m
1039    
1040     #data
1041     <form xmlns="http://www.w3.org/1999/xhtml"
1042     action=""
1043     accept="font/*">x</form>
1044     #errors
1045     /form/@accept;IMTnp:syntax error;m
1046     /form/@accept;attribute not defined;m
1047    
1048     #data
1049     <form xmlns="http://www.w3.org/1999/xhtml"
1050     action=""
1051     accept="*/*">x</form>
1052     #errors
1053     /form/@accept;IMTnp:syntax error;m
1054     /form/@accept;attribute not defined;m
1055    
1056     #data
1057     <form xmlns="http://www.w3.org/1999/xhtml"
1058     action=""
1059     accept="*/*+xml">x</form>
1060     #errors
1061     /form/@accept;IMTnp:syntax error;m
1062     /form/@accept;attribute not defined;m
1063    
1064     #data
1065     <form xmlns="http://www.w3.org/1999/xhtml"
1066     action=""
1067     accept="*/xml">x</form>
1068     #errors
1069     /form/@accept;IMTnp:syntax error;m
1070     /form/@accept;attribute not defined;m
1071    
1072     #data
1073     <form xmlns="http://www.w3.org/1999/xhtml"
1074     action=""
1075     accept="image/png,video/*">x</form>
1076     #errors
1077     /form/@accept;attribute not defined;m
1078    
1079     #data
1080     <form xmlns="http://www.w3.org/1999/xhtml"
1081     action=""
1082     accept="audio/*,audio/mpeg">x</form>
1083     #errors
1084     /form/@accept;attribute not defined;m
1085    
1086     #data
1087     <form xmlns="http://www.w3.org/1999/xhtml"
1088     action=""
1089     accept="audio/*,video/*">x</form>
1090     #errors
1091     /form/@accept;attribute not defined;m
1092    
1093     #data
1094     <form xmlns="http://www.w3.org/1999/xhtml"
1095     action=""
1096     accept="AUDIO/*">x</form>
1097     #errors
1098     /form/@accept;attribute not defined;m
1099    
1100     #data
1101     <form xmlns="http://www.w3.org/1999/xhtml"
1102     action=""
1103     accept="imagE/*">x</form>
1104     #errors
1105     /form/@accept;attribute not defined;m
1106    
1107     #data
1108     <form xmlns="http://www.w3.org/1999/xhtml"
1109     action=""
1110     accept="Image/*,TEXT/plain">x</form>
1111     #errors
1112     /form/@accept;attribute not defined;m
1113    
1114     #data
1115     <form xmlns="http://www.w3.org/1999/xhtml"
1116     action=""
1117     accept="application/XML">x</form>
1118     #errors
1119     /form/@accept;attribute not defined;m
1120    
1121     #data
1122     <form xmlns="http://www.w3.org/1999/xhtml"
1123     action=""
1124     accept="text/plain,text/plain">x</form>
1125     #errors
1126     /form/@accept;duplicate token;m
1127     /form/@accept;attribute not defined;m
1128    
1129     #data
1130     <form xmlns="http://www.w3.org/1999/xhtml"
1131     action=""
1132     accept="image/*,image/*">x</form>
1133     #errors
1134     /form/@accept;attribute not defined;m
1135     /form/@accept;duplicate token;m
1136    
1137     #data
1138     <form xmlns="http://www.w3.org/1999/xhtml"
1139     action=""
1140     accept="image/png,image/PNG">x</form>
1141     #errors
1142     /form/@accept;attribute not defined;m
1143     /form/@accept;duplicate token;m
1144    
1145     #data
1146     <form xmlns="http://www.w3.org/1999/xhtml"
1147     action=""
1148     accept="Audio/*,audio/*">x</form>
1149     #errors
1150     /form/@accept;duplicate token;m
1151     /form/@accept;attribute not defined;m
1152    
1153     #data
1154     <form xmlns="http://www.w3.org/1999/xhtml"
1155     action=""
1156     accept="text/javascript; version=1.1">x</form>
1157     #errors
1158     /form/@accept;IMTnp:syntax error;m
1159     /form/@accept;attribute not defined;m
1160    
1161     #data
1162     <form xmlns="http://www.w3.org/1999/xhtml"
1163     action=""
1164     accept='text/plain;x-param="image/png,image/jpeg,image/svg+xml"'>x</form>
1165     #errors
1166     /form/@accept;IMTnp:syntax error;m
1167     /form/@accept;attribute not defined;m
1168     /form/@accept;IMTnp:syntax error;m
1169    
1170     #data
1171     <form xmlns="http://www.w3.org/1999/xhtml"
1172     action=""
1173     accept='text/plain;x-param="image/png,image/JPEG,image/svg+xml",image/jpeg'>x</form>
1174     #errors
1175     /form/@accept;attribute not defined;m
1176     /form/@accept;IMTnp:syntax error;m
1177     /form/@accept;IMTnp:syntax error;m
1178     /form/@accept;duplicate token;m
1179 wakaba 1.7
1180     #data
1181     <fieldset xmlns="http://www.w3.org/1999/xhtml"
1182     name=""
1183     ><legend>x</legend>y</fieldset>
1184     #errors
1185     /fieldset/@name;empty control name;m
1186    
1187     #data
1188     <fieldset xmlns="http://www.w3.org/1999/xhtml"
1189     name="x"
1190     ><legend>x</legend>y</fieldset>
1191     #errors
1192    
1193     #data
1194     <input xmlns="http://www.w3.org/1999/xhtml"
1195     type="hidden" name=""/>
1196     #errors
1197     /input/@name;empty control name;m
1198    
1199     #data
1200     <input xmlns="http://www.w3.org/1999/xhtml"
1201     type="hidden" name="x"/>
1202     #errors
1203    
1204     #data
1205     <input xmlns="http://www.w3.org/1999/xhtml"
1206     type="text" name=""/>
1207     #errors
1208     /input/@name;empty control name;m
1209    
1210     #data
1211     <input xmlns="http://www.w3.org/1999/xhtml"
1212     type="text" name="x"/>
1213     #errors
1214    
1215     #data
1216     <input xmlns="http://www.w3.org/1999/xhtml"
1217     type="search" name=""/>
1218     #errors
1219     /input/@name;empty control name;m
1220    
1221     #data
1222     <input xmlns="http://www.w3.org/1999/xhtml"
1223     type="search" name="x"/>
1224     #errors
1225    
1226     #data
1227     <input xmlns="http://www.w3.org/1999/xhtml"
1228     type="url" name=""/>
1229     #errors
1230     /input/@name;empty control name;m
1231    
1232     #data
1233     <input xmlns="http://www.w3.org/1999/xhtml"
1234     type="url" name="x"/>
1235     #errors
1236    
1237     #data
1238     <input xmlns="http://www.w3.org/1999/xhtml"
1239     type="email" name=""/>
1240     #errors
1241     /input/@name;empty control name;m
1242    
1243     #data
1244     <input xmlns="http://www.w3.org/1999/xhtml"
1245     type="email" name="x"/>
1246     #errors
1247    
1248     #data
1249     <input xmlns="http://www.w3.org/1999/xhtml"
1250     type="password" name=""/>
1251     #errors
1252     /input/@name;empty control name;m
1253    
1254     #data
1255     <input xmlns="http://www.w3.org/1999/xhtml"
1256     type="password" name="x"/>
1257     #errors
1258    
1259     #data
1260     <input xmlns="http://www.w3.org/1999/xhtml"
1261     type="datetime" name=""/>
1262     #errors
1263     /input/@name;empty control name;m
1264    
1265     #data
1266     <input xmlns="http://www.w3.org/1999/xhtml"
1267     type="datetime" name="x"/>
1268     #errors
1269    
1270     #data
1271     <input xmlns="http://www.w3.org/1999/xhtml"
1272     type="date" name=""/>
1273     #errors
1274     /input/@name;empty control name;m
1275    
1276     #data
1277     <input xmlns="http://www.w3.org/1999/xhtml"
1278     type="date" name="x"/>
1279     #errors
1280    
1281     #data
1282     <input xmlns="http://www.w3.org/1999/xhtml"
1283     type="month" name=""/>
1284     #errors
1285     /input/@name;empty control name;m
1286    
1287     #data
1288     <input xmlns="http://www.w3.org/1999/xhtml"
1289     type="month" name="x"/>
1290     #errors
1291    
1292     #data
1293     <input xmlns="http://www.w3.org/1999/xhtml"
1294     type="week" name=""/>
1295     #errors
1296     /input/@name;empty control name;m
1297    
1298     #data
1299     <input xmlns="http://www.w3.org/1999/xhtml"
1300     type="week" name="x"/>
1301     #errors
1302    
1303     #data
1304     <input xmlns="http://www.w3.org/1999/xhtml"
1305     type="time" name=""/>
1306     #errors
1307     /input/@name;empty control name;m
1308    
1309     #data
1310     <input xmlns="http://www.w3.org/1999/xhtml"
1311     type="time" name="x"/>
1312     #errors
1313    
1314     #data
1315     <input xmlns="http://www.w3.org/1999/xhtml"
1316     type="datetime-local" name=""/>
1317     #errors
1318     /input/@name;empty control name;m
1319    
1320     #data
1321     <input xmlns="http://www.w3.org/1999/xhtml"
1322     type="datetime-local" name="x"/>
1323     #errors
1324    
1325     #data
1326     <input xmlns="http://www.w3.org/1999/xhtml"
1327     type="number" name=""/>
1328     #errors
1329     /input/@name;empty control name;m
1330    
1331     #data
1332     <input xmlns="http://www.w3.org/1999/xhtml"
1333     type="number" name="x"/>
1334     #errors
1335    
1336     #data
1337     <input xmlns="http://www.w3.org/1999/xhtml"
1338     type="range" name=""/>
1339     #errors
1340     /input/@name;empty control name;m
1341    
1342     #data
1343     <input xmlns="http://www.w3.org/1999/xhtml"
1344     type="range" name="x"/>
1345     #errors
1346    
1347     #data
1348     <input xmlns="http://www.w3.org/1999/xhtml"
1349     type="color" name=""/>
1350     #errors
1351     /input/@name;empty control name;m
1352    
1353     #data
1354     <input xmlns="http://www.w3.org/1999/xhtml"
1355     type="color" name="x"/>
1356     #errors
1357    
1358     #data
1359     <input xmlns="http://www.w3.org/1999/xhtml"
1360     type="checkbox" name=""/>
1361     #errors
1362     /input/@name;empty control name;m
1363    
1364     #data
1365     <input xmlns="http://www.w3.org/1999/xhtml"
1366     type="checkbox" name="x"/>
1367     #errors
1368    
1369     #data
1370     <input xmlns="http://www.w3.org/1999/xhtml"
1371     type="radio" name=""/>
1372     #errors
1373     /input/@name;empty control name;m
1374    
1375     #data
1376     <input xmlns="http://www.w3.org/1999/xhtml"
1377     type="radio" name="x"/>
1378     #errors
1379    
1380     #data
1381     <input xmlns="http://www.w3.org/1999/xhtml"
1382     type="file" name=""/>
1383     #errors
1384     /input/@name;empty control name;m
1385    
1386     #data
1387     <input xmlns="http://www.w3.org/1999/xhtml"
1388     type="file" name="x"/>
1389     #errors
1390    
1391     #data
1392     <input xmlns="http://www.w3.org/1999/xhtml"
1393     type="submit" name=""/>
1394     #errors
1395     /input/@name;empty control name;m
1396    
1397     #data
1398     <input xmlns="http://www.w3.org/1999/xhtml"
1399     type="submit" name="x"/>
1400     #errors
1401    
1402     #data
1403     <input xmlns="http://www.w3.org/1999/xhtml"
1404     type="image" src="" alt="x" name=""/>
1405     #errors
1406     /input/@name;empty control name;m
1407    
1408     #data
1409     <input xmlns="http://www.w3.org/1999/xhtml"
1410     type="image" src="" alt="x" name="x"/>
1411     #errors
1412    
1413     #data
1414     <input xmlns="http://www.w3.org/1999/xhtml"
1415     type="reset" name=""/>
1416     #errors
1417     /input/@name;empty control name;m
1418    
1419     #data
1420     <input xmlns="http://www.w3.org/1999/xhtml"
1421     type="reset" name="x"/>
1422     #errors
1423    
1424     #data
1425     <input xmlns="http://www.w3.org/1999/xhtml"
1426     type="button" name=""/>
1427     #errors
1428     /input/@name;empty control name;m
1429    
1430     #data
1431     <input xmlns="http://www.w3.org/1999/xhtml"
1432     type="button" name="x"/>
1433     #errors
1434    
1435     #data
1436     <input xmlns="http://www.w3.org/1999/xhtml"
1437     type="add" name=""/>
1438     #errors
1439     /input/@name;empty control name;m
1440     /input/@type;enumerated:invalid;m
1441    
1442     #data
1443     <input xmlns="http://www.w3.org/1999/xhtml"
1444     type="add" name="x"/>
1445     #errors
1446     /input/@type;enumerated:invalid;m
1447    
1448     #data
1449     <input xmlns="http://www.w3.org/1999/xhtml"
1450     type="remove" name=""/>
1451     #errors
1452     /input/@name;empty control name;m
1453     /input/@type;enumerated:invalid;m
1454    
1455     #data
1456     <input xmlns="http://www.w3.org/1999/xhtml"
1457     type="remove" name="x"/>
1458     #errors
1459     /input/@type;enumerated:invalid;m
1460    
1461     #data
1462     <input xmlns="http://www.w3.org/1999/xhtml"
1463     type="move-up" name=""/>
1464     #errors
1465     /input/@name;empty control name;m
1466     /input/@type;enumerated:invalid;m
1467    
1468     #data
1469     <input xmlns="http://www.w3.org/1999/xhtml"
1470     type="move-up" name="x"/>
1471     #errors
1472     /input/@type;enumerated:invalid;m
1473    
1474     #data
1475     <input xmlns="http://www.w3.org/1999/xhtml"
1476     type="move-down" name=""/>
1477     #errors
1478     /input/@name;empty control name;m
1479     /input/@type;enumerated:invalid;m
1480    
1481     #data
1482     <input xmlns="http://www.w3.org/1999/xhtml"
1483     type="move-down" name="x"/>
1484     #errors
1485     /input/@type;enumerated:invalid;m
1486    
1487     #data
1488     <button xmlns="http://www.w3.org/1999/xhtml"
1489     type="button" name="">x</button>
1490     #errors
1491     /button/@name;empty control name;m
1492    
1493     #data
1494     <button xmlns="http://www.w3.org/1999/xhtml"
1495     type="button" name="x">x</button>
1496     #errors
1497    
1498     #data
1499     <button xmlns="http://www.w3.org/1999/xhtml"
1500     type="submit" name="">x</button>
1501     #errors
1502     /button/@name;empty control name;m
1503    
1504     #data
1505     <button xmlns="http://www.w3.org/1999/xhtml"
1506     type="submit" name="x">x</button>
1507     #errors
1508    
1509     #data
1510     <button xmlns="http://www.w3.org/1999/xhtml"
1511     type="reset" name="">x</button>
1512     #errors
1513     /button/@name;empty control name;m
1514    
1515     #data
1516     <button xmlns="http://www.w3.org/1999/xhtml"
1517     type="reset" name="x">x</button>
1518     #errors
1519    
1520     #data
1521     <button xmlns="http://www.w3.org/1999/xhtml"
1522     type="add" name="">x</button>
1523     #errors
1524     /button/@name;empty control name;m
1525     /button/@type;enumerated:invalid;m
1526    
1527     #data
1528     <button xmlns="http://www.w3.org/1999/xhtml"
1529     type="add" name="x">x</button>
1530     #errors
1531     /button/@type;enumerated:invalid;m
1532    
1533     #data
1534     <button xmlns="http://www.w3.org/1999/xhtml"
1535     type="remove" name="">x</button>
1536     #errors
1537     /button/@name;empty control name;m
1538     /button/@type;enumerated:invalid;m
1539    
1540     #data
1541     <button xmlns="http://www.w3.org/1999/xhtml"
1542     type="remove" name="x">x</button>
1543     #errors
1544     /button/@type;enumerated:invalid;m
1545    
1546     #data
1547     <button xmlns="http://www.w3.org/1999/xhtml"
1548     type="move-up" name="">x</button>
1549     #errors
1550     /button/@name;empty control name;m
1551     /button/@type;enumerated:invalid;m
1552    
1553     #data
1554     <button xmlns="http://www.w3.org/1999/xhtml"
1555     type="move-up" name="x">x</button>
1556     #errors
1557     /button/@type;enumerated:invalid;m
1558    
1559     #data
1560     <button xmlns="http://www.w3.org/1999/xhtml"
1561     type="move-down" name="">x</button>
1562     #errors
1563     /button/@name;empty control name;m
1564     /button/@type;enumerated:invalid;m
1565    
1566     #data
1567     <button xmlns="http://www.w3.org/1999/xhtml"
1568     type="move-down" name="x">x</button>
1569     #errors
1570     /button/@type;enumerated:invalid;m
1571    
1572     #data
1573     <select xmlns="http://www.w3.org/1999/xhtml"
1574     name=""/>
1575     #errors
1576     /select/@name;empty control name;m
1577    
1578     #data
1579     <select xmlns="http://www.w3.org/1999/xhtml"
1580     name="x"/>
1581     #errors
1582    
1583     #data
1584     <textarea xmlns="http://www.w3.org/1999/xhtml"
1585     name=""/>
1586     #errors
1587     /textarea/@name;empty control name;m
1588    
1589     #data
1590     <textarea xmlns="http://www.w3.org/1999/xhtml"
1591     name="x"/>
1592     #errors
1593    
1594     #data
1595     <output xmlns="http://www.w3.org/1999/xhtml"
1596     name="">x</output>
1597     #errors
1598     /output/@name;empty control name;m
1599    
1600     #data
1601     <output xmlns="http://www.w3.org/1999/xhtml"
1602     name="x">x</output>
1603     #errors
1604    
1605     #data
1606     <div xmlns="http://www.w3.org/1999/xhtml">
1607     x<input autofocus=""/>
1608     <input autofocus=""/>
1609     </div>
1610     #errors
1611     /div/input/@autofocus;duplicate autofocus;m
1612    
1613     #data
1614     <div xmlns="http://www.w3.org/1999/xhtml">
1615     x<input autofocus=""/>
1616     <textarea autofocus=""/>
1617     </div>
1618     #errors
1619     /div/textarea/@autofocus;duplicate autofocus;m
1620    
1621     #data
1622     <div xmlns="http://www.w3.org/1999/xhtml">
1623     x<input autofocus=""/>
1624     <select autofocus=""/>
1625     </div>
1626     #errors
1627     /div/select/@autofocus;duplicate autofocus;m
1628    
1629     #data
1630     <div xmlns="http://www.w3.org/1999/xhtml">
1631     x<input autofocus=""/>
1632     <button autofocus="">x</button>
1633     </div>
1634     #errors
1635     /div/button/@autofocus;duplicate autofocus;m
1636    
1637     #data
1638     <div xmlns="http://www.w3.org/1999/xhtml">
1639     x<input autofocus=""/>
1640     <output autofocus="">x</output>
1641     </div>
1642     #errors
1643     /div/output/@autofocus;attribute not defined;m
1644    
1645     #data
1646     <div xmlns="http://www.w3.org/1999/xhtml">
1647     x<select autofocus=""/>
1648     <input autofocus=""/>
1649     </div>
1650     #errors
1651     /div/input/@autofocus;duplicate autofocus;m
1652    
1653     #data
1654     <div xmlns="http://www.w3.org/1999/xhtml">
1655     x<br autofocus=""/>
1656     <input autofocus=""/>
1657     </div>
1658     #errors
1659     /div/br/@autofocus;attribute not defined;m
1660 wakaba 1.8
1661     #data
1662     <form xmlns="http://www.w3.org/1999/xhtml"
1663     action=""
1664     >x</form>
1665     #errors
1666    
1667     #data
1668     <form xmlns="http://www.w3.org/1999/xhtml"
1669     action="http://www.w3.org/"
1670     >x</form>
1671     #errors
1672    
1673     #data
1674     <form xmlns="http://www.w3.org/1999/xhtml"
1675     action="test"
1676     >x</form>
1677     #errors
1678    
1679     #data
1680     <form xmlns="http://www.w3.org/1999/xhtml"
1681     action="#test"
1682     >x</form>
1683     #errors
1684    
1685     #data
1686     <form xmlns="http://www.w3.org/1999/xhtml"
1687     action="[]"
1688     >x</form>
1689     #errors
1690     /form/@action;syntax error:iriref3987;m
1691    
1692     #data
1693     <form xmlns="http://www.w3.org/1999/xhtml"
1694     method=""
1695     >x</form>
1696     #errors
1697     /form/@method;enumerated:invalid;m
1698    
1699     #data
1700     <form xmlns="http://www.w3.org/1999/xhtml"
1701     method="get"
1702     >x</form>
1703     #errors
1704    
1705     #data
1706     <form xmlns="http://www.w3.org/1999/xhtml"
1707     method="GET"
1708     >x</form>
1709     #errors
1710    
1711     #data
1712     <form xmlns="http://www.w3.org/1999/xhtml"
1713     method="post"
1714     >x</form>
1715     #errors
1716    
1717     #data
1718     <form xmlns="http://www.w3.org/1999/xhtml"
1719     method="POST"
1720     >x</form>
1721     #errors
1722    
1723     #data
1724     <form xmlns="http://www.w3.org/1999/xhtml"
1725     method="put"
1726     >x</form>
1727     #errors
1728    
1729     #data
1730     <form xmlns="http://www.w3.org/1999/xhtml"
1731     method="PUT"
1732     >x</form>
1733     #errors
1734    
1735     #data
1736     <form xmlns="http://www.w3.org/1999/xhtml"
1737     method="delete"
1738     >x</form>
1739     #errors
1740    
1741     #data
1742     <form xmlns="http://www.w3.org/1999/xhtml"
1743     method="DELETE"
1744     >x</form>
1745     #errors
1746    
1747     #data
1748     <form xmlns="http://www.w3.org/1999/xhtml"
1749     method="GEt"
1750     >x</form>
1751     #errors
1752    
1753     #data
1754     <form xmlns="http://www.w3.org/1999/xhtml"
1755     method="deleTE"
1756     >x</form>
1757     #errors
1758    
1759     #data
1760     <form xmlns="http://www.w3.org/1999/xhtml"
1761     method="head"
1762     >x</form>
1763     #errors
1764     /form/@method;enumerated:invalid;m
1765    
1766     #data
1767     <form xmlns="http://www.w3.org/1999/xhtml"
1768     method="m-get"
1769     >x</form>
1770     #errors
1771     /form/@method;enumerated:invalid;m
1772    
1773     #data
1774     <form xmlns="http://www.w3.org/1999/xhtml"
1775     method="get "
1776     >x</form>
1777     #errors
1778     /form/@method;enumerated:invalid;m
1779    
1780     #data
1781     <form xmlns="http://www.w3.org/1999/xhtml"
1782     method="getall"
1783     >x</form>
1784     #errors
1785     /form/@method;enumerated:invalid;m
1786    
1787     #data
1788     <form xmlns="http://www.w3.org/1999/xhtml"
1789     method="push"
1790     >x</form>
1791     #errors
1792     /form/@method;enumerated:invalid;m
1793    
1794     #data
1795     <form xmlns="http://www.w3.org/1999/xhtml"
1796     method="method"
1797     >x</form>
1798     #errors
1799     /form/@method;enumerated:invalid;m
1800    
1801     #data
1802     <form xmlns="http://www.w3.org/1999/xhtml"
1803     enctype=""
1804     >x</form>
1805     #errors
1806     /form/@enctype;enumerated:invalid;m
1807    
1808     #data
1809     <form xmlns="http://www.w3.org/1999/xhtml"
1810     enctype="application/x-www-form-urlencoded"
1811     >x</form>
1812     #errors
1813    
1814     #data
1815     <form xmlns="http://www.w3.org/1999/xhtml"
1816     enctype="APPLICATION/X-WWW-FORM-URLENCODED"
1817     >x</form>
1818     #errors
1819    
1820     #data
1821     <form xmlns="http://www.w3.org/1999/xhtml"
1822     enctype="Application/x-www-form-urlencoded"
1823     >x</form>
1824     #errors
1825    
1826     #data
1827     <form xmlns="http://www.w3.org/1999/xhtml"
1828     enctype="multipart/form-data"
1829     >x</form>
1830     #errors
1831    
1832     #data
1833     <form xmlns="http://www.w3.org/1999/xhtml"
1834     enctype="Multipart/Form-Data"
1835     >x</form>
1836     #errors
1837    
1838     #data
1839     <form xmlns="http://www.w3.org/1999/xhtml"
1840     enctype="text/plain"
1841     >x</form>
1842     #errors
1843    
1844     #data
1845     <form xmlns="http://www.w3.org/1999/xhtml"
1846     enctype="TEXT/plain"
1847     >x</form>
1848     #errors
1849    
1850     #data
1851     <form xmlns="http://www.w3.org/1999/xhtml"
1852     enctype="application/x-url-encoded"
1853     >x</form>
1854     #errors
1855     /form/@enctype;enumerated:invalid;m
1856    
1857     #data
1858     <form xmlns="http://www.w3.org/1999/xhtml"
1859     enctype="application/x-sgml-urlencoded"
1860     >x</form>
1861     #errors
1862     /form/@enctype;enumerated:invalid;m
1863    
1864     #data
1865     <form xmlns="http://www.w3.org/1999/xhtml"
1866     enctype="application/x-www-form-urlencoded; charset=utf-8"
1867     >x</form>
1868     #errors
1869     /form/@enctype;enumerated:invalid;m
1870    
1871     #data
1872     <form xmlns="http://www.w3.org/1999/xhtml"
1873     enctype=" text/plain "
1874     >x</form>
1875     #errors
1876     /form/@enctype;enumerated:invalid;m
1877    
1878     #data
1879     <form xmlns="http://www.w3.org/1999/xhtml"
1880     enctype="image/png"
1881     >x</form>
1882     #errors
1883     /form/@enctype;enumerated:invalid;m
1884    
1885     #data
1886     <form xmlns="http://www.w3.org/1999/xhtml"
1887     enctype="enctype"
1888     >x</form>
1889     #errors
1890     /form/@enctype;enumerated:invalid;m
1891    
1892     #data
1893     <form xmlns="http://www.w3.org/1999/xhtml"
1894     enctype="multipart/related"
1895     >x</form>
1896     #errors
1897     /form/@enctype;enumerated:invalid;m
1898    
1899     #data
1900     <form xmlns="http://www.w3.org/1999/xhtml"
1901     enctype="application/xml"
1902     >x</form>
1903     #errors
1904     /form/@enctype;enumerated:invalid;m
1905    
1906     #data
1907     <form xmlns="http://www.w3.org/1999/xhtml"
1908     enctype="text/xml"
1909     >x</form>
1910     #errors
1911     /form/@enctype;enumerated:invalid;m
1912    
1913     #data
1914     <form xmlns="http://www.w3.org/1999/xhtml"
1915     enctype="text/html"
1916     >x</form>
1917     #errors
1918     /form/@enctype;enumerated:invalid;m
1919    
1920     #data
1921     <form xmlns="http://www.w3.org/1999/xhtml"
1922     target=""
1923     >x</form>
1924     #errors
1925     /form/@target;window name:empty;m
1926    
1927     #data
1928     <form xmlns="http://www.w3.org/1999/xhtml"
1929     target="_blank"
1930     >x</form>
1931     #errors
1932    
1933     #data
1934     <form xmlns="http://www.w3.org/1999/xhtml"
1935     target="_self"
1936     >x</form>
1937     #errors
1938    
1939     #data
1940     <form xmlns="http://www.w3.org/1999/xhtml"
1941     target="_parent"
1942     >x</form>
1943     #errors
1944    
1945     #data
1946     <form xmlns="http://www.w3.org/1999/xhtml"
1947     target="_top"
1948     >x</form>
1949     #errors
1950    
1951     #data
1952     <form xmlns="http://www.w3.org/1999/xhtml"
1953     target="new"
1954     >x</form>
1955     #errors
1956    
1957     #data
1958     <form xmlns="http://www.w3.org/1999/xhtml"
1959     target="result"
1960     >x</form>
1961     #errors
1962    
1963     #data
1964     <form xmlns="http://www.w3.org/1999/xhtml"
1965     target="_BLANK"
1966     >x</form>
1967     #errors
1968    
1969     #data
1970     <form xmlns="http://www.w3.org/1999/xhtml"
1971     target="_SElf"
1972     >x</form>
1973     #errors
1974    
1975     #data
1976     <form xmlns="http://www.w3.org/1999/xhtml"
1977     target="_new"
1978     >x</form>
1979     #errors
1980     /form/@target;window name:reserved;m
1981    
1982     #data
1983     <form xmlns="http://www.w3.org/1999/xhtml"
1984     target="_blank "
1985     >x</form>
1986     #errors
1987     /form/@target;window name:reserved;m
1988    
1989     #data
1990     <form xmlns="http://www.w3.org/1999/xhtml"
1991     target="_new window"
1992     >x</form>
1993     #errors
1994     /form/@target;window name:reserved;m
1995    
1996     #data
1997     <form xmlns="http://www.w3.org/1999/xhtml"
1998     target="new window"
1999     >x</form>
2000     #errors
2001    
2002     #data
2003     <form xmlns="http://www.w3.org/1999/xhtml"
2004     target="_content"
2005     >x</form>
2006     #errors
2007     /form/@target;window name:reserved;m
2008    
2009     #data
2010     <form xmlns="http://www.w3.org/1999/xhtml"
2011     target="_replace"
2012     >x</form>
2013     #errors
2014     /form/@target;window name:reserved;m
2015    
2016     #data
2017     <form xmlns="http://www.w3.org/1999/xhtml"
2018     target="_search"
2019     >x</form>
2020     #errors
2021     /form/@target;window name:reserved;m
2022    
2023     #data
2024     <form xmlns="http://www.w3.org/1999/xhtml"
2025     novalidate=""
2026     >x</form>
2027     #errors
2028    
2029     #data
2030     <form xmlns="http://www.w3.org/1999/xhtml"
2031     novalidate="novalidate"
2032     >x</form>
2033     #errors
2034    
2035     #data
2036     <form xmlns="http://www.w3.org/1999/xhtml"
2037     novalidate="NoValidate"
2038     >x</form>
2039     #errors
2040    
2041     #data
2042     <form xmlns="http://www.w3.org/1999/xhtml"
2043     novalidate="yes"
2044     >x</form>
2045     #errors
2046     /form/@novalidate;boolean:invalid;m
2047    
2048     #data
2049     <form xmlns="http://www.w3.org/1999/xhtml"
2050     novalidate="no validate"
2051     >x</form>
2052     #errors
2053     /form/@novalidate;boolean:invalid;m

[email protected]
ViewVC Help
Powered by ViewVC 1.1.24