+2013-06-10 Ryosuke Niwa <rniwa@webkit.org>
+
+ text-transform: capitalize shouldn't upconvert
+ https://bugs.webkit.org/show_bug.cgi?id=117485
+
+ Reviewed by Adam Barth.
+
+ Avoid the upconversion. Merge https://chromium.googlesource.com/chromium/blink/+/c5a221d6da2443df0639c01c40aac6040908ec79.
+
+ * rendering/RenderText.cpp:
+ (WebCore::makeCapitalized):
+
2013-06-10 Ryosuke Niwa <rniwa@webkit.org>
DocType strings should be 8 bit wide
return;
unsigned length = string->length();
- const UChar* characters = string->characters();
+ const StringImpl& stringImpl = *string->impl();
if (length >= numeric_limits<unsigned>::max())
CRASH();
stringWithPrevious[0] = previous == noBreakSpace ? ' ' : previous;
for (unsigned i = 1; i < length + 1; i++) {
// Replace   with a real space since ICU no longer treats   as a word separator.
- if (characters[i - 1] == noBreakSpace)
+ if (stringImpl[i - 1] == noBreakSpace)
stringWithPrevious[i] = ' ';
else
- stringWithPrevious[i] = characters[i - 1];
+ stringWithPrevious[i] = stringImpl[i - 1];
}
TextBreakIterator* boundary = wordBreakIterator(stringWithPrevious.characters(), length + 1);
if (!boundary)
return;
- StringBuffer<UChar> data(length);
+ StringBuilder result;
+ result.reserveCapacity(length);
int32_t endOfWord;
int32_t startOfWord = textBreakFirst(boundary);
for (endOfWord = textBreakNext(boundary); endOfWord != TextBreakDone; startOfWord = endOfWord, endOfWord = textBreakNext(boundary)) {
if (startOfWord) // Ignore first char of previous string
- data[startOfWord - 1] = characters[startOfWord - 1] == noBreakSpace ? noBreakSpace : toTitleCase(stringWithPrevious[startOfWord]);
+ result.append(stringImpl[startOfWord - 1] == noBreakSpace ? noBreakSpace : toTitleCase(stringWithPrevious[startOfWord]));
for (int i = startOfWord + 1; i < endOfWord; i++)
- data[i - 1] = characters[i - 1];
+ result.append(stringImpl[i - 1]);
}
- *string = String::adopt(data);
+ *string = result.toString();
}
RenderText::RenderText(Node* node, PassRefPtr<StringImpl> str)