Commit 829abbc4 authored by Fergus Dall's avatar Fergus Dall

Sheriff: Disable flaky test InputImeApiTest.SendKeyEventsOnNormalPage on Windows and Linux

TBR=shuchen@chromium.org
TBR=keithlee@chromium.org
TBR=azurewei@chromium.org

Bug: 1004628
Change-Id: Ifc892a0f640dab2e7fc910e2b921f1eb7393640e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1807643Reviewed-by: default avatarFergus Dall <sidereal@google.com>
Cr-Commit-Position: refs/heads/master@{#697090}
parent b225f07d
...@@ -108,7 +108,13 @@ IN_PROC_BROWSER_TEST_F(InputImeApiTest, DISABLED_BasicApiTest) { ...@@ -108,7 +108,13 @@ IN_PROC_BROWSER_TEST_F(InputImeApiTest, DISABLED_BasicApiTest) {
input_method->DetachTextInputClient(client2.get()); input_method->DetachTextInputClient(client2.get());
} }
IN_PROC_BROWSER_TEST_F(InputImeApiTest, SendKeyEventsOnNormalPage) { // TODO(crbug.com/1004628) Flakes on Windows and Linux
#if defined(OS_WIN) || defined(OS_LINUX)
#define MAYBE_SendKeyEventsOnNormalPage DISABLED_SendKeyEventsOnNormalPage
#else
#define MAYBE_SendKeyEventsOnNormalPage SendKeyEventsOnNormalPage
#endif
IN_PROC_BROWSER_TEST_F(InputImeApiTest, MAYBE_SendKeyEventsOnNormalPage) {
// Navigates to special page that sendKeyEvents API has limition with. // Navigates to special page that sendKeyEvents API has limition with.
ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUINewTabURL)); ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUINewTabURL));
// Manipulates the focused text input client because the follow cursor // Manipulates the focused text input client because the follow cursor
......
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