html5/markup/src attributes.html,1.5,1.6

Update of /sources/public/html5/markup/src
In directory hutz:/tmp/cvs-serv28460/src

Modified Files:
	attributes.html 
Log Message:
added missing descriptions for common/shared forms attributes


Index: attributes.html
===================================================================
RCS file: /sources/public/html5/markup/src/attributes.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- attributes.html	1 Aug 2009 10:44:34 -0000	1.5
+++ attributes.html	1 Aug 2009 16:46:55 -0000	1.6
@@ -109,4 +109,120 @@
         <a href="#syntax-document-html">documents in the HTML syntax</a>.</dd>
     </dl>
   </div>
+  <!-- * ===================  forms attributes =================== -->
+  <div id="form-attrs">
+    <dl>
+      <dt id="input.attrs.autocomplete">autocomplete</dt>
+      <dd>Specifies whether the element represents an input
+        control for which a UA is meant to store the value entered
+        by the user (so that the UA can prefill the form
+        later).</dd>
+    </dl>
+    <dl>
+      <dt id="shared-form.attrs.autofocus">autofocus</dt>
+      <dd>Specifies that the element represents a control to which
+        a UA is meant to give focus as soon as the document is
+        loaded.</dd>
+    </dl>
+    <dl>
+      <dt id="input.attrs.checked">checked</dt>
+      <dd>Specifies that the element represents a selected
+        control.</dd>
+    </dl>
+    <dl>
+      <dt id="common-form.attrs.disabled">disabled</dt>
+      <dd>Specifies that the element represents a disabled
+        control.</dd>
+    </dl>
+    <dl>
+      <dt id="common-form.attrs.form">form</dt>
+      <dd>A
+        <a href="#form" class="form">form</a>
+        with which to associate the element.</dd>
+    </dl>
+    <dl>
+      <dt id="shared-form.attrs.formaction">formaction</dt>
+      <dd>The action for the element.</dd>
+    </dl>
+    <dl>
+      <dt id="shared-form.attrs.formenctype">formenctype</dt>
+      <dd>A MIME type with which a UA is meant to associate this
+        element for form submission.</dd>
+    </dl>
+    <dl>
+      <dt id="shared-form.attrs.formmethod">formmethod</dt>
+      <dd>The HTTP method which a UA is meant to associate this
+        element for form submission.</dd>
+    </dl>
+    <dl>
+      <dt id="shared-form.attrs.formnovalidate">formnovalidate</dt>
+      <dd>Specifies that the element represents a control whose
+        value is not meant to be validated during form
+        submission.</dd>
+    </dl>
+    <dl>
+      <dt id="shared-form.attrs.formtarget">formtarget</dt>
+      <dd>A
+        <a
+          href="#common.data.browsing-context-or-keyword"
+          >browsing context or keyword</a>
+        that represents the target of the control.</dd>
+    </dl>
+    <dl>
+      <dt id="input.attrs.list">list</dt>
+      <dd>Specifies a
+        <a href="#datalist" class="element">datalist</a>
+        with which to associate the element.</dd>
+    </dl>
+    <dl>
+      <dt id="shared-form.attrs.maxlength">maxlength</dt>
+      <dd>The maximum allowed value length of the element.</dd>
+    </dl>
+    <dl>
+      <dt id="input.attrs.multiple">multiple</dt>
+      <dd>Specifies that the element allows multiple values.</dd>
+    </dl>
+    <dl>
+      <dt id="common-form.attrs.name">name</dt>
+      <dd>The name part of the name/value pair associated with this
+        element for the purposes of form submission.</dd>
+    </dl>
+    <dl>
+      <dt id="shared-form.attrs.pattern">pattern</dt>
+      <dd>Specifies a regular expression against which a UA is
+        meant to check the value of the control represented by its
+        element.</dd>
+    </dl>
+    <dl>
+      <dt id="shared-form.attrs.placeholder">placeholder</dt>
+      <dd>A short hint (one word or a short phrase) intended to
+        aid the user when entering data into the control
+        represented by its element.</dd>
+    </dl>
+    <dl>
+      <dt id="shared-form.attrs.readonly">readonly</dt>
+      <dd>Specifies that element represents a control whose value
+        is not meant to be edited.</dd>
+    </dl>
+    <dl>
+      <dt id="shared-form.attrs.required">required</dt>
+      <dd>Specifies that the element is a required part of form
+      submission.</dd>
+    </dl>
+    <dl>
+      <dt id="shared-form.attrs.size">size</dt>
+      <dd>The number of options meant to be shown by the control
+        represented by its element.</dd>
+    </dl>
+    <dl>
+      <dt id="input.attrs.step.float">step</dt>
+      <dd>Specifies the value granularity of the element’s
+        value.</dd>
+    </dl>
+    <dl>
+      <dt id="input.attrs.step.integer">step</dt>
+      <dd>Specifies the value granularity of the element’s
+        value.</dd>
+    </dl>
+  </div>
 </section>

Received on Saturday, 1 August 2009 16:47:07 UTC