Commit 53cbd69b authored by Hiroki Nakagawa's avatar Hiroki Nakagawa Committed by Commit Bot

Disable InputImeApiTest.SendKeyEventsOnSpecialPage on the Linux bot

This test is failing on the Linux bot. See the issue for details.

Bug: 795631
Change-Id: I7fff23380fff9c4627fe88c42907ff746ec30d0c
TBR: shuchen@chromium.org
Reviewed-on: https://chromium-review.googlesource.com/831380Reviewed-by: default avatarHiroki Nakagawa <nhiroki@chromium.org>
Commit-Queue: Hiroki Nakagawa <nhiroki@chromium.org>
Cr-Commit-Position: refs/heads/master@{#524654}
parent 70edab04
......@@ -4,6 +4,7 @@
#include "base/auto_reset.h"
#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "chrome/browser/extensions/api/input_ime/input_ime_api_nonchromeos.h"
#include "chrome/browser/extensions/extension_apitest.h"
#include "chrome/browser/ui/browser_window.h"
......@@ -111,7 +112,12 @@ IN_PROC_BROWSER_TEST_F(InputImeApiTest, BasicApiTest) {
input_method->DetachTextInputClient(client2.get());
}
// TODO(https://crbug.com/795631): This test is failing on the Linux bot.
#if defined(OS_LINUX)
IN_PROC_BROWSER_TEST_F(InputImeApiTest, DISABLED_SendKeyEventsOnNormalPage) {
#else
IN_PROC_BROWSER_TEST_F(InputImeApiTest, SendKeyEventsOnNormalPage) {
#endif
// Navigates to special page that sendKeyEvents API has limition with.
ui_test_utils::NavigateToURL(browser(), GURL(chrome::kChromeUINewTabURL));
// 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