Reviewed by Dan Bernstein.
Bug 23095: REGRESSION: fast/text/find-case-folding.html regression test failing when ICU used for text search
https://bugs.webkit.org/show_bug.cgi?id=23095
* fast/text/find-case-folding.html: Work around this ICU bug in the test for now.
Later we might want to work around it in our search code instead, or in addition,
if we can figure out how to do that.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@39578
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2009-01-03 Darin Adler <darin@apple.com>
+
+ Reviewed by Dan Bernstein.
+
+ Bug 23095: REGRESSION: fast/text/find-case-folding.html regression test failing when ICU used for text search
+ https://bugs.webkit.org/show_bug.cgi?id=23095
+
+ * fast/text/find-case-folding.html: Work around this ICU bug in the test for now.
+ Later we might want to work around it in our search code instead, or in addition,
+ if we can figure out how to do that.
+
2009-01-03 David D. Kilzer <ddkilzer@webkit.org>
Bug 23091: Some webarchive http tests intermittently fail due to Connection/Keep-Alive header differences
message += " Cannot find small sharp s when searching for small sharp s.";
}
- if (!canFind("Strasse", "Stra" + smallSharpS + "e")) {
+ // Added an "x" to the start of the target string to work around an ICU bug.
+ // See <http://bugs.icu-project.org/trac/ticket/6671> for details.
+ if (!canFind("Strasse", "xStra" + smallSharpS + "e")) {
success = false;
message += " Cannot find small sharp s when searching for ss.";
}