- From: poot <cvsmail@w3.org>
- Date: Fri, 23 Oct 2009 15:22:42 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: Correct the parsing rules for integers. (whatwg r4297) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.3432&r2=1.3433&f=h http://html5.org/tools/web-apps-tracker?from=4296&to=4297 =================================================================== 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:23:16 UTC