html5/markup/elements form.html,1.3,1.4

Update of /sources/public/html5/markup/elements
In directory hutz:/tmp/cvs-serv5671/elements

Modified Files:
	form.html 
Log Message:
filled in a few more missing attribute descriptions


Index: form.html
===================================================================
RCS file: /sources/public/html5/markup/elements/form.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- form.html	13 Feb 2009 12:07:29 -0000	1.3
+++ form.html	1 Aug 2009 19:52:08 -0000	1.4
@@ -11,5 +11,37 @@
       <dd>Specifies the character encodings used for form
         submission.</dd>
     </dl>
+    <dl>
+      <dt id="form.attrs.action">action</dt>
+      <dd>The submission action for the form.</dd>
+    </dl>
+    <dl>
+      <dt id="form.attrs.enctype">enctype</dt>
+      <dd>A MIME type with which a UA is meant to associate the
+        form contents for form submission.</dd>
+    </dl>
+    <dl>
+      <dt id="form.attrs.target">target</dt>
+      <dd>A browsing context or keyword that represents the target
+        of the form.</dd>
+    </dl>
+    <dl>
+      <dt id="form.attrs.autocomplete">autocomplete</dt>
+      <dd>Specifies whether the element represents a form for
+        which by default a UA is meant to store the values entered
+        into its <a href="#input" class="element">input</a>
+        elements by the user (so that the UA can prefill the form
+        later).</dd>
+    </dl>
+    <dl>
+      <dt id="form.attrs.novalidate">novalidate</dt>
+      <dd>Specifies that the element represents a form that is not
+        meant to be validated during form submission.</dd>
+    </dl>
+    <dl>
+      <dt id="form.attrs.method">method</dt>
+      <dd>The HTTP method with which a UA is meant to associate
+        this element for form submission.</dd>
+    </dl>
   </div>
 </div>

Received on Saturday, 1 August 2009 19:52:18 UTC