Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(443)

Issue 118441: Fixed 3 tests that failed in hebrew enabled vista... (Closed)

Created:
11 years, 6 months ago by nakro
Modified:
9 years, 7 months ago
Reviewers:
jeremy, Hironori Bono, sky
CC:
chromium-reviews_googlegroups.com
Visibility:
Public.

Description

Fixed 3 tests that failed in hebrew enabled vista BrowserTest.NoTitle BrowserTest.Title AutomationProxyVisibleTest.WindowGetViewBounds Some notes : There has been a small regression in the UI tests which makes them get stuck even more on my very slow machine (maybe race conditions) however, the fixes i post here do not make this state any worse and fix these 3 tests above which always failed Test=1. run ui_tests on a RTL windows (or use --extra-chrome-flags=--lang=he) 2. the 3 tests listed above will always fail, as they expect LTR behavior 3. this fixes it BUG=12636 http://code.google.com/p/chromium/issues/detail?id=12636

Patch Set 1 #

Total comments: 13

Patch Set 2 : '' #

Total comments: 3

Patch Set 3 : '' #

Total comments: 8

Patch Set 4 : '' #

Patch Set 5 : '' #

Unified diffs Side-by-side diffs Delta from patch set Stats (+85 lines, -13 lines) Patch
M chrome/browser/automation/automation_provider.h View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/automation/automation_provider.cc View 1 2 3 4 3 chunks +7 lines, -0 lines 0 comments Download
M chrome/browser/browser_uitest.cc View 1 2 3 4 3 chunks +26 lines, -2 lines 0 comments Download
M chrome/test/automation/automation_messages_internal.h View 1 2 3 4 4 chunks +16 lines, -10 lines 0 comments Download
M chrome/test/automation/automation_proxy.h View 1 2 3 4 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/test/automation/automation_proxy.cc View 1 2 3 4 1 chunk +14 lines, -0 lines 0 comments Download
M chrome/test/automation/automation_proxy_uitest.cc View 1 2 3 4 2 chunks +16 lines, -1 line 0 comments Download

Messages

Total messages: 19 (0 generated)
Mohamed Mansour
lgtm, hbono can clarify.
11 years, 6 months ago (2009-06-09 20:21:02 UTC) #1
jeremy
Sky: can you review the automation part of this CL? A few general comments: * ...
11 years, 6 months ago (2009-06-09 20:56:46 UTC) #2
jeremy
Pressed submit too fast :| Strike my comment about BUG=, but TEST= would still be ...
11 years, 6 months ago (2009-06-09 20:57:44 UTC) #3
nakro
Hbono (and jeremy if you read this) i have some comments about this solution - ...
11 years, 6 months ago (2009-06-09 21:02:42 UTC) #4
sky
just nits, LGTM otherwise. http://codereview.chromium.org/118441/diff/1/8 File chrome/browser/automation/automation_provider.cc (right): http://codereview.chromium.org/118441/diff/1/8#newcode1340 Line 1340: void AutomationProvider::GetChromeLocale(bool *is_rtl, std::wstring* ...
11 years, 6 months ago (2009-06-09 21:15:47 UTC) #5
jeremy
http://codereview.chromium.org/118441/diff/1/5 File chrome/test/automation/automation_proxy.h (right): http://codereview.chromium.org/118441/diff/1/5#newcode104 Line 104: bool GetChromeLocale(bool *is_rtl, std::wstring *locale); I think there's ...
11 years, 6 months ago (2009-06-09 22:24:09 UTC) #6
nakro
http://codereview.chromium.org/118441/diff/1/6 File chrome/browser/browser_uitest.cc (right): http://codereview.chromium.org/118441/diff/1/6#newcode75 Line 75: const wchar_t POP_DIRECTIONAL_FORMATTING = L'\u202c'; the only file ...
11 years, 6 months ago (2009-06-09 22:31:04 UTC) #7
nakro
http://codereview.chromium.org/118441/diff/1/6 File chrome/browser/browser_uitest.cc (right): http://codereview.chromium.org/118441/diff/1/6#newcode75 Line 75: const wchar_t POP_DIRECTIONAL_FORMATTING = L'\u202c'; ok, i just ...
11 years, 6 months ago (2009-06-09 22:56:14 UTC) #8
nakro
fixed the issues
11 years, 6 months ago (2009-06-10 01:37:19 UTC) #9
Hironori Bono
LGTM++ but a few nits. Thank you so much for your great change! http://codereview.chromium.org/118441/diff/1014/1019 File ...
11 years, 6 months ago (2009-06-10 02:15:15 UTC) #10
nakro
fixed new issues
11 years, 6 months ago (2009-06-10 02:41:38 UTC) #11
jeremy
Nice work, nearly there... http://codereview.chromium.org/118441/diff/1025/1032 File chrome/browser/automation/automation_provider.cc (right): http://codereview.chromium.org/118441/diff/1025/1032#newcode959 Line 959: IPC_MESSAGE_HANDLER(AutomationMsg_GetChromeLocale, GetChromeLocale) Does this ...
11 years, 6 months ago (2009-06-10 07:13:33 UTC) #12
nakro
http://codereview.chromium.org/118441/diff/1025/1032 File chrome/browser/automation/automation_provider.cc (right): http://codereview.chromium.org/118441/diff/1025/1032#newcode959 Line 959: IPC_MESSAGE_HANDLER(AutomationMsg_GetChromeLocale, GetChromeLocale) I found the terminology confusing a ...
11 years, 6 months ago (2009-06-10 09:46:42 UTC) #13
nakro
fixed all issues raised by jeremy just one note about security : if the chrome ...
11 years, 6 months ago (2009-06-10 12:27:01 UTC) #14
jeremy
LGTM http://codereview.chromium.org/118441/diff/1025/1032 File chrome/browser/automation/automation_provider.cc (right): http://codereview.chromium.org/118441/diff/1025/1032#newcode959 Line 959: IPC_MESSAGE_HANDLER(AutomationMsg_GetChromeLocale, GetChromeLocale) I think the reason you're ...
11 years, 6 months ago (2009-06-10 16:19:46 UTC) #15
nakro
do not commit it yet, there is a problem what i can see that on ...
11 years, 6 months ago (2009-06-10 16:34:42 UTC) #16
nakro
fixed
11 years, 6 months ago (2009-06-10 16:43:49 UTC) #17
jeremy
LGTM
11 years, 6 months ago (2009-06-10 17:10:40 UTC) #18
Hironori Bono
11 years, 6 months ago (2009-06-15 03:58:34 UTC) #19
Sorry for my slow update.
This change has been committed as r18370.
Thank you again for your awesome change!

Powered by Google App Engine
This is Rietveld 408576698