WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
25490
ToNumber should ignore NBSP (\u00a0)
https://bugs.webkit.org/show_bug.cgi?id=25490
Summary
ToNumber should ignore NBSP (\u00a0)
Ash Searle
Reported
2009-04-30 13:14:04 PDT
This bug in ToNumber is the only reason WebKit fails a couple of array push/pop tests at the given URL. For a minimal test-case - do an unsigned right-shift as below. Every case should result in 3, but we get an answer of 0 when there's a non-breaking space: '\u0009 3' >>> 0; /* tab */ '\u0020 3' >>> 0; /* space */ '\u00a0 3' >>> 0; /* nbsp - fail! */ (see Section 9.3.1 of the EcmaScript 3rd edition spec for full list of white-space characters)
Attachments
Add attachment
proposed patch, testcase, etc.
Darin Adler
Comment 1
2010-07-12 14:33:22 PDT
Committed
r63120
: <
http://trac.webkit.org/changeset/63120
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug