Commit 77d5c4b1 authored by Lei Zhang's avatar Lei Zhang Committed by Commit Bot

Disable DragAndDropBrowserTest.DropTextFromOutside on ChromeOS.

BUG=835774
TBR=clamy@chromium.org
NOTRY=true

Change-Id: I3c6562d95f35b918a38e653dd48ef7dbb7553f36
Reviewed-on: https://chromium-review.googlesource.com/1025017Reviewed-by: default avatarLei Zhang <thestig@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Cr-Commit-Position: refs/heads/master@{#552836}
parent 30c65c50
...@@ -720,9 +720,15 @@ class DragAndDropBrowserTest : public InProcessBrowserTest, ...@@ -720,9 +720,15 @@ class DragAndDropBrowserTest : public InProcessBrowserTest,
DISALLOW_COPY_AND_ASSIGN(DragAndDropBrowserTest); DISALLOW_COPY_AND_ASSIGN(DragAndDropBrowserTest);
}; };
#if defined(OS_CHROMEOS)
// Flaky: https://crbug.com/835774
#define MAYBE_DropTextFromOutside DISABLED_DropTextFromOutside
#else
#define MAYBE_DropTextFromOutside DropTextFromOutside
#endif
// Scenario: drag text from outside the browser and drop to the right frame. // Scenario: drag text from outside the browser and drop to the right frame.
// Test coverage: dragover, drop DOM events. // Test coverage: dragover, drop DOM events.
IN_PROC_BROWSER_TEST_P(DragAndDropBrowserTest, DropTextFromOutside) { IN_PROC_BROWSER_TEST_P(DragAndDropBrowserTest, MAYBE_DropTextFromOutside) {
std::string frame_site = use_cross_site_subframe() ? "b.com" : "a.com"; std::string frame_site = use_cross_site_subframe() ? "b.com" : "a.com";
ASSERT_TRUE(NavigateToTestPage("a.com")); ASSERT_TRUE(NavigateToTestPage("a.com"));
ASSERT_TRUE(NavigateRightFrame(frame_site, "drop_target.html")); ASSERT_TRUE(NavigateRightFrame(frame_site, "drop_target.html"));
......
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