- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 23 Oct 2009 06:22:23 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv25985 Modified Files: Overview.html Log Message: Correct the parsing rules for integers. (whatwg r4297) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.3432 retrieving revision 1.3433 diff -u -d -r1.3432 -r1.3433 --- Overview.html 23 Oct 2009 06:19:11 -0000 1.3432 +++ Overview.html 23 Oct 2009 06:22:19 -0000 1.3433 @@ -2388,11 +2388,15 @@ <li>If <var title="">position</var> is past the end of <var title="">input</var>, return an error.</li> </ol><p>Otherwise, if the character indicated by <var title="">position</var> (the first character) is a U+002B PLUS - SIGN character (+), then advance <var title="">position</var> to - the next character. (The "<code title="">+</code>" is ignored, but - it is not conforming.)</p> + SIGN character (+):</p> - </li> + <ol><li>Advance <var title="">position</var> to the next + character. (The "<code title="">+</code>" is ignored, but it is + not conforming.)</li> + + <li>If <var title="">position</var> is past the end of <var title="">input</var>, return an error.</li> + + </ol></li> <li><p>If the next character is not one of U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), then return an error.</li>
Received on Friday, 23 October 2009 06:22:24 UTC