- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 14 Jul 2009 05:24:10 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv20222 Modified Files: Overview.html Log Message: Correct a logic error in the algorithm for parsing a vague date or time. (whatwg r3404) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.2533 retrieving revision 1.2534 diff -u -d -r1.2533 -r1.2534 --- Overview.html 14 Jul 2009 05:00:08 -0000 1.2533 +++ Overview.html 14 Jul 2009 05:24:06 -0000 1.2534 @@ -3582,8 +3582,7 @@ <li><p>If both the <var title="">date present</var> and <var title="">time present</var> flags are false, then fail.</li> - <li><p>If the <var title="">time present</var> flag is true, but - <var title="">position</var> is beyond the end of <var title="">input</var>, then fail.</li> + <li><p>If the <var title="">date present</var> and <var title="">time present</var> flags are both true, but <var title="">position</var> is beyond the end of <var title="">input</var>, then fail.</li> <li><p>If the <var title="">date present</var> and <var title="">time present</var> flags are both true, <a href="#parse-a-time-zone-component">parse a time-zone component</a> to obtain <var title="">timezone<sub title="">hours</sub></var> and <var title="">timezone<sub title="">minutes</sub></var>. If this returns nothing, then
Received on Tuesday, 14 July 2009 05:24:20 UTC