Changeset 102086 in webkit
- Timestamp:
- Dec 5, 2011, 7:48:35 PM (15 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
platform/DefaultLocalizationStrategy.cpp (modified) (1 diff)
-
platform/DefaultLocalizationStrategy.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r102085 r102086 1 2011-12-05 Benjamin Poulain <bpoulain@apple.com> 2 3 Upstream htmlSelectMultipleItems needed for <select multiple> by iOS 4 https://bugs.webkit.org/show_bug.cgi?id=73734 5 6 Reviewed by David Kilzer. 7 8 * platform/DefaultLocalizationStrategy.cpp: 9 (WebCore::DefaultLocalizationStrategy::htmlSelectMultipleItems): 10 * platform/DefaultLocalizationStrategy.h: 11 1 12 2011-12-05 Darin Adler <darin@apple.com> 2 13 -
trunk/Source/WebCore/platform/DefaultLocalizationStrategy.cpp
r99083 r102086 768 768 } 769 769 770 #endif 770 #if PLATFORM(IOS) 771 String DefaultLocalizationStrategy::htmlSelectMultipleItems(int count) 772 { 773 return formatLocalizedString(WEB_UI_STRING("%d Items", "Present the number of selected <option> items in a <select multiple> element (iOS only)"), count); 774 } 775 #endif // PLATFORM(IOS) 776 #endif // PLATFORM(MAC) 771 777 772 778 String DefaultLocalizationStrategy::imageTitle(const String& filename, const IntSize& size) -
trunk/Source/WebCore/platform/DefaultLocalizationStrategy.h
r99083 r102086 170 170 virtual String keygenMenuItem2048(); 171 171 virtual String keygenKeychainItemName(const String& host); 172 #endif 172 #if PLATFORM(IOS) 173 virtual String htmlSelectMultipleItems(int); 174 #endif // PLATFORM(IOS) 175 #endif // PLATFORM(MAC) 173 176 virtual String imageTitle(const String& filename, const IntSize&); 174 177 virtual String mediaElementLoadingStateText();
Note:
See TracChangeset
for help on using the changeset viewer.