WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
11795
REGRESSION (
r18098
): WebCore::isSpace() returns true for non-breaking space (failing tables/mozilla/bugs/
bug33855
.html)
https://bugs.webkit.org/show_bug.cgi?id=11795
Summary
REGRESSION (r18098): WebCore::isSpace() returns true for non-breaking space (...
mitz
Reported
2006-12-10 01:54:27 PST
tables/mozilla/bugs/
bug33855
.html is failing because of this change in StringImpl.cpp in
r18098
: - return c <= 0x7F ? isspace(c) : (u_charDirection(c) == U_WHITE_SPACE_NEUTRAL); + return c <= 0x7F ? isspace(c) : WTF::Unicode::isSpace(c);
Attachments
Add attachment
proposed patch, testcase, etc.
David Kilzer (:ddkilzer)
Comment 1
2006-12-11 16:14:25 PST
Fixed by Hyatt in
r18161
and
r18162
.
http://trac.webkit.org/projects/webkit/changeset/18161
http://trac.webkit.org/projects/webkit/changeset/18162
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