Commit 19d88314 authored by Dave Tapuska's avatar Dave Tapuska Committed by Commit Bot

Renable TouchActionBrowserTest.DefaultAuto

The test was disabled a year and a half ago due to flakiness. I cannot
reproduce it anymore.

BUG=376668

Change-Id: I7b6c99187f9ce53af2252dfe95e0b68da322af98
Reviewed-on: https://chromium-review.googlesource.com/922341Reviewed-by: default avatarNavid Zolghadr <nzolghadr@chromium.org>
Commit-Queue: Dave Tapuska <dtapuska@chromium.org>
Cr-Commit-Position: refs/heads/master@{#537338}
parent 3879680b
...@@ -184,11 +184,15 @@ class TouchActionBrowserTest : public ContentBrowserTest { ...@@ -184,11 +184,15 @@ class TouchActionBrowserTest : public ContentBrowserTest {
// Mac doesn't yet have a gesture recognizer, so can't support turning touch // Mac doesn't yet have a gesture recognizer, so can't support turning touch
// events into scroll gestures. // events into scroll gestures.
// Will be fixed with http://crbug.com/337142 // Will be fixed with http://crbug.com/337142
// Flaky on all platforms: https://crbug.com/376668 #if defined(OS_MACOSX)
#define MAYBE_DefaultAuto DISABLED_DefaultAuto
#else
#define MAYBE_DefaultAuto DefaultAuto
#endif
// //
// Verify the test infrastructure works - we can touch-scroll the page and get a // Verify the test infrastructure works - we can touch-scroll the page and get a
// touchcancel as expected. // touchcancel as expected.
IN_PROC_BROWSER_TEST_F(TouchActionBrowserTest, DISABLED_DefaultAuto) { IN_PROC_BROWSER_TEST_F(TouchActionBrowserTest, MAYBE_DefaultAuto) {
LoadURL(); LoadURL();
bool scrolled = DoTouchScroll(gfx::Point(50, 50), gfx::Vector2d(0, 45), true); bool scrolled = DoTouchScroll(gfx::Point(50, 50), gfx::Vector2d(0, 45), true);
......
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