Commit 6004ffda authored by Ken Buchanan's avatar Ken Buchanan Committed by Commit Bot

Disable OOPIFDetachDuringAnimation on Android

Recently landed test is flaky on Android. Disabling until I have time
to investigate the cause.

TBR=alexmos@chromium.org

Bug: 809580
Change-Id: I6824b9e75c8114fc95716ccb8caa7af8867cab17
Reviewed-on: https://chromium-review.googlesource.com/905093Reviewed-by: default avatarKen Buchanan <kenrb@chromium.org>
Commit-Queue: Ken Buchanan <kenrb@chromium.org>
Cr-Commit-Position: refs/heads/master@{#534783}
parent 51c8e384
......@@ -10533,7 +10533,14 @@ IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest,
// Create an out-of-process iframe that causes itself to be detached during
// its layout/animate phase. See https://crbug.com/802932.
IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest, OOPIFDetachDuringAnimation) {
// Disabled on Android due to flakiness, https://crbug.com/809580.
#if defined(OS_ANDROID)
#define MAYBE_OOPIFDetachDuringAnimation DISABLED_OOPIFDetachDuringAnimation
#else
#define MAYBE_OOPIFDetachDuringAnimation OOPIFDetachDuringAnimation
#endif
IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest,
MAYBE_OOPIFDetachDuringAnimation) {
GURL main_url(embedded_test_server()->GetURL(
"a.com", "/frame_tree/frame-detached-in-animationstart-event.html"));
EXPECT_TRUE(NavigateToURL(shell(), main_url));
......
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