Commit d0edd7ea authored by Mikel Astiz's avatar Mikel Astiz Committed by Commit Bot

Disable SitePerProcessBrowserTest.ScrollElementIntoView

The test is failing consistently on Linux.

TBR=kenrb@chromium.org

Bug: 827431
Change-Id: Iadc01b50a477f8030b9043bf668aad82dc18c0b6
Reviewed-on: https://chromium-review.googlesource.com/997432Reviewed-by: default avatarMikel Astiz <mastiz@chromium.org>
Commit-Queue: Mikel Astiz <mastiz@chromium.org>
Cr-Commit-Position: refs/heads/master@{#548373}
parent 42296809
...@@ -1707,7 +1707,14 @@ IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest, ScrollLocalSubframeInOOPIF) { ...@@ -1707,7 +1707,14 @@ IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest, ScrollLocalSubframeInOOPIF) {
// nested <iframe>'s after the inner-most frame scrolls into view. The // nested <iframe>'s after the inner-most frame scrolls into view. The
// measurements are for two identical pages where one page does not have any // measurements are for two identical pages where one page does not have any
// OOPIFs while the other has some nested OOPIFs. // OOPIFs while the other has some nested OOPIFs.
IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest, ScrollElementIntoView) { #if defined(OS_LINUX)
// crbug.com/827431
#define MAYBE_ScrollElementIntoView DISABLED_ScrollElementIntoView
#else
#define MAYBE_ScrollElementIntoView ScrollElementIntoView
#endif
IN_PROC_BROWSER_TEST_F(SitePerProcessBrowserTest, MAYBE_ScrollElementIntoView) {
const GURL url_a( const GURL url_a(
embedded_test_server()->GetURL("a.com", "/iframe_out_of_view.html")); embedded_test_server()->GetURL("a.com", "/iframe_out_of_view.html"));
const GURL url_b( const GURL url_b(
......
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