Chromium Code Reviews| Index: content/browser/renderer_host/input/non_blocking_event_browsertest.cc |
| diff --git a/content/browser/renderer_host/input/non_blocking_event_browsertest.cc b/content/browser/renderer_host/input/non_blocking_event_browsertest.cc |
| index c68191409f965bfd46e1451acd38b6f2173ef165..b4d38e3ee96f72fedc9d33ebfe28e1094fae2e8d 100644 |
| --- a/content/browser/renderer_host/input/non_blocking_event_browsertest.cc |
| +++ b/content/browser/renderer_host/input/non_blocking_event_browsertest.cc |
| @@ -41,7 +41,7 @@ const char kNonBlockingEventDataURL[] = |
| "html, body {" |
| " margin: 0;" |
| "}" |
| - ".spacer { height: 1000px; }" |
| + ".spacer { height: 10000px; }" |
| "</style>" |
| "<div class=spacer></div>" |
| "<script>" |
| @@ -110,7 +110,7 @@ class NonBlockingEventBrowserTest : public ContentBrowserTest { |
| int scrollHeight = |
| ExecuteScriptAndExtractInt("document.documentElement.scrollHeight"); |
| - EXPECT_EQ(1000, scrollHeight); |
| + EXPECT_EQ(10000, scrollHeight); |
|
tdresser
2016/03/11 13:27:23
Can we factor this out into a constant, with a com
|
| scoped_refptr<FrameWatcher> frame_watcher(new FrameWatcher()); |
| GetWidgetHost()->GetProcess()->AddFilter(frame_watcher.get()); |
| @@ -135,7 +135,7 @@ class NonBlockingEventBrowserTest : public ContentBrowserTest { |
| int scrollHeight = |
| ExecuteScriptAndExtractInt("document.documentElement.scrollHeight"); |
| - EXPECT_EQ(1000, scrollHeight); |
| + EXPECT_EQ(10000, scrollHeight); |
| scoped_refptr<FrameWatcher> frame_watcher(new FrameWatcher()); |
| GetWidgetHost()->GetProcess()->AddFilter(frame_watcher.get()); |