[html5] r2244 - [e] (0) WF2: xref typos (used dfn instead of span)

whatwg at whatwg.org whatwg at whatwg.org
Mon Sep 29 20:18:40 PDT 2008


Author: ianh
Date: 2008-09-29 20:18:37 -0700 (Mon, 29 Sep 2008)
New Revision: 2244

Modified:
   index
   source
Log:
[e] (0) WF2: xref typos (used dfn instead of span)

Modified: index
===================================================================
--- index	2008-09-30 03:14:23 UTC (rev 2243)
+++ index	2008-09-30 03:18:37 UTC (rev 2244)
@@ -30067,7 +30067,7 @@
    href="#valid6">valid UTC date and time</a>, then set it to the empty
    string instead.
 
-  <p><strong>The <a href="#algorithm11"
+  <p><strong>The <a href="#algorithm5"
    title=concept-input-value-string-number>algorithm to convert a string to a
    number</a>, given a string <var title="">input</var></strong>, is as
    follows:
@@ -30087,7 +30087,7 @@
      ignoring leap seconds.
   </ol>
 
-  <p><strong>The <a href="#algorithm13"
+  <p><strong>The <a href="#algorithm6"
    title=concept-input-value-number-string>algorithm to convert a number to a
    string</a>, given a number <var title="">input</var></strong>, consists of
    returning a <a href="#valid6">valid UTC date and time</a> that represents
@@ -30095,7 +30095,7 @@
    afer midnight UTC on the morning of 1970-01-01 (the time represented by
    the value "<code title="">1970-01-01T00:00:00.0Z</code>").
 
-  <p><strong>The <a href="#algorithm9"
+  <p><strong>The <a href="#algorithm7"
    title=concept-input-value-string-date>algorithm to convert a string to a
    <code>Date</code> object</a>, given a string <var
    title="">input</var></strong>, is as follows:
@@ -30113,7 +30113,7 @@
      date and time.
   </ol>
 
-  <p><strong>The <a href="#algorithm10"
+  <p><strong>The <a href="#algorithm8"
    title=concept-input-value-date-string>algorithm to convert a
    <code>Date</code> object to a string</a>, given a <code>Date</code> object
    <var title="">input</var></strong>, consists of returning a <a
@@ -30541,11 +30541,11 @@
 
   <p><strong>Constraint validation:</strong> When the element has a <code
    title=attr-input-min><a href="#min2">min</a></code> attribute, and the
-   result of applying the <a href="#algorithm11"
+   result of applying the <a href="#algorithm5"
    title=concept-input-value-string-number>algorithm to convert a string to a
    number</a> to the string given by the element's <span
    title=concept-input-value>value</span> is a number, and the result of
-   applying the <a href="#algorithm11"
+   applying the <a href="#algorithm5"
    title=concept-input-value-string-number>algorithm to convert a string to a
    number</a> to the value of the <code title=attr-input-min><a
    href="#min2">min</a></code> attribute is also a number, and the number
@@ -30554,11 +30554,11 @@
 
   <p><strong>Constraint validation:</strong> When the element has a <code
    title=attr-input-max><a href="#max4">max</a></code> attribute, and the
-   result of applying the <a href="#algorithm11"
+   result of applying the <a href="#algorithm5"
    title=concept-input-value-string-number>algorithm to convert a string to a
    number</a> to the string given by the element's <span
    title=concept-input-value>value</span> is a number, and the result of
-   applying the <a href="#algorithm11"
+   applying the <a href="#algorithm5"
    title=concept-input-value-string-number>algorithm to convert a string to a
    number</a> to the value of the <code title=attr-input-max><a
    href="#max4">max</a></code> attribute is also a number, and the number
@@ -30622,7 +30622,7 @@
   </ol>
 
   <p>The <dfn id=step-base title=concept-input-min-zero>step base</dfn> is
-   the result of applying the <a href="#algorithm11"
+   the result of applying the <a href="#algorithm5"
    title=concept-input-value-string-number>algorithm to convert a string to a
    number</a> to the value of the <code title=attr-input-min><a
    href="#min2">min</a></code> attribute, unless the element does not have a
@@ -30633,7 +30633,7 @@
 
   <p><strong>Constraint validation:</strong> When the element has an <a
    href="#allowed" title=concept-input-step>allowed value step</a>, and the
-   result of applying the <a href="#algorithm11"
+   result of applying the <a href="#algorithm5"
    title=concept-input-value-string-number>algorithm to convert a string to a
    number</a> to the string given by the element's <span
    title=concept-input-value>value</span> is a number, and that number
@@ -30669,9 +30669,9 @@
    href="#valueasdate">valueAsDate</a></code> attribute does not apply, as
    defined for the <code><a href="#input0">input</a></code> element's <code
    title=attr-input-type><a href="#type14">type</a></code> attribute's
-   current state, then return null. Otherwise, run the <dfn id=algorithm9
+   current state, then return null. Otherwise, run the <a href="#algorithm7"
    title=concept-input-value-string-date>algorithm to convert a string to a
-   <code>Date</code> object</dfn> defined for that state; if the algorithm
+   <code>Date</code> object</a> defined for that state; if the algorithm
    returned a <code>Date</code> object, then return it, otherwise, return
    null.
 
@@ -30682,9 +30682,9 @@
    current state, then throw an <code>INVALID_ACCESS_ERR</code> exception;
    otherwise, if the new value is null, then set the <span
    title=concept-input-value>value</span> of the element to the empty string;
-   otherwise, run the <dfn id=algorithm10
+   otherwise, run the <a href="#algorithm8"
    title=concept-input-value-date-string>algorithm to convert a
-   <code>Date</code> object to a string</dfn>, as defined for that state, on
+   <code>Date</code> object to a string</a>, as defined for that state, on
    the new value, and set the <span title=concept-input-value>value</span> of
    the element to resulting string.
 
