- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 30 Sep 2008 04:37:28 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv14471 Modified Files: Overview.html Log Message: simplify the prose a bit, to not have unnecessary lists (type=datetime) (whatwg r2248) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1420 retrieving revision 1.1421 diff -u -d -r1.1420 -r1.1421 --- Overview.html 30 Sep 2008 04:11:02 -0000 1.1420 +++ Overview.html 30 Sep 2008 04:37:26 -0000 1.1421 @@ -30095,27 +30095,16 @@ which the element would not <a href="#suffering3" title="suffering from a step mismatch">suffer from a step mismatch</a>. - <hr> - <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>, is as - follows:</strong> - - <ol> - <li> - <p><a href="#parse0">Parse a UTC date and time</a> from <var - title="">input</var>. - - <li> - <p>If that results in an error, return an error and abort these steps. - - <li> - <p>Otherwise, return the number of milliseconds elapsed from midnight UTC - on the morning of 1970-01-01 (the time represented by the value "<code - title="">1970-01-01T00:00:00.0Z</code>") to the parsed date and time, - ignoring leap seconds. - </ol> + follows:</strong> If <a href="#parse0" title="parse a UTC date and + time">parsing a UTC date and time</a> from <var title="">input</var> + results in an error, then return an error; otherwise, return the number of + milliseconds elapsed from midnight UTC on the morning of 1970-01-01 (the + time represented by the value "<code + title="">1970-01-01T00:00:00.0Z</code>") to the parsed date and time, + ignoring leap seconds. <p><strong>The <a href="#algorithm6" title=concept-input-value-number-string>algorithm to convert a number to a @@ -30128,20 +30117,10 @@ <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>, is - as follows:</strong> - - <ol> - <li> - <p><a href="#parse0">Parse a UTC date and time</a> from <var - title="">input</var>. - - <li> - <p>If that results in an error, return an error and abort these steps. - - <li> - <p>Otherwise, return a <code>Date</code> object representing the parsed - date and time. - </ol> + as follows:</strong> If <a href="#parse0" title="parse a UTC date and + time">parsing a UTC date and time</a> from <var title="">input</var> + results in an error, then return an error; otherwise, return a + <code>Date</code> object representing the parsed date and time. <p><strong>The <a href="#algorithm8" title=concept-input-value-date-string>algorithm to convert a @@ -30150,8 +30129,6 @@ href="#valid6">valid UTC date and time</a> that represents the date and time in UTC that is represented by <var title="">input</var>. - <hr> - <p>The following common <code><a href="#input0">input</a></code> element content attributes, DOM attributes, and methods apply to the element: <code title=attr-input-autocomplete><a
Received on Tuesday, 30 September 2008 04:38:04 UTC