/[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.7 - (hide annotations) (download)
Fri Dec 12 12:59:17 2008 UTC (17 years, 7 months ago) by wakaba
Branch: MAIN
Changes since 1.6: +671 -0 lines
++ whatpm/t/dom-conformance/ChangeLog	12 Dec 2008 12:59:07 -0000
	* html-form-input.dat: Added test data for <input disabled> and
	<input autofocus>.

	* html-forms-1.dat: Added test data for <fieldset disabled>,
	<output for>, and <{formcontrol} name>.  Added test data for
	<{formcontrol} autofocus="">'s uniqueness.

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

++ whatpm/Whatpm/ChangeLog	12 Dec 2008 12:54:19 -0000
	* ContentChecker.pm: Introduced new flag |has_autofocus|.  Added
	support for new |id_type| value of |any|, which means any kind of
	element is allowed as a referenced element.

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

++ whatpm/Whatpm/ContentChecker/ChangeLog	12 Dec 2008 12:56:56 -0000
	* HTML.pm: Added checking for the uniqueness of |autofocus=""|
	attribute.  Implemented |name=""| attribute for form controls.
	Added U+000C into character class of space characters (it should
	have been, but was not in some of regular expressions).  Updated
	definitions for |output| elements.

2008-12-12  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     <div xmlns="http://www.w3.org/1999/xhtml"><input form="a"/>x</div>
766     #errors
767     /div/input/@form;no referenced form;m
768    
769     #data
770     <div xmlns="http://www.w3.org/1999/xhtml">
771     <input form="b"/>
772     <form id="b">x</form>
773     </div>
774     #errors
775    
776     #data
777     <button xmlns="http://www.w3.org/1999/xhtml" form="a">x</button>
778     #errors
779     /button/@form;no referenced form;m
780    
781     #data
782     <div xmlns="http://www.w3.org/1999/xhtml">
783     <button form="b">y</button>
784     <form id="b">x</form>
785     </div>
786     #errors
787    
788     #data
789     <select xmlns="http://www.w3.org/1999/xhtml" form="a"></select>
790     #errors
791     /select/@form;no referenced form;m
792    
793     #data
794     <div xmlns="http://www.w3.org/1999/xhtml">
795     <select form="b"></select>
796     <form id="b">x</form>
797     </div>
798     #errors
799    
800     #data
801     <datalist xmlns="http://www.w3.org/1999/xhtml" form="a">x</datalist>
802     #errors
803     /datalist/@form;attribute not defined;m
804    
805     #data
806     <div xmlns="http://www.w3.org/1999/xhtml">
807     <datalist form="b">y</datalist>
808     <form id="b">x</form>
809     </div>
810     #errors
811     /div/datalist/@form;attribute not defined;m
812    
813     #data
814     <select xmlns="http://www.w3.org/1999/xhtml"><optgroup form="a"/></select>
815     #errors
816     /select/optgroup/@form;attribute not defined;m
817 wakaba 1.6 /select/optgroup;attribute missing;label;m
818 wakaba 1.1
819     #data
820     <div xmlns="http://www.w3.org/1999/xhtml">
821     <select><optgroup form="b"/></select>
822     <form id="b">x</form>
823     </div>
824     #errors
825     /div/select/optgroup/@form;attribute not defined;m
826 wakaba 1.6 /div/select/optgroup;attribute missing;label;m
827 wakaba 1.1
828     #data
829     <select xmlns="http://www.w3.org/1999/xhtml"><option form="a">x</option></select>
830     #errors
831     /select/option/@form;attribute not defined;m
832    
833     #data
834     <div xmlns="http://www.w3.org/1999/xhtml">
835     <select><option form="b">y</option></select>
836     <form id="b">x</form>
837     </div>
838     #errors
839     /div/select/option/@form;attribute not defined;m
840    
841     #data
842     <textarea xmlns="http://www.w3.org/1999/xhtml" form="a">x</textarea>
843     #errors
844     /textarea/@form;no referenced form;m
845    
846     #data
847     <div xmlns="http://www.w3.org/1999/xhtml">
848     <textarea form="b">y</textarea>
849     <form id="b">x</form>
850     </div>
851     #errors
852    
853     #data
854     <output xmlns="http://www.w3.org/1999/xhtml" form="a">x</output>
855     #errors
856     /output/@form;no referenced form;m
857    
858     #data
859     <div xmlns="http://www.w3.org/1999/xhtml">
860     <output form="b">y</output>
861     <form id="b">x</form>
862     </div>
863     #errors
864 wakaba 1.3
865     #data
866     <form xmlns="http://www.w3.org/1999/xhtml"
867     action=""
868     accept="">x</form>
869     #errors
870     /form/@accept;IMTnp:syntax error;m
871     /form/@accept;attribute not defined;m
872    
873     #data
874     <form xmlns="http://www.w3.org/1999/xhtml"
875     action=""
876     accept=",">x</form>
877     #errors
878     /form/@accept;IMTnp:syntax error;m
879     /form/@accept;duplicate token;m
880     /form/@accept;attribute not defined;m
881    
882     #data
883     <form xmlns="http://www.w3.org/1999/xhtml"
884     action=""
885     accept="text/plain">x</form>
886     #errors
887     /form/@accept;attribute not defined;m
888    
889     #data
890     <form xmlns="http://www.w3.org/1999/xhtml"
891     action=""
892     accept="text/plain,text/html">x</form>
893     #errors
894     /form/@accept;attribute not defined;m
895    
896     #data
897     <form xmlns="http://www.w3.org/1999/xhtml"
898     action=""
899     accept="text/plain, text/html">x</form>
900     #errors
901     /form/@accept;IMTnp:syntax error;m
902     /form/@accept;attribute not defined;m
903    
904     #data
905     <form xmlns="http://www.w3.org/1999/xhtml"
906     action=""
907     accept="text/plain,">x</form>
908     #errors
909     /form/@accept;IMTnp:syntax error;m
910     /form/@accept;attribute not defined;m
911    
912     #data
913     <form xmlns="http://www.w3.org/1999/xhtml"
914     action=""
915     accept="image/png">x</form>
916     #errors
917     /form/@accept;attribute not defined;m
918    
919     #data
920     <form xmlns="http://www.w3.org/1999/xhtml"
921     action=""
922     accept=",image/png">x</form>
923     #errors
924     /form/@accept;IMTnp:syntax error;m
925     /form/@accept;attribute not defined;m
926    
927     #data
928     <form xmlns="http://www.w3.org/1999/xhtml"
929     action=""
930     accept="image/png,,image/jpeg">x</form>
931     #errors
932     /form/@accept;IMTnp:syntax error;m
933     /form/@accept;attribute not defined;m
934    
935     #data
936     <form xmlns="http://www.w3.org/1999/xhtml"
937     action=""
938     accept=" image/png ">x</form>
939     #errors
940     /form/@accept;IMTnp:syntax error;m
941     /form/@accept;attribute not defined;m
942    
943     #data
944     <form xmlns="http://www.w3.org/1999/xhtml"
945     action=""
946     accept="image/*">x</form>
947     #errors
948     /form/@accept;attribute not defined;m
949    
950     #data
951     <form xmlns="http://www.w3.org/1999/xhtml"
952     action=""
953     accept="audio/*">x</form>
954     #errors
955     /form/@accept;attribute not defined;m
956    
957     #data
958     <form xmlns="http://www.w3.org/1999/xhtml"
959     action=""
960     accept="video/*">x</form>
961     #errors
962     /form/@accept;attribute not defined;m
963    
964     #data
965     <form xmlns="http://www.w3.org/1999/xhtml"
966     action=""
967     accept="text/*">x</form>
968     #errors
969     /form/@accept;IMTnp:syntax error;m
970     /form/@accept;attribute not defined;m
971    
972     #data
973     <form xmlns="http://www.w3.org/1999/xhtml"
974     action=""
975     accept="multipart/*">x</form>
976     #errors
977     /form/@accept;attribute not defined;m
978     /form/@accept;IMTnp:syntax error;m
979    
980     #data
981     <form xmlns="http://www.w3.org/1999/xhtml"
982     action=""
983     accept="model/*">x</form>
984     #errors
985     /form/@accept;IMTnp:syntax error;m
986     /form/@accept;attribute not defined;m
987    
988     #data
989     <form xmlns="http://www.w3.org/1999/xhtml"
990     action=""
991     accept="application/*">x</form>
992     #errors
993     /form/@accept;IMTnp:syntax error;m
994     /form/@accept;attribute not defined;m
995    
996     #data
997     <form xmlns="http://www.w3.org/1999/xhtml"
998     action=""
999     accept="message/*">x</form>
1000     #errors
1001     /form/@accept;IMTnp:syntax error;m
1002     /form/@accept;attribute not defined;m
1003    
1004     #data
1005     <form xmlns="http://www.w3.org/1999/xhtml"
1006     action=""
1007     accept="font/*">x</form>
1008     #errors
1009     /form/@accept;IMTnp:syntax error;m
1010     /form/@accept;attribute not defined;m
1011    
1012     #data
1013     <form xmlns="http://www.w3.org/1999/xhtml"
1014     action=""
1015     accept="*/*">x</form>
1016     #errors
1017     /form/@accept;IMTnp:syntax error;m
1018     /form/@accept;attribute not defined;m
1019    
1020     #data
1021     <form xmlns="http://www.w3.org/1999/xhtml"
1022     action=""
1023     accept="*/*+xml">x</form>
1024     #errors
1025     /form/@accept;IMTnp:syntax error;m
1026     /form/@accept;attribute not defined;m
1027    
1028     #data
1029     <form xmlns="http://www.w3.org/1999/xhtml"
1030     action=""
1031     accept="*/xml">x</form>
1032     #errors
1033     /form/@accept;IMTnp:syntax error;m
1034     /form/@accept;attribute not defined;m
1035    
1036     #data
1037     <form xmlns="http://www.w3.org/1999/xhtml"
1038     action=""
1039     accept="image/png,video/*">x</form>
1040     #errors
1041     /form/@accept;attribute not defined;m
1042    
1043     #data
1044     <form xmlns="http://www.w3.org/1999/xhtml"
1045     action=""
1046     accept="audio/*,audio/mpeg">x</form>
1047     #errors
1048     /form/@accept;attribute not defined;m
1049    
1050     #data
1051     <form xmlns="http://www.w3.org/1999/xhtml"
1052     action=""
1053     accept="audio/*,video/*">x</form>
1054     #errors
1055     /form/@accept;attribute not defined;m
1056    
1057     #data
1058     <form xmlns="http://www.w3.org/1999/xhtml"
1059     action=""
1060     accept="AUDIO/*">x</form>
1061     #errors
1062     /form/@accept;attribute not defined;m
1063    
1064     #data
1065     <form xmlns="http://www.w3.org/1999/xhtml"
1066     action=""
1067     accept="imagE/*">x</form>
1068     #errors
1069     /form/@accept;attribute not defined;m
1070    
1071     #data
1072     <form xmlns="http://www.w3.org/1999/xhtml"
1073     action=""
1074     accept="Image/*,TEXT/plain">x</form>
1075     #errors
1076     /form/@accept;attribute not defined;m
1077    
1078     #data
1079     <form xmlns="http://www.w3.org/1999/xhtml"
1080     action=""
1081     accept="application/XML">x</form>
1082     #errors
1083     /form/@accept;attribute not defined;m
1084    
1085     #data
1086     <form xmlns="http://www.w3.org/1999/xhtml"
1087     action=""
1088     accept="text/plain,text/plain">x</form>
1089     #errors
1090     /form/@accept;duplicate token;m
1091     /form/@accept;attribute not defined;m
1092    
1093     #data
1094     <form xmlns="http://www.w3.org/1999/xhtml"
1095     action=""
1096     accept="image/*,image/*">x</form>
1097     #errors
1098     /form/@accept;attribute not defined;m
1099     /form/@accept;duplicate token;m
1100    
1101     #data
1102     <form xmlns="http://www.w3.org/1999/xhtml"
1103     action=""
1104     accept="image/png,image/PNG">x</form>
1105     #errors
1106     /form/@accept;attribute not defined;m
1107     /form/@accept;duplicate token;m
1108    
1109     #data
1110     <form xmlns="http://www.w3.org/1999/xhtml"
1111     action=""
1112     accept="Audio/*,audio/*">x</form>
1113     #errors
1114     /form/@accept;duplicate token;m
1115     /form/@accept;attribute not defined;m
1116    
1117     #data
1118     <form xmlns="http://www.w3.org/1999/xhtml"
1119     action=""
1120     accept="text/javascript; version=1.1">x</form>
1121     #errors
1122     /form/@accept;IMTnp:syntax error;m
1123     /form/@accept;attribute not defined;m
1124    
1125     #data
1126     <form xmlns="http://www.w3.org/1999/xhtml"
1127     action=""
1128     accept='text/plain;x-param="image/png,image/jpeg,image/svg+xml"'>x</form>
1129     #errors
1130     /form/@accept;IMTnp:syntax error;m
1131     /form/@accept;attribute not defined;m
1132     /form/@accept;IMTnp:syntax error;m
1133    
1134     #data
1135     <form xmlns="http://www.w3.org/1999/xhtml"
1136     action=""
1137     accept='text/plain;x-param="image/png,image/JPEG,image/svg+xml",image/jpeg'>x</form>
1138     #errors
1139     /form/@accept;attribute not defined;m
1140     /form/@accept;IMTnp:syntax error;m
1141     /form/@accept;IMTnp:syntax error;m
1142     /form/@accept;duplicate token;m
1143 wakaba 1.7
1144     #data
1145     <fieldset xmlns="http://www.w3.org/1999/xhtml"
1146     name=""
1147     ><legend>x</legend>y</fieldset>
1148     #errors
1149     /fieldset/@name;empty control name;m
1150    
1151     #data
1152     <fieldset xmlns="http://www.w3.org/1999/xhtml"
1153     name="x"
1154     ><legend>x</legend>y</fieldset>
1155     #errors
1156    
1157     #data
1158     <input xmlns="http://www.w3.org/1999/xhtml"
1159     type="hidden" name=""/>
1160     #errors
1161     /input/@name;empty control name;m
1162    
1163     #data
1164     <input xmlns="http://www.w3.org/1999/xhtml"
1165     type="hidden" name="x"/>
1166     #errors
1167    
1168     #data
1169     <input xmlns="http://www.w3.org/1999/xhtml"
1170     type="text" name=""/>
1171     #errors
1172     /input/@name;empty control name;m
1173    
1174     #data
1175     <input xmlns="http://www.w3.org/1999/xhtml"
1176     type="text" name="x"/>
1177     #errors
1178    
1179     #data
1180     <input xmlns="http://www.w3.org/1999/xhtml"
1181     type="search" name=""/>
1182     #errors
1183     /input/@name;empty control name;m
1184    
1185     #data
1186     <input xmlns="http://www.w3.org/1999/xhtml"
1187     type="search" name="x"/>
1188     #errors
1189    
1190     #data
1191     <input xmlns="http://www.w3.org/1999/xhtml"
1192     type="url" name=""/>
1193     #errors
1194     /input/@name;empty control name;m
1195    
1196     #data
1197     <input xmlns="http://www.w3.org/1999/xhtml"
1198     type="url" name="x"/>
1199     #errors
1200    
1201     #data
1202     <input xmlns="http://www.w3.org/1999/xhtml"
1203     type="email" name=""/>
1204     #errors
1205     /input/@name;empty control name;m
1206    
1207     #data
1208     <input xmlns="http://www.w3.org/1999/xhtml"
1209     type="email" name="x"/>
1210     #errors
1211    
1212     #data
1213     <input xmlns="http://www.w3.org/1999/xhtml"
1214     type="password" name=""/>
1215     #errors
1216     /input/@name;empty control name;m
1217    
1218     #data
1219     <input xmlns="http://www.w3.org/1999/xhtml"
1220     type="password" name="x"/>
1221     #errors
1222    
1223     #data
1224     <input xmlns="http://www.w3.org/1999/xhtml"
1225     type="datetime" name=""/>
1226     #errors
1227     /input/@name;empty control name;m
1228    
1229     #data
1230     <input xmlns="http://www.w3.org/1999/xhtml"
1231     type="datetime" name="x"/>
1232     #errors
1233    
1234     #data
1235     <input xmlns="http://www.w3.org/1999/xhtml"
1236     type="date" name=""/>
1237     #errors
1238     /input/@name;empty control name;m
1239    
1240     #data
1241     <input xmlns="http://www.w3.org/1999/xhtml"
1242     type="date" name="x"/>
1243     #errors
1244    
1245     #data
1246     <input xmlns="http://www.w3.org/1999/xhtml"
1247     type="month" name=""/>
1248     #errors
1249     /input/@name;empty control name;m
1250    
1251     #data
1252     <input xmlns="http://www.w3.org/1999/xhtml"
1253     type="month" name="x"/>
1254     #errors
1255    
1256     #data
1257     <input xmlns="http://www.w3.org/1999/xhtml"
1258     type="week" name=""/>
1259     #errors
1260     /input/@name;empty control name;m
1261    
1262     #data
1263     <input xmlns="http://www.w3.org/1999/xhtml"
1264     type="week" name="x"/>
1265     #errors
1266    
1267     #data
1268     <input xmlns="http://www.w3.org/1999/xhtml"
1269     type="time" name=""/>
1270     #errors
1271     /input/@name;empty control name;m
1272    
1273     #data
1274     <input xmlns="http://www.w3.org/1999/xhtml"
1275     type="time" name="x"/>
1276     #errors
1277    
1278     #data
1279     <input xmlns="http://www.w3.org/1999/xhtml"
1280     type="datetime-local" name=""/>
1281     #errors
1282     /input/@name;empty control name;m
1283    
1284     #data
1285     <input xmlns="http://www.w3.org/1999/xhtml"
1286     type="datetime-local" name="x"/>
1287     #errors
1288    
1289     #data
1290     <input xmlns="http://www.w3.org/1999/xhtml"
1291     type="number" name=""/>
1292     #errors
1293     /input/@name;empty control name;m
1294    
1295     #data
1296     <input xmlns="http://www.w3.org/1999/xhtml"
1297     type="number" name="x"/>
1298     #errors
1299    
1300     #data
1301     <input xmlns="http://www.w3.org/1999/xhtml"
1302     type="range" name=""/>
1303     #errors
1304     /input/@name;empty control name;m
1305    
1306     #data
1307     <input xmlns="http://www.w3.org/1999/xhtml"
1308     type="range" name="x"/>
1309     #errors
1310    
1311     #data
1312     <input xmlns="http://www.w3.org/1999/xhtml"
1313     type="color" name=""/>
1314     #errors
1315     /input/@name;empty control name;m
1316    
1317     #data
1318     <input xmlns="http://www.w3.org/1999/xhtml"
1319     type="color" name="x"/>
1320     #errors
1321    
1322     #data
1323     <input xmlns="http://www.w3.org/1999/xhtml"
1324     type="checkbox" name=""/>
1325     #errors
1326     /input/@name;empty control name;m
1327    
1328     #data
1329     <input xmlns="http://www.w3.org/1999/xhtml"
1330     type="checkbox" name="x"/>
1331     #errors
1332    
1333     #data
1334     <input xmlns="http://www.w3.org/1999/xhtml"
1335     type="radio" name=""/>
1336     #errors
1337     /input/@name;empty control name;m
1338    
1339     #data
1340     <input xmlns="http://www.w3.org/1999/xhtml"
1341     type="radio" name="x"/>
1342     #errors
1343    
1344     #data
1345     <input xmlns="http://www.w3.org/1999/xhtml"
1346     type="file" name=""/>
1347     #errors
1348     /input/@name;empty control name;m
1349    
1350     #data
1351     <input xmlns="http://www.w3.org/1999/xhtml"
1352     type="file" name="x"/>
1353     #errors
1354    
1355     #data
1356     <input xmlns="http://www.w3.org/1999/xhtml"
1357     type="submit" name=""/>
1358     #errors
1359     /input/@name;empty control name;m
1360    
1361     #data
1362     <input xmlns="http://www.w3.org/1999/xhtml"
1363     type="submit" name="x"/>
1364     #errors
1365    
1366     #data
1367     <input xmlns="http://www.w3.org/1999/xhtml"
1368     type="image" src="" alt="x" name=""/>
1369     #errors
1370     /input/@name;empty control name;m
1371    
1372     #data
1373     <input xmlns="http://www.w3.org/1999/xhtml"
1374     type="image" src="" alt="x" name="x"/>
1375     #errors
1376    
1377     #data
1378     <input xmlns="http://www.w3.org/1999/xhtml"
1379     type="reset" name=""/>
1380     #errors
1381     /input/@name;empty control name;m
1382    
1383     #data
1384     <input xmlns="http://www.w3.org/1999/xhtml"
1385     type="reset" name="x"/>
1386     #errors
1387    
1388     #data
1389     <input xmlns="http://www.w3.org/1999/xhtml"
1390     type="button" name=""/>
1391     #errors
1392     /input/@name;empty control name;m
1393    
1394     #data
1395     <input xmlns="http://www.w3.org/1999/xhtml"
1396     type="button" name="x"/>
1397     #errors
1398    
1399     #data
1400     <input xmlns="http://www.w3.org/1999/xhtml"
1401     type="add" name=""/>
1402     #errors
1403     /input/@name;empty control name;m
1404     /input/@type;enumerated:invalid;m
1405    
1406     #data
1407     <input xmlns="http://www.w3.org/1999/xhtml"
1408     type="add" name="x"/>
1409     #errors
1410     /input/@type;enumerated:invalid;m
1411    
1412     #data
1413     <input xmlns="http://www.w3.org/1999/xhtml"
1414     type="remove" name=""/>
1415     #errors
1416     /input/@name;empty control name;m
1417     /input/@type;enumerated:invalid;m
1418    
1419     #data
1420     <input xmlns="http://www.w3.org/1999/xhtml"
1421     type="remove" name="x"/>
1422     #errors
1423     /input/@type;enumerated:invalid;m
1424    
1425     #data
1426     <input xmlns="http://www.w3.org/1999/xhtml"
1427     type="move-up" name=""/>
1428     #errors
1429     /input/@name;empty control name;m
1430     /input/@type;enumerated:invalid;m
1431    
1432     #data
1433     <input xmlns="http://www.w3.org/1999/xhtml"
1434     type="move-up" name="x"/>
1435     #errors
1436     /input/@type;enumerated:invalid;m
1437    
1438     #data
1439     <input xmlns="http://www.w3.org/1999/xhtml"
1440     type="move-down" name=""/>
1441     #errors
1442     /input/@name;empty control name;m
1443     /input/@type;enumerated:invalid;m
1444    
1445     #data
1446     <input xmlns="http://www.w3.org/1999/xhtml"
1447     type="move-down" name="x"/>
1448     #errors
1449     /input/@type;enumerated:invalid;m
1450    
1451     #data
1452     <button xmlns="http://www.w3.org/1999/xhtml"
1453     type="button" name="">x</button>
1454     #errors
1455     /button/@name;empty control name;m
1456    
1457     #data
1458     <button xmlns="http://www.w3.org/1999/xhtml"
1459     type="button" name="x">x</button>
1460     #errors
1461    
1462     #data
1463     <button xmlns="http://www.w3.org/1999/xhtml"
1464     type="submit" name="">x</button>
1465     #errors
1466     /button/@name;empty control name;m
1467    
1468     #data
1469     <button xmlns="http://www.w3.org/1999/xhtml"
1470     type="submit" name="x">x</button>
1471     #errors
1472    
1473     #data
1474     <button xmlns="http://www.w3.org/1999/xhtml"
1475     type="reset" name="">x</button>
1476     #errors
1477     /button/@name;empty control name;m
1478    
1479     #data
1480     <button xmlns="http://www.w3.org/1999/xhtml"
1481     type="reset" name="x">x</button>
1482     #errors
1483    
1484     #data
1485     <button xmlns="http://www.w3.org/1999/xhtml"
1486     type="add" name="">x</button>
1487     #errors
1488     /button/@name;empty control name;m
1489     /button/@type;enumerated:invalid;m
1490    
1491     #data
1492     <button xmlns="http://www.w3.org/1999/xhtml"
1493     type="add" name="x">x</button>
1494     #errors
1495     /button/@type;enumerated:invalid;m
1496    
1497     #data
1498     <button xmlns="http://www.w3.org/1999/xhtml"
1499     type="remove" name="">x</button>
1500     #errors
1501     /button/@name;empty control name;m
1502     /button/@type;enumerated:invalid;m
1503    
1504     #data
1505     <button xmlns="http://www.w3.org/1999/xhtml"
1506     type="remove" name="x">x</button>
1507     #errors
1508     /button/@type;enumerated:invalid;m
1509    
1510     #data
1511     <button xmlns="http://www.w3.org/1999/xhtml"
1512     type="move-up" name="">x</button>
1513     #errors
1514     /button/@name;empty control name;m
1515     /button/@type;enumerated:invalid;m
1516    
1517     #data
1518     <button xmlns="http://www.w3.org/1999/xhtml"
1519     type="move-up" name="x">x</button>
1520     #errors
1521     /button/@type;enumerated:invalid;m
1522    
1523     #data
1524     <button xmlns="http://www.w3.org/1999/xhtml"
1525     type="move-down" name="">x</button>
1526     #errors
1527     /button/@name;empty control name;m
1528     /button/@type;enumerated:invalid;m
1529    
1530     #data
1531     <button xmlns="http://www.w3.org/1999/xhtml"
1532     type="move-down" name="x">x</button>
1533     #errors
1534     /button/@type;enumerated:invalid;m
1535    
1536     #data
1537     <select xmlns="http://www.w3.org/1999/xhtml"
1538     name=""/>
1539     #errors
1540     /select/@name;empty control name;m
1541    
1542     #data
1543     <select xmlns="http://www.w3.org/1999/xhtml"
1544     name="x"/>
1545     #errors
1546    
1547     #data
1548     <textarea xmlns="http://www.w3.org/1999/xhtml"
1549     name=""/>
1550     #errors
1551     /textarea/@name;empty control name;m
1552    
1553     #data
1554     <textarea xmlns="http://www.w3.org/1999/xhtml"
1555     name="x"/>
1556     #errors
1557    
1558     #data
1559     <output xmlns="http://www.w3.org/1999/xhtml"
1560     name="">x</output>
1561     #errors
1562     /output/@name;empty control name;m
1563    
1564     #data
1565     <output xmlns="http://www.w3.org/1999/xhtml"
1566     name="x">x</output>
1567     #errors
1568    
1569     #data
1570     <div xmlns="http://www.w3.org/1999/xhtml">
1571     x<input autofocus=""/>
1572     <input autofocus=""/>
1573     </div>
1574     #errors
1575     /div/input/@autofocus;duplicate autofocus;m
1576    
1577     #data
1578     <div xmlns="http://www.w3.org/1999/xhtml">
1579     x<input autofocus=""/>
1580     <textarea autofocus=""/>
1581     </div>
1582     #errors
1583     /div/textarea/@autofocus;duplicate autofocus;m
1584    
1585     #data
1586     <div xmlns="http://www.w3.org/1999/xhtml">
1587     x<input autofocus=""/>
1588     <select autofocus=""/>
1589     </div>
1590     #errors
1591     /div/select/@autofocus;duplicate autofocus;m
1592    
1593     #data
1594     <div xmlns="http://www.w3.org/1999/xhtml">
1595     x<input autofocus=""/>
1596     <button autofocus="">x</button>
1597     </div>
1598     #errors
1599     /div/button/@autofocus;duplicate autofocus;m
1600    
1601     #data
1602     <div xmlns="http://www.w3.org/1999/xhtml">
1603     x<input autofocus=""/>
1604     <output autofocus="">x</output>
1605     </div>
1606     #errors
1607     /div/output/@autofocus;attribute not defined;m
1608    
1609     #data
1610     <div xmlns="http://www.w3.org/1999/xhtml">
1611     x<select autofocus=""/>
1612     <input autofocus=""/>
1613     </div>
1614     #errors
1615     /div/input/@autofocus;duplicate autofocus;m
1616    
1617     #data
1618     <div xmlns="http://www.w3.org/1999/xhtml">
1619     x<br autofocus=""/>
1620     <input autofocus=""/>
1621     </div>
1622     #errors
1623     /div/br/@autofocus;attribute not defined;m

[email protected]
ViewVC Help
Powered by ViewVC 1.1.24