Commit 7961ac0b authored by Joshua Pawlicki's avatar Joshua Pawlicki Committed by Commit Bot

Disabling flaky test

Bug: 1021172
Change-Id: I0461cfab978517bd0d948487f785efce9df018df

TBR=rdevlin.cronin@chromium.org

Change-Id: I0461cfab978517bd0d948487f785efce9df018df
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1896505Reviewed-by: default avatarJoshua Pawlicki <waffles@chromium.org>
Reviewed-by: default avatarDevlin <rdevlin.cronin@chromium.org>
Commit-Queue: Joshua Pawlicki <waffles@chromium.org>
Cr-Commit-Position: refs/heads/master@{#712205}
parent 5bd60233
...@@ -1103,8 +1103,14 @@ class NavigatingExtensionPopupBrowserTest : public BrowserActionApiTest { ...@@ -1103,8 +1103,14 @@ class NavigatingExtensionPopupBrowserTest : public BrowserActionApiTest {
const Extension* other_extension_; const Extension* other_extension_;
}; };
// Flaky - crbug.com/1021172
#if defined(OS_LINUX)
#define MAYBE_Webpage DISABLED_Webpage
#else
#define MAYBE_Webpage Webpage
#endif
// Tests that an extension pop-up cannot be navigated to a web page. // Tests that an extension pop-up cannot be navigated to a web page.
IN_PROC_BROWSER_TEST_F(NavigatingExtensionPopupBrowserTest, Webpage) { IN_PROC_BROWSER_TEST_F(NavigatingExtensionPopupBrowserTest, MAYBE_Webpage) {
GURL web_url(embedded_test_server()->GetURL("foo.com", "/title1.html")); GURL web_url(embedded_test_server()->GetURL("foo.com", "/title1.html"));
TestPopupNavigationViaGet(web_url, EXPECTING_NAVIGATION_FAILURE); TestPopupNavigationViaGet(web_url, EXPECTING_NAVIGATION_FAILURE);
TestPopupNavigationViaPost(web_url, EXPECTING_NAVIGATION_FAILURE); TestPopupNavigationViaPost(web_url, EXPECTING_NAVIGATION_FAILURE);
......
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