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
Note You need to log in before you can comment on or make changes to this bug.