hixie: multiple='' examples (whatwg r3818)

hixie: multiple='' examples (whatwg r3818)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.2986&r2=1.2987&f=h
http://html5.org/tools/web-apps-tracker?from=3817&to=3818

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2986
retrieving revision 1.2987
diff -u -d -r1.2986 -r1.2987
--- Overview.html 13 Sep 2009 07:29:29 -0000 1.2986
+++ Overview.html 13 Sep 2009 07:31:48 -0000 1.2987
@@ -31000,7 +31000,21 @@
 
   </div><h6 id="the-multiple-attribute"><span class="secno">4.10.4.2.6 </span>The <code title="attr-input-multiple"><a href="#attr-input-multiple">multiple</a></code> attribute</h6><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i><p>The <dfn id="attr-input-multiple" title="attr-input-multiple"><code>multiple</code></dfn>
   attribute is a <a href="#boolean-attribute">boolean attribute</a> that indicates whether
-  the user is to be allowed to specify more than one value.<h6 id="the-maxlength-attribute"><span class="secno">4.10.4.2.7 </span>The <code title="attr-input-maxlength"><a href="#attr-input-maxlength">maxlength</a></code> attribute</h6><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i><p>The <dfn id="attr-input-maxlength" title="attr-input-maxlength"><code>maxlength</code></dfn>
+  the user is to be allowed to specify more than one value.<div class="example">
+
+   <p>The following extract shows how an e-mail client's "Cc" field
+   could accept multiple e-mail addresses.</p>
+
+   <pre>&lt;label&gt;Cc: &lt;input type=email multiple name=cc&gt;&lt;/label&gt;</pre>
+
+  </div><div class="example">
+
+   <p>The following extract shows how an e-mail client's "Attachments"
+   field could accept multiple files for upload.</p>
+
+   <pre>&lt;label&gt;Attachments: &lt;input type=file multiple name=att&gt;&lt;/label&gt;</pre>
+
+  </div><h6 id="the-maxlength-attribute"><span class="secno">4.10.4.2.7 </span>The <code title="attr-input-maxlength"><a href="#attr-input-maxlength">maxlength</a></code> attribute</h6><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i><p>The <dfn id="attr-input-maxlength" title="attr-input-maxlength"><code>maxlength</code></dfn>
   attribute<span class="impl">, when it applies,</span> is a <a href="#attr-fe-maxlength" title="attr-fe-maxlength">form control <code title="">maxlength</code> attribute</a><span class="impl">
   controlled by the <code><a href="#the-input-element">input</a></code> element's <a href="#concept-input-value-dirty-flag" title="concept-input-value-dirty-flag">dirty value
   flag</a></span>.<p>If the <code><a href="#the-input-element">input</a></code> element has a <a href="#maximum-allowed-value-length">maximum allowed

Received on Sunday, 13 September 2009 07:32:43 UTC