[html5] r7207 - [e] (0) Moving some stuff around and changing section titles in the form control [...]

whatwg at whatwg.org whatwg at whatwg.org
Thu Jul 26 11:48:20 PDT 2012


Author: ianh
Date: 2012-07-26 11:48:18 -0700 (Thu, 26 Jul 2012)
New Revision: 7207

Modified:
   complete.html
   index
   source
Log:
[e] (0) Moving some stuff around and changing section titles in the form control section to make the spec easier to read.
Affected topics: HTML

Modified: complete.html
===================================================================
--- complete.html	2012-07-26 07:21:42 UTC (rev 7206)
+++ complete.html	2012-07-26 18:48:18 UTC (rev 7207)
@@ -726,17 +726,19 @@
      <li><a href=#the-output-element><span class=secno>4.10.15 </span>The <code>output</code> element</a></li>
      <li><a href=#the-progress-element><span class=secno>4.10.16 </span>The <code>progress</code> element</a></li>
      <li><a href=#the-meter-element><span class=secno>4.10.17 </span>The <code>meter</code> element</a></li>
-     <li><a href=#association-of-controls-and-forms><span class=secno>4.10.18 </span>Association of controls and forms</a></li>
+     <li><a href=#form-control-infrastructure><span class=secno>4.10.18 </span>Form control infrastructure</a>
+      <ol>
+       <li><a href="#a-form-control's-value"><span class=secno>4.10.18.1 </span>A form control's value</a></li>
+       <li><a href=#association-of-controls-and-forms><span class=secno>4.10.18.2 </span>Association of controls and forms</a></ol></li>
      <li><a href=#attributes-common-to-form-controls><span class=secno>4.10.19 </span>Attributes common to form controls</a>
       <ol>
-       <li><a href=#naming-form-controls><span class=secno>4.10.19.1 </span>Naming form controls</a></li>
-       <li><a href=#enabling-and-disabling-form-controls><span class=secno>4.10.19.2 </span>Enabling and disabling form controls</a></li>
-       <li><a href="#a-form-control's-value"><span class=secno>4.10.19.3 </span>A form control's value</a></li>
-       <li><a href=#autofocusing-a-form-control><span class=secno>4.10.19.4 </span>Autofocusing a form control</a></li>
-       <li><a href=#limiting-user-input-length><span class=secno>4.10.19.5 </span>Limiting user input length</a></li>
-       <li><a href=#form-submission-0><span class=secno>4.10.19.6 </span>Form submission</a></li>
-       <li><a href=#submitting-element-directionality><span class=secno>4.10.19.7 </span>Submitting element directionality</a></li>
-       <li><a href=#input-modalities><span class=secno>4.10.19.8 </span>Input modalities</a></ol></li>
+       <li><a href=#naming-form-controls:-the-name-attribute><span class=secno>4.10.19.1 </span>Naming form controls: the <code title=attr-fe-name>name</code> attribute</a></li>
+       <li><a href=#enabling-and-disabling-form-controls:-the-disabled-attribute><span class=secno>4.10.19.2 </span>Enabling and disabling form controls: the <code title=attr-fe-disabled>disabled</code> attribute</a></li>
+       <li><a href=#autofocusing-a-form-control:-the-autofocus-attribute><span class=secno>4.10.19.3 </span>Autofocusing a form control: the <code title=attr-fe-autofocus>autofocus</code> attribute</a></li>
+       <li><a href=#limiting-user-input-length:-the-maxlength-attribute><span class=secno>4.10.19.4 </span>Limiting user input length: the <code title=attr-fe-maxlength>maxlength</code> attribute</a></li>
+       <li><a href=#form-submission-0><span class=secno>4.10.19.5 </span>Form submission</a></li>
+       <li><a href=#submitting-element-directionality:-the-dirname-attribute><span class=secno>4.10.19.6 </span>Submitting element directionality: the <code title="form control dirname attribute">dirname</code> attribute</a></li>
+       <li><a href=#input-modalities:-the-inputmode-attribute><span class=secno>4.10.19.7 </span>Input modalities: the <code title=attr-inputmode>inputmode</code> attribute</a></ol></li>
      <li><a href=#textFieldSelection><span class=secno>4.10.20 </span>APIs for the text field selections</a></li>
      <li><a href=#constraints><span class=secno>4.10.21 </span>Constraints</a>
       <ol>
@@ -54236,9 +54238,26 @@
 
 
 
