diff options
author | xji@chromium.org <xji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-30 01:02:18 +0000 |
---|---|---|
committer | xji@chromium.org <xji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-30 01:02:18 +0000 |
commit | f1bdca71d7f260dd75da02612cf6bdee18c84ccb (patch) | |
tree | b1d597e4527b90273285d0a065e0a6c89bf822fa | |
parent | 0292ae9691e3e00898ffd688ede61aab32eeec10 (diff) | |
download | chromium_src-f1bdca71d7f260dd75da02612cf6bdee18c84ccb.zip chromium_src-f1bdca71d7f260dd75da02612cf6bdee18c84ccb.tar.gz chromium_src-f1bdca71d7f260dd75da02612cf6bdee18c84ccb.tar.bz2 |
Enable Hebrew spell checker after Jeremy fixed the underlying Webkit bug.
Related bug: http://code.google.com/p/chromium/issues/detail?id=2779
Related Webkit fix: http://trac.webkit.org/changeset/36874
Test:
Steps to repro:
1) open chrome, Hebrew UI
2) make sure the spell checker is on, and is set to Hebrew
3) type some Hebrew text in a RTL box (like RTL plain text finto), and use a
Hebrew word that the speller does not know.
4) type some more
Without the underlying Webkit fix:
the highlight marker is in a wrong location, and keeps moving while typing more
words after the unrecognized one.
With the underlying Webkit fix:
the highlight marker is in a correct and fixed location.
Review URL: http://codereview.chromium.org/16606
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7496 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/spellchecker.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/spellchecker.cc b/chrome/browser/spellchecker.cc index 66aae29..65513f4 100644 --- a/chrome/browser/spellchecker.cc +++ b/chrome/browser/spellchecker.cc @@ -48,7 +48,7 @@ const wchar_t* const g_supported_spellchecker_languages[] = { L"pt-PT", L"ro-RO", // L"hu-HU", // Not to be included in Spellchecker as per B=1277824 - // L"he-IL", // Not to be included in Spellchecker as per B=1252241 + L"he-IL", L"id-ID", L"cs-CZ", L"el-GR", |