@@ -30700,21 +30700,20 @@
    as defined for the <code><a href="#input0">input</a></code> element's
    <code title=attr-input-type><a href="#type14">type</a></code> attribute's
    current state, then return a Not-a-Number (NaN) value. Otherwise, run the
-   <dfn id=algorithm11 title=concept-input-value-string-number>algorithm to
-   convert a string to a number</dfn> defined for that state; if the
-   algorithm returned a number, then return it, otherwise, return a
-   Not-a-Number (NaN) value.
+   <a href="#algorithm5" title=concept-input-value-string-number>algorithm to
+   convert a string to a number</a> defined for that state; if the algorithm
+   returned a number, then return it, otherwise, return a Not-a-Number (NaN)
+   value.
 
   <p>On setting, if the <code title=dom-input-valueAsNumber><a
    href="#valueasnumber">valueAsNumber</a></code> attribute does not apply,
    as defined for the <code><a href="#input0">input</a></code> element's
    <code title=attr-input-type><a href="#type14">type</a></code> attribute's
    current state, then throw an <code>INVALID_ACCESS_ERR</code> exception;
-   otherwise, run the <dfn id=algorithm12
+   otherwise, run the <a href="#algorithm6"
    title=concept-input-value-number-string>algorithm to convert a number to a
-   string</dfn>, as defined for that state, on the new value, and set the
-   <span title=concept-input-value>value</span> of the element to resulting
-   string.
+   string</a>, as defined for that state, on the new value, and set the <span
+   title=concept-input-value>value</span> of the element to resulting string.
 
   <hr>
 
@@ -30739,7 +30738,7 @@
      <code>INVALID_ACCESS_ERR</code> exception, and abort these steps.
 
    <li>
-    <p>If applying the <a href="#algorithm11"
+    <p>If applying the <a href="#algorithm5"
      title=concept-input-value-string-number>algorithm to convert a string to
      a number</a> to the string given by the element's <span
      title=concept-input-value>value</span> results in an error, then throw
@@ -30758,9 +30757,9 @@
      title="">value</var>.
 
    <li>
-    <p>Run the <dfn id=algorithm13
+    <p>Run the <a href="#algorithm6"
      title=concept-input-value-number-string>algorithm to convert a number to
-     a string</dfn>, as defined for the <code><a
+     a string</a>, as defined for the <code><a
      href="#input0">input</a></code> element's <code title=attr-input-type><a
      href="#type14">type</a></code> attribute's current state, on <var
      title="">value</var>, and set the <span

Modified: source
===================================================================
--- source	2008-09-30 03:14:23 UTC (rev 2243)
+++ source	2008-09-30 03:18:37 UTC (rev 2244)
@@ -27171,9 +27171,9 @@
   title="dom-input-valueAsDate">valueAsDate</code> attribute does not
   apply, as defined for the <code>input</code> element's <code
   title="attr-input-type">type</code> attribute's current state, then
-  return null. Otherwise, run the <dfn
+  return null. Otherwise, run the <span
   title="concept-input-value-string-date">algorithm to convert a
-  string to a <code>Date</code> object</dfn> defined for that state;
+  string to a <code>Date</code> object</span> defined for that state;
   if the algorithm returned a <code>Date</code> object, then return
   it, otherwise, return null.</p>
 
@@ -27184,9 +27184,9 @@
   throw an <code>INVALID_ACCESS_ERR</code> exception; otherwise, if
   the new value is null, then set the <span
   title="concept-input-value">value</span> of the element to the empty
-  string; otherwise, run the <dfn
+  string; otherwise, run the <span
   title="concept-input-value-date-string">algorithm to convert a
-  <code>Date</code> object to a string</dfn>, as defined for that
+  <code>Date</code> object to a string</span>, as defined for that
   state, on the new value, and set the <span
   title="concept-input-value">value</span> of the element to resulting
   string.</p>
@@ -27202,9 +27202,9 @@
   title="dom-input-valueAsNumber">valueAsNumber</code> attribute does
   not apply, as defined for the <code>input</code> element's <code
   title="attr-input-type">type</code> attribute's current state, then
-  return a Not-a-Number (NaN) value. Otherwise, run the <dfn
+  return a Not-a-Number (NaN) value. Otherwise, run the <span
   title="concept-input-value-string-number">algorithm to convert a
-  string to a number</dfn> defined for that state; if the algorithm
+  string to a number</span> defined for that state; if the algorithm
   returned a number, then return it, otherwise, return a Not-a-Number
   (NaN) value.</p>
 
@@ -27213,8 +27213,8 @@
   not apply, as defined for the <code>input</code> element's <code
   title="attr-input-type">type</code> attribute's current state, then
   throw an <code>INVALID_ACCESS_ERR</code> exception; otherwise, run
-  the <dfn title="concept-input-value-number-string">algorithm to
-  convert a number to a string</dfn>, as defined for that state, on
+  the <span title="concept-input-value-number-string">algorithm to
+  convert a number to a string</span>, as defined for that state, on
   the new value, and set the <span
   title="concept-input-value">value</span> of the element to resulting
   string.</p>
@@ -27255,9 +27255,9 @@
    <span title="concept-input-step">allowed value step</span> to <var
    title="">value</var>.</p></li>
 
-   <li><p>Run the <dfn
+   <li><p>Run the <span
    title="concept-input-value-number-string">algorithm to convert a
-   number to a string</dfn>, as defined for the <code>input</code>
+   number to a string</span>, as defined for the <code>input</code>
    element's <code title="attr-input-type">type</code> attribute's
    current state, on <var title="">value</var>, and set the <span
    title="concept-input-value">value</span> of the element to




More information about the Commit-Watchers mailing list