Commit f97d1ae7 authored by Tim Volodine's avatar Tim Volodine Committed by Commit Bot

Disable flaky SyntheticInputTest.SlowSmoothScrollWheel test on Android.

SyntheticInputTest.SlowSmoothScrollWheel test is flaky on
Android bots. Failed recently on Lollipop Phone Tester,
see crbug.com/1103731.

BUG=1103731
TBR=bokan@chromium.org,sadrul@chromium.org

Change-Id: I7bc8a98daf7f192eed6f0f7ef7d3ad4ca9b14900
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2288706Reviewed-by: default avatarTim Volodine <timvolodine@chromium.org>
Commit-Queue: Tim Volodine <timvolodine@chromium.org>
Cr-Commit-Position: refs/heads/master@{#786870}
parent 5939044a
......@@ -158,9 +158,15 @@ IN_PROC_BROWSER_TEST_F(SyntheticInputTest, SmoothScrollWheel) {
"document.scrollingElement.scrollTop"));
}
#if defined(OS_ANDROID)
// http://crbug.com/1103731. Flaky on Android bots.
#define MAYBE_SlowSmoothScrollWheel DISABLED_SlowSmoothScrollWheel
#else
#define MAYBE_SlowSmoothScrollWheel SlowSmoothScrollWheel
#endif
// This test ensures that slow synthetic wheel scrolling does not lose precision
// over time.
IN_PROC_BROWSER_TEST_F(SyntheticInputTest, SlowSmoothScrollWheel) {
IN_PROC_BROWSER_TEST_F(SyntheticInputTest, MAYBE_SlowSmoothScrollWheel) {
LoadURL(R"HTML(
data:text/html;charset=utf-8,
<!DOCTYPE html>
......
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