Bug 11795 - REGRESSION (r18098): WebCore::isSpace() returns true for non-breaking space (failing tables/mozilla/bugs/bug33855.html)
Summary: REGRESSION (r18098): WebCore::isSpace() returns true for non-breaking space (...
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Platform (show other bugs)
Version: 420+
Hardware: Mac OS X 10.4
: P1 Normal
Assignee: Nobody
URL:
Keywords: LayoutTestFailure, Regression
Depends on:
Blocks:
 
Reported: 2006-12-10 01:54 PST by mitz
Modified: 2006-12-11 16:14 PST (History)
2 users (show)

See Also:


Attachments

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