+  <h4 id=form-control-infrastructure><span class=secno>4.10.18 </span>Form control infrastructure</h4>
 
-  <h4 id=association-of-controls-and-forms><span class=secno>4.10.18 </span>Association of controls and forms</h4>
+  <div class=impl>
 
+  <h5 id="a-form-control's-value"><span class=secno>4.10.18.1 </span>A form control's value</h5>
+
+  <p>Form controls have a <dfn id=concept-fe-value title=concept-fe-value>value</dfn>
+  and a <dfn id=concept-fe-checked title=concept-fe-checked>checkedness</dfn>. (The latter
+  is only used by <code><a href=#the-input-element>input</a></code> elements.) These are used to
+  describe how the user interacts with the control.</p>
+
+  <p>To define the behaviour of constraint validation in the face of
+  the <code><a href=#the-input-element>input</a></code> element's <code title=attr-input-multiple><a href=#attr-input-multiple>multiple</a></code> attribute,
+  <code><a href=#the-input-element>input</a></code> elements can also have separately defined <dfn id=concept-fe-values title=concept-fe-values>value<em>s</em></dfn>.</p>
+
+  </div>
+
+
+  <h5 id=association-of-controls-and-forms><span class=secno>4.10.18.2 </span>Association of controls and forms</h5>
+
   <p>A <a href=#form-associated-element>form-associated element</a> can have a relationship
   with a <code><a href=#the-form-element>form</a></code> element, which is called the element's
   <dfn id=form-owner>form owner</dfn>. If a <a href=#form-associated-element>form-associated element</a> is
@@ -54403,7 +54422,7 @@
 
   <h4 id=attributes-common-to-form-controls><span class=secno>4.10.19 </span><dfn>Attributes common to form controls</dfn></h4>
 
-  <h5 id=naming-form-controls><span class=secno>4.10.19.1 </span>Naming form controls</h5>
+  <h5 id=naming-form-controls:-the-name-attribute><span class=secno>4.10.19.1 </span>Naming form controls: the <code title=attr-fe-name><a href=#attr-fe-name>name</a></code> attribute</h5>
 
   <p>The <dfn id=attr-fe-name title=attr-fe-name><code>name</code></dfn> content
   attribute gives the name of the form control, as used in <a href=#form-submission>form
@@ -54436,7 +54455,7 @@
   </div>
 
 
-  <h5 id=enabling-and-disabling-form-controls><span class=secno>4.10.19.2 </span>Enabling and disabling form controls</h5>
+  <h5 id=enabling-and-disabling-form-controls:-the-disabled-attribute><span class=secno>4.10.19.2 </span>Enabling and disabling form controls: the <code title=attr-fe-disabled><a href=#attr-fe-disabled>disabled</a></code> attribute</h5>
 
   <p>The <dfn id=attr-fe-disabled title=attr-fe-disabled><code>disabled</code></dfn>
   content attribute is a <a href=#boolean-attribute>boolean attribute</a>.</p>
@@ -54464,24 +54483,8 @@
   </div>
 
 
-  <div class=impl>
+  <h5 id=autofocusing-a-form-control:-the-autofocus-attribute><span class=secno>4.10.19.3 </span>Autofocusing a form control: the <code title=attr-fe-autofocus><a href=#attr-fe-autofocus>autofocus</a></code> attribute</h5>
 
-  <h5 id="a-form-control's-value"><span class=secno>4.10.19.3 </span>A form control's value</h5>
-
-  <p>Form controls have a <dfn id=concept-fe-value title=concept-fe-value>value</dfn>
-  and a <dfn id=concept-fe-checked title=concept-fe-checked>checkedness</dfn>. (The latter
-  is only used by <code><a href=#the-input-element>input</a></code> elements.) These are used to
-  describe how the user interacts with the control.</p>
-
-  <p>To define the behaviour of constraint validation in the face of
-  the <code><a href=#the-input-element>input</a></code> element's <code title=attr-input-multiple><a href=#attr-input-multiple>multiple</a></code> attribute,
-  <code><a href=#the-input-element>input</a></code> elements can also have separately defined <dfn id=concept-fe-values title=concept-fe-values>value<em>s</em></dfn>.</p>
-
-  </div>
-
-
-  <h5 id=autofocusing-a-form-control><span class=secno>4.10.19.4 </span>Autofocusing a form control</h5>
-
   <!-- v2: Apply this to contentEditable elements -->
 
   <p>The <dfn id=attr-fe-autofocus title=attr-fe-autofocus><code>autofocus</code></dfn>
@@ -54564,7 +54567,7 @@
   </div>
 
 
-  <h5 id=limiting-user-input-length><span class=secno>4.10.19.5 </span>Limiting user input length</h5>
+  <h5 id=limiting-user-input-length:-the-maxlength-attribute><span class=secno>4.10.19.4 </span>Limiting user input length: the <code title=attr-fe-maxlength><a href=#attr-fe-maxlength>maxlength</a></code> attribute</h5>
 
   <p>A <dfn id=attr-fe-maxlength title=attr-fe-maxlength>form control <code title="">maxlength</code> attribute</dfn>, controlled by a <var title="">dirty value flag</var>, declares a limit on the number of
   characters a user can input.</p>
@@ -54597,7 +54600,7 @@
 
 
 
-  <h5 id=form-submission-0><span class=secno>4.10.19.6 </span>Form submission</h5>
+  <h5 id=form-submission-0><span class=secno>4.10.19.5 </span>Form submission</h5>
 
   <p><dfn id=attributes-for-form-submission>Attributes for form submission</dfn> can be specified both
   on <code><a href=#the-form-element>form</a></code> elements and on <a href=#concept-submit-button title=concept-submit-button>submit buttons</a> (elements that
@@ -54756,7 +54759,7 @@
   </div>
 
 
-  <h5 id=submitting-element-directionality><span class=secno>4.10.19.7 </span>Submitting element directionality</h5>
+  <h5 id=submitting-element-directionality:-the-dirname-attribute><span class=secno>4.10.19.6 </span>Submitting element directionality: the <code title="form control dirname attribute"><a href=#form-control-dirname-attribute>dirname</a></code> attribute</h5>
 
   <p>A <dfn id=form-control-dirname-attribute>form control <code title="">dirname</code> attribute</dfn>
   on a form control element enables the submission of <a href=#the-directionality>the
@@ -54767,8 +54770,10 @@
 
 
 
-  <h5 id=input-modalities><span class=secno>4.10.19.8 </span>Input modalities</h5>
+  <h5 id=input-modalities:-the-inputmode-attribute><span class=secno>4.10.19.7 </span>Input modalities: the <code title=attr-inputmode><a href=#attr-inputmode>inputmode</a></code> attribute</h5>
 
+  <!-- v2: Apply this to contentEditable elements -->
+
   <p>A <dfn id=attr-inputmode title=attr-inputmode>form control <code title="">inputmode</code> attribute</dfn> on a form control element
   is an <a href=#enumerated-attribute>enumerated attribute</a> that specifies what kind of
   input mechanism would be most helpful for users entering content

Modified: index
===================================================================
--- index	2012-07-26 07:21:42 UTC (rev 7206)
+++ index	2012-07-26 18:48:18 UTC (rev 7207)
@@ -726,17 +726,19 @@
      <li><a href=#the-output-element><span class=secno>4.10.15 </span>The <code>output</code> element</a></li>
      <li><a href=#the-progress-element><span class=secno>4.10.16 </span>The <code>progress</code> element</a></li>
      <li><a href=#the-meter-element><span class=secno>4.10.17 </span>The <code>meter</code> element</a></li>
-     <li><a href=#association-of-controls-and-forms><span class=secno>4.10.18 </span>Association of controls and forms</a></li>
+     <li><a href=#form-control-infrastructure><span class=secno>4.10.18 </span>Form control infrastructure</a>
+      <ol>
+       <li><a href="#a-form-control's-value"><span class=secno>4.10.18.1 </span>A form control's value</a></li>
+       <li><a href=#association-of-controls-and-forms><span class=secno>4.10.18.2 </span>Association of controls and forms</a></ol></li>
      <li><a href=#attributes-common-to-form-controls><span class=secno>4.10.19 </span>Attributes common to form controls</a>
       <ol>
-       <li><a href=#naming-form-controls><span class=secno>4.10.19.1 </span>Naming form controls</a></li>
-       <li><a href=#enabling-and-disabling-form-controls><span class=secno>4.10.19.2 </span>Enabling and disabling form controls</a></li>
-       <li><a href="#a-form-control's-value"><span class=secno>4.10.19.3 </span>A form control's value</a></li>
-       <li><a href=#autofocusing-a-form-control><span class=secno>4.10.19.4 </span>Autofocusing a form control</a></li>
-       <li><a href=#limiting-user-input-length><span class=secno>4.10.19.5 </span>Limiting user input length</a></li>
-       <li><a href=#form-submission-0><span class=secno>4.10.19.6 </span>Form submission</a></li>
-       <li><a href=#submitting-element-directionality><span class=secno>4.10.19.7 </span>Submitting element directionality</a></li>
-       <li><a href=#input-modalities><span class=secno>4.10.19.8 </span>Input modalities</a></ol></li>
+       <li><a href=#naming-form-controls:-the-name-attribute><span class=secno>4.10.19.1 </span>Naming form controls: the <code title=attr-fe-name>name</code> attribute</a></li>
+       <li><a href=#enabling-and-disabling-form-controls:-the-disabled-attribute><span class=secno>4.10.19.2 </span>Enabling and disabling form controls: the <code title=attr-fe-disabled>disabled</code> attribute</a></li>
+       <li><a href=#autofocusing-a-form-control:-the-autofocus-attribute><span class=secno>4.10.19.3 </span>Autofocusing a form control: the <code title=attr-fe-autofocus>autofocus</code> attribute</a></li>
+       <li><a href=#limiting-user-input-length:-the-maxlength-attribute><span class=secno>4.10.19.4 </span>Limiting user input length: the <code title=attr-fe-maxlength>maxlength</code> attribute</a></li>
+       <li><a href=#form-submission-0><span class=secno>4.10.19.5 </span>Form submission</a></li>
+       <li><a href=#submitting-element-directionality:-the-dirname-attribute><span class=secno>4.10.19.6 </span>Submitting element directionality: the <code title="form control dirname attribute">dirname</code> attribute</a></li>
+       <li><a href=#input-modalities:-the-inputmode-attribute><span class=secno>4.10.19.7 </span>Input modalities: the <code title=attr-inputmode>inputmode</code> attribute</a></ol></li>
      <li><a href=#textFieldSelection><span class=secno>4.10.20 </span>APIs for the text field selections</a></li>
      <li><a href=#constraints><span class=secno>4.10.21 </span>Constraints</a>
       <ol>
@@ -54236,9 +54238,26 @@
 
 
 
+  <h4 id=form-control-infrastructure><span class=secno>4.10.18 </span>Form control infrastructure</h4>
 
-  <h4 id=association-of-controls-and-forms><span class=secno>4.10.18 </span>Association of controls and forms</h4>
+  <div class=impl>
 
+  <h5 id="a-form-control's-value"><span class=secno>4.10.18.1 </span>A form control's value</h5>
+
+  <p>Form controls have a <dfn id=concept-fe-value title=concept-fe-value>value</dfn>
+  and a <dfn id=concept-fe-checked title=concept-fe-checked>checkedness</dfn>. (The latter
+  is only used by <code><a href=#the-input-element>input</a></code> elements.) These are used to
+  describe how the user interacts with the control.</p>
+
+  <p>To define the behaviour of constraint validation in the face of
+  the <code><a href=#the-input-element>input</a></code> element's <code title=attr-input-multiple><a href=#attr-input-multiple>multiple</a></code> attribute,
+  <code><a href=#the-input-element>input</a></code> elements can also have separately defined <dfn id=concept-fe-values title=concept-fe-values>value<em>s</em></dfn>.</p>
+
+  </div>
+
+
+  <h5 id=association-of-controls-and-forms><span class=secno>4.10.18.2 </span>Association of controls and forms</h5>
+
   <p>A <a href=#form-associated-element>form-associated element</a> can have a relationship
   with a <code><a href=#the-form-element>form</a></code> element, which is called the element's
   <dfn id=form-owner>form owner</dfn>. If a <a href=#form-associated-element>form-associated element</a> is
@@ -54403,7 +54422,7 @@
 
   <h4 id=attributes-common-to-form-controls><span class=secno>4.10.19 </span><dfn>Attributes common to form controls</dfn></h4>
 
-  <h5 id=naming-form-controls><span class=secno>4.10.19.1 </span>Naming form controls</h5>
+  <h5 id=naming-form-controls:-the-name-attribute><span class=secno>4.10.19.1 </span>Naming form controls: the <code title=attr-fe-name><a href=#attr-fe-name>name</a></code> attribute</h5>
 
   <p>The <dfn id=attr-fe-name title=attr-fe-name><code>name</code></dfn> content
   attribute gives the name of the form control, as used in <a href=#form-submission>form
@@ -54436,7 +54455,7 @@
   </div>
 
 
-  <h5 id=enabling-and-disabling-form-controls><span class=secno>4.10.19.2 </span>Enabling and disabling form controls</h5>
+  <h5 id=enabling-and-disabling-form-controls:-the-disabled-attribute><span class=secno>4.10.19.2 </span>Enabling and disabling form controls: the <code title=attr-fe-disabled><a href=#attr-fe-disabled>disabled</a></code> attribute</h5>
 
   <p>The <dfn id=attr-fe-disabled title=attr-fe-disabled><code>disabled</code></dfn>
   content attribute is a <a href=#boolean-attribute>boolean attribute</a>.</p>
@@ -54464,24 +54483,8 @@
   </div>
 
 
-  <div class=impl>
+  <h5 id=autofocusing-a-form-control:-the-autofocus-attribute><span class=secno>4.10.19.3 </span>Autofocusing a form control: the <code title=attr-fe-autofocus><a href=#attr-fe-autofocus>autofocus</a></code> attribute</h5>
 
-  <h5 id="a-form-control's-value"><span class=secno>4.10.19.3 </span>A form control's value</h5>
-
-  <p>Form controls have a <dfn id=concept-fe-value title=concept-fe-value>value</dfn>
-  and a <dfn id=concept-fe-checked title=concept-fe-checked>checkedness</dfn>. (The latter
-  is only used by <code><a href=#the-input-element>input</a></code> elements.) These are used to
-  describe how the user interacts with the control.</p>
-
-  <p>To define the behaviour of constraint validation in the face of
-  the <code><a href=#the-input-element>input</a></code> element's <code title=attr-input-multiple><a href=#attr-input-multiple>multiple</a></code> attribute,
-  <code><a href=#the-input-element>input</a></code> elements can also have separately defined <dfn id=concept-fe-values title=concept-fe-values>value<em>s</em></dfn>.</p>
-
-  </div>
-
-
-  <h5 id=autofocusing-a-form-control><span class=secno>4.10.19.4 </span>Autofocusing a form control</h5>
-
   <!-- v2: Apply this to contentEditable elements -->
 
   <p>The <dfn id=attr-fe-autofocus title=attr-fe-autofocus><code>autofocus</code></dfn>
@@ -54564,7 +54567,7 @@
   </div>
 
 
-  <h5 id=limiting-user-input-length><span class=secno>4.10.19.5 </span>Limiting user input length</h5>
+  <h5 id=limiting-user-input-length:-the-maxlength-attribute><span class=secno>4.10.19.4 </span>Limiting user input length: the <code title=attr-fe-maxlength><a href=#attr-fe-maxlength>maxlength</a></code> attribute</h5>
 
   <p>A <dfn id=attr-fe-maxlength title=attr-fe-maxlength>form control <code title="">maxlength</code> attribute</dfn>, controlled by a <var title="">dirty value flag</var>, declares a limit on the number of
   characters a user can input.</p>
@@ -54597,7 +54600,7 @@
 
 
 
-  <h5 id=form-submission-0><span class=secno>4.10.19.6 </span>Form submission</h5>
+  <h5 id=form-submission-0><span class=secno>4.10.19.5 </span>Form submission</h5>
 
   <p><dfn id=attributes-for-form-submission>Attributes for form submission</dfn> can be specified both
   on <code><a href=#the-form-element>form</a></code> elements and on <a href=#concept-submit-button title=concept-submit-button>submit buttons</a> (elements that
@@ -54756,7 +54759,7 @@
   </div>
 
 
-  <h5 id=submitting-element-directionality><span class=secno>4.10.19.7 </span>Submitting element directionality</h5>
+  <h5 id=submitting-element-directionality:-the-dirname-attribute><span class=secno>4.10.19.6 </span>Submitting element directionality: the <code title="form control dirname attribute"><a href=#form-control-dirname-attribute>dirname</a></code> attribute</h5>
 
   <p>A <dfn id=form-control-dirname-attribute>form control <code title="">dirname</code> attribute</dfn>
   on a form control element enables the submission of <a href=#the-directionality>the
@@ -54767,8 +54770,10 @@
 
 
 
-  <h5 id=input-modalities><span class=secno>4.10.19.8 </span>Input modalities</h5>
+  <h5 id=input-modalities:-the-inputmode-attribute><span class=secno>4.10.19.7 </span>Input modalities: the <code title=attr-inputmode><a href=#attr-inputmode>inputmode</a></code> attribute</h5>
 
+  <!-- v2: Apply this to contentEditable elements -->
+
   <p>A <dfn id=attr-inputmode title=attr-inputmode>form control <code title="">inputmode</code> attribute</dfn> on a form control element
   is an <a href=#enumerated-attribute>enumerated attribute</a> that specifies what kind of
   input mechanism would be most helpful for users entering content

Modified: source
===================================================================
--- source	2012-07-26 07:21:42 UTC (rev 7206)
+++ source	2012-07-26 18:48:18 UTC (rev 7207)
@@ -63278,9 +63278,28 @@
 
 
 
+  <h4>Form control infrastructure</h4>
 
-  <h4>Association of controls and forms</h4>
+  <div class="impl">
 
+  <h5>A form control's value</h5>
+
+  <p>Form controls have a <dfn title="concept-fe-value">value</dfn>
+  and a <dfn title="concept-fe-checked">checkedness</dfn>. (The latter
+  is only used by <code>input</code> elements.) These are used to
+  describe how the user interacts with the control.</p>
+
+  <p>To define the behaviour of constraint validation in the face of
+  the <code>input</code> element's <code
+  title="attr-input-multiple">multiple</code> attribute,
+  <code>input</code> elements can also have separately defined <dfn
+  title="concept-fe-values">value<em>s</em></dfn>.</p>
+
+  </div>
+
+
+  <h5>Association of controls and forms</h5>
+
   <p>A <span>form-associated element</span> can have a relationship
   with a <code>form</code> element, which is called the element's
   <dfn>form owner</dfn>. If a <span>form-associated element</span> is
@@ -63470,7 +63489,7 @@
 
   <h4><dfn>Attributes common to form controls</dfn></h4>
 
-  <h5>Naming form controls</h5>
+  <h5>Naming form controls: the <code title="attr-fe-name">name</code> attribute</h5>
 
   <p>The <dfn title="attr-fe-name"><code>name</code></dfn> content
   attribute gives the name of the form control, as used in <span>form
@@ -63515,7 +63534,7 @@
   </div>
 
 
-  <h5>Enabling and disabling form controls</h5>
+  <h5>Enabling and disabling form controls: the <code title="attr-fe-disabled">disabled</code> attribute</h5>
 
   <p>The <dfn title="attr-fe-disabled"><code>disabled</code></dfn>
   content attribute is a <span>boolean attribute</span>.</p>
@@ -63547,26 +63566,8 @@
   </div>
 
 
-  <div class="impl">
+  <h5>Autofocusing a form control: the <code title="attr-fe-autofocus">autofocus</code> attribute</h5>
 
-  <h5>A form control's value</h5>
-
-  <p>Form controls have a <dfn title="concept-fe-value">value</dfn>
-  and a <dfn title="concept-fe-checked">checkedness</dfn>. (The latter
-  is only used by <code>input</code> elements.) These are used to
-  describe how the user interacts with the control.</p>
-
-  <p>To define the behaviour of constraint validation in the face of
-  the <code>input</code> element's <code
-  title="attr-input-multiple">multiple</code> attribute,
-  <code>input</code> elements can also have separately defined <dfn
-  title="concept-fe-values">value<em>s</em></dfn>.</p>
-
-  </div>
-
-
-  <h5>Autofocusing a form control</h5>
-
   <!-- v2: Apply this to contentEditable elements -->
 
   <p>The <dfn title="attr-fe-autofocus"><code>autofocus</code></dfn>
@@ -63656,7 +63657,7 @@
   </div>
 
 
-  <h5>Limiting user input length</h5>
+  <h5>Limiting user input length: the <code title="attr-fe-maxlength">maxlength</code> attribute</h5>
 
   <p>A <dfn title="attr-fe-maxlength">form control <code
   title="">maxlength</code> attribute</dfn>, controlled by a <var
@@ -63913,7 +63914,7 @@
   </div>
 
 
-  <h5>Submitting element directionality</h5>
+  <h5>Submitting element directionality: the <code title="form control dirname attribute">dirname</code> attribute</h5>
 
   <p>A <dfn>form control <code title="">dirname</code> attribute</dfn>
   on a form control element enables the submission of <span>the
@@ -63924,8 +63925,10 @@
 
 
 
-  <h5>Input modalities</h5>
+  <h5>Input modalities: the <code title="attr-inputmode">inputmode</code> attribute</h5>
 
+  <!-- v2: Apply this to contentEditable elements -->
+
   <p>A <dfn title="attr-inputmode">form control <code
   title="">inputmode</code> attribute</dfn> on a form control element
   is an <span>enumerated attribute</span> that specifies what kind of




More information about the Commit-Watchers mailing list