hixie: simplification (whatwg r5375)

hixie: simplification (whatwg r5375)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.4289&r2=1.4290&f=h
http://html5.org/tools/web-apps-tracker?from=5374&to=5375

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4289
retrieving revision 1.4290
diff -u -d -r1.4289 -r1.4290
--- Overview.html 27 Aug 2010 20:35:11 -0000 1.4289
+++ Overview.html 27 Aug 2010 21:10:09 -0000 1.4290
@@ -28520,8 +28520,7 @@
   <code title="dom-input-stepDown"><a href="#dom-input-stepdown">stepDown()</a></code>, and
   <code title="dom-input-stepUp"><a href="#dom-input-stepup">stepUp()</a></code>.</p>
 
-  <p>Each <code><a href="#the-input-element">input</a></code> element has a boolean <dfn id="concept-input-value-dirty-flag" title="concept-input-value-dirty-flag">dirty value flag</dfn>. When
-  it is true, the element is said to have a <dfn id="concept-input-value-dirty" title="concept-input-value-dirty"><i>dirty value</i></dfn>. The
+  <p>Each <code><a href="#the-input-element">input</a></code> element has a boolean <dfn id="concept-input-value-dirty-flag" title="concept-input-value-dirty-flag">dirty value flag</dfn>. The
   <a href="#concept-input-value-dirty-flag" title="concept-input-value-dirty-flag">dirty value flag</a>
   must be initially set to false when the element is created, and must
   be set to true whenever the user interacts with the control in a way
@@ -28530,11 +28529,11 @@
   </div><p>The <dfn id="attr-input-value" title="attr-input-value"><code>value</code></dfn>
   content attribute gives the default <a href="#concept-fe-value" title="concept-fe-value">value</a> of the <code><a href="#the-input-element">input</a></code>
   element. <span class="impl">When the <code title="attr-input-value"><a href="#attr-input-value">value</a></code> content attribute is added,
-  set, or removed, if the control does not have a <i title="concept-input-value-dirty"><a href="#concept-input-value-dirty">dirty value</a></i>, the user agent
-  must set the <a href="#concept-fe-value" title="concept-fe-value">value</a> of the
-  element to the value of the <code title="attr-input-value"><a href="#attr-input-value">value</a></code> content attribute, if there is
-  one, or the empty string otherwise, and then run the current
-  <a href="#value-sanitization-algorithm">value sanitization algorithm</a>, if one is
+  set, or removed, if the control's <a href="#concept-input-value-dirty-flag" title="concept-input-value-dirty-flag">dirty value flag</a> is
+  true, the user agent must set the <a href="#concept-fe-value" title="concept-fe-value">value</a> of the element to the value of
+  the <code title="attr-input-value"><a href="#attr-input-value">value</a></code> content attribute,
+  if there is one, or the empty string otherwise, and then run the
+  current <a href="#value-sanitization-algorithm">value sanitization algorithm</a>, if one is
   defined.</span><div class="impl">
 
   <p>Each <code><a href="#the-input-element">input</a></code> element has a <a href="#concept-fe-checked" title="concept-fe-checked">checkedness</a>, which is exposed by

Received on Friday, 27 August 2010 21:10:50 UTC