Bug 11795
Summary: | REGRESSION (r18098): WebCore::isSpace() returns true for non-breaking space (failing tables/mozilla/bugs/bug33855.html) | ||
---|---|---|---|
Product: | WebKit | Reporter: | mitz |
Component: | Platform | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED FIXED | ||
Severity: | Normal | CC: | ap, hyatt |
Priority: | P1 | Keywords: | LayoutTestFailure, Regression |
Version: | 420+ | ||
Hardware: | Mac | ||
OS: | OS X 10.4 |
mitz
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)
Fixed by Hyatt in r18161 and r18162.
http://trac.webkit.org/projects/webkit/changeset/18161
http://trac.webkit.org/projects/webkit/changeset/18162