Re: [whatwg] Plus Signs in Signed Integers

2009-07-28 Thread Ian Hickson
On Tue, 14 Jul 2009, Jonas Sicking wrote: What does IE do in these two examples? It appears webkit treats the first one as start=4 and the second as start=0. In IE: ol start= 2liTEST/ol = 2 ol start=+2liTEST/ol = 2 ol start=-2liTEST/ol = -2 ol start=H2liTEST/ol = 1 ol start=.2liTEST/ol = 1

Re: [whatwg] Plus Signs in Signed Integers

2009-07-15 Thread Justin Lebar
What does IE do in these two examples? It appears that IE8 has the following behavior: ol start=+4 start = 4 ol start=H2SO4 start = 1 Test at http://stanford.edu/~jlebar/moz/list.html -Justin On Tue, Jul 14, 2009 at 12:43 AM, Jonas Sickingjo...@sicking.cc wrote: On Thu, Jun 18, 2009

Re: [whatwg] Plus Signs in Signed Integers

2009-07-14 Thread Jonas Sicking
On Mon, Jul 13, 2009 at 8:07 PM, Ian Hicksoni...@hixie.ch wrote: On Thu, 18 Jun 2009, Smylers wrote: The algorithm for parsing signed integers does not allow an optional plus sign before positive integers; that is, parsing +4 will return an error at step 8 of this algorithm:  

Re: [whatwg] Plus Signs in Signed Integers

2009-07-14 Thread Ian Hickson
On Tue, 14 Jul 2009, Jonas Sicking wrote: On Mon, Jul 13, 2009 at 8:07 PM, Ian Hicksoni...@hixie.ch wrote: On Thu, 18 Jun 2009, Smylers wrote: The algorithm for parsing signed integers does not allow an optional plus sign before positive integers; that is, parsing +4 will return an

Re: [whatwg] Plus Signs in Signed Integers

2009-07-14 Thread Jonas Sicking
On Thu, Jun 18, 2009 at 9:33 AM, Smylerssmyl...@stripey.com wrote: It also doesn't seem to match browser behaviour: the ol element's start attribute is an integer, so I tried this out in various browsers:  ol start=+4    liPlus four  /ol All the ones I had to hand (Firefox, Opera,

Re: [whatwg] Plus Signs in Signed Integers

2009-07-13 Thread Ian Hickson
On Thu, 18 Jun 2009, Smylers wrote: The algorithm for parsing signed integers does not allow an optional plus sign before positive integers; that is, parsing +4 will return an error at step 8 of this algorithm: http://www.whatwg.org/html5#rules-for-parsing-integers That is inconsistent

[whatwg] Plus Signs in Signed Integers

2009-06-18 Thread Smylers
The algorithm for parsing signed integers does not allow an optional plus sign before positive integers; that is, parsing +4 will return an error at step 8 of this algorithm: http://www.whatwg.org/html5#rules-for-parsing-integers That is inconsistent with the algorithm for non-negative

Re: [whatwg] Plus Signs in Signed Integers

2009-06-18 Thread Boris Zbarsky
Smylers wrote: ol start=H2SO4 liAcid test /ol That should cause parsing an integer to abort and so the default of start=1 to be used. Opera, Links, and W3M get that right. Konqueror, Dillo, and Lynx all also seem to manage the aborting, but use a default of zero instead. Firefox