Commit f1938f5f authored by adachan@apple.com's avatar adachan@apple.com

Forgot to capitalize the "US".

        * platform/text/win/TextBreakIteratorInternalICUWin.cpp:
        (WebCore::currentTextBreakLocaleID):



git-svn-id: svn://svn.chromium.org/blink/trunk@42472 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent a0c69adb
2009-04-13 Ada Chan <adachan@apple.com>
Forgot to capitalize the "US".
* platform/text/win/TextBreakIteratorInternalICUWin.cpp:
(WebCore::currentTextBreakLocaleID):
2009-04-13 Ada Chan <adachan@apple.com> 2009-04-13 Ada Chan <adachan@apple.com>
<rdar://problem/6564956> URL field double-click selects entire domain, rather than single word or entire URL <rdar://problem/6564956> URL field double-click selects entire domain, rather than single word or entire URL
...@@ -25,11 +25,11 @@ namespace WebCore { ...@@ -25,11 +25,11 @@ namespace WebCore {
const char* currentTextBreakLocaleID() const char* currentTextBreakLocaleID()
{ {
// Using en_us_POSIX now so word selection in address field works as expected as before (double-clicking // Using en_US_POSIX now so word selection in address field works as expected as before (double-clicking
// in a URL selects a word delimited by periods rather than selecting the entire URL). // in a URL selects a word delimited by periods rather than selecting the entire URL).
// However, this is not entirely correct - we should honor the system locale in the normal case. // However, this is not entirely correct - we should honor the system locale in the normal case.
// FIXME: <rdar://problem/6786703> Should use system locale for text breaking // FIXME: <rdar://problem/6786703> Should use system locale for text breaking
return "en_us_POSIX"; return "en_US_POSIX";
} }
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment