Commit 7683ddee authored by Patrik Höglund's avatar Patrik Höglund Committed by Commit Bot

Disable flaky SitePerProcessBrowserTest.UnloadHandlerSubframes.

On Linux and Mac (only seeing it there).

Tbr: danakj@chromium.org
Bug: 1012185
Change-Id: Ibe501f10b7fd6c43ca02e7fec68259ec8eddf590
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1845769Reviewed-by: default avatarPatrik Höglund <phoglund@chromium.org>
Commit-Queue: Patrik Höglund <phoglund@chromium.org>
Cr-Commit-Position: refs/heads/master@{#703646}
parent 9d6b61dd
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
#include "base/test/test_timeouts.h" #include "base/test/test_timeouts.h"
#include "base/threading/thread_task_runner_handle.h" #include "base/threading/thread_task_runner_handle.h"
#include "base/time/time.h" #include "base/time/time.h"
#include "build/build_config.h"
#include "content/browser/frame_host/cross_process_frame_connector.h" #include "content/browser/frame_host/cross_process_frame_connector.h"
#include "content/browser/frame_host/frame_tree.h" #include "content/browser/frame_host/frame_tree.h"
#include "content/browser/frame_host/navigation_controller_impl.h" #include "content/browser/frame_host/navigation_controller_impl.h"
...@@ -378,7 +379,14 @@ IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest, ...@@ -378,7 +379,14 @@ IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest,
// B2 A2 // B2 A2
// | // |
// C3 // C3
IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest, UnloadHandlerSubframes) { // TODO(crbug.com/1012185): Flaky timeouts on Linux and Mac.
#if defined(OS_LINUX) || defined(OS_MACOSX)
#define MAYBE_UnloadHandlerSubframes DISABLED_UnloadHandlerSubframes
#else
#define MAYBE_UnloadHandlerSubframes UnloadHandlerSubframes
#endif
IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest,
MAYBE_UnloadHandlerSubframes) {
GURL main_url(embedded_test_server()->GetURL( GURL main_url(embedded_test_server()->GetURL(
"a.com", "/cross_site_iframe_factory.html?a(b(c(b),c(a(c))),d)")); "a.com", "/cross_site_iframe_factory.html?a(b(c(b),c(a(c))),d)"));
EXPECT_TRUE(NavigateToURL(shell(), main_url)); 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