Bug 11795

Summary: REGRESSION (r18098): WebCore::isSpace() returns true for non-breaking space (failing tables/mozilla/bugs/bug33855.html)
Product: WebKit Reporter: mitz
Component: PlatformAssignee: 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
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.