- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 30 Sep 2008 03:18:50 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv6786
Modified Files:
Overview.html
Log Message:
WF2: xref typos (used dfn instead of span) (whatwg r2244)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.1416
retrieving revision 1.1417
diff -u -d -r1.1416 -r1.1417
--- Overview.html 30 Sep 2008 03:14:34 -0000 1.1416
+++ Overview.html 30 Sep 2008 03:18:47 -0000 1.1417
@@ -30074,7 +30074,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:
@@ -30094,7 +30094,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
@@ -30102,7 +30102,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:
@@ -30120,7 +30120,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
@@ -30548,11 +30548,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
@@ -30561,11 +30561,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
@@ -30629,7 +30629,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
@@ -30640,7 +30640,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
@@ -30676,9 +30676,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.
@@ -30689,9 +30689,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.
@@ -30707,21 +30707,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>
@@ -30746,7 +30745,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
@@ -30765,9 +30764,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
Received on Tuesday, 30 September 2008 03:19:25 UTC