Changeset 30624 in webkit
- Timestamp:
- Feb 27, 2008, 8:50:19 AM (17 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r30622 r30624 1 2008-02-27 Sriram Neelakandan <sriram.neelakandan@gmail.com> 2 3 Reviewed, tweaked and landed by ap. 4 5 http://bugs.webkit.org/show_bug.cgi?id=17487 6 HTMLInput mysteriously fails to work if ICU dat file is missing 7 8 * platform/text/TextBreakIteratorICU.cpp: (WebCore::setUpIterator): Assert that the iterator 9 has been opened. 10 1 11 2008-02-27 Adam Roben <aroben@apple.com> 2 12 -
trunk/WebCore/platform/text/TextBreakIteratorICU.cpp
r29663 r30624 26 26 27 27 #include <unicode/ubrk.h> 28 #include <wtf/Assertions.h> 28 29 29 30 namespace WebCore { … … 39 40 iterator = static_cast<TextBreakIterator*>(ubrk_open(type, currentTextBreakLocaleID(), 0, 0, &openStatus)); 40 41 createdIterator = true; 42 ASSERT_WITH_MESSAGE(U_SUCCESS(openStatus), "ICU could not open a break iterator: %s (%d)", u_errorName(openStatus), openStatus); 41 43 } 42 44 if (!iterator)
Note:
See TracChangeset
for help on using the changeset viewer.