| Index: third_party/WebKit/Source/web/tests/WebFrameTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
|
| index 1c1a2e369305e831bec325e303042ba7124a3295..0651c10139c5e73148a425565337cce38caaf789 100644
|
| --- a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
|
| @@ -6080,7 +6080,9 @@ TEST_P(ParameterizedWebFrameTest, NavigateToSameNoConditionalRequestForSubresour
|
| WebCache::clear();
|
| FrameTestHelpers::loadFrame(webViewHelper.webView()->mainFrame(), m_baseURL + "foo_with_image.html");
|
|
|
| - EXPECT_EQ(client.numOfImageRequests(), 2);
|
| + // 2 images are requested, and each triggers 2 willSendRequest() calls,
|
| + // once for preloading and once for the real request.
|
| + EXPECT_EQ(client.numOfImageRequests(), 4);
|
| }
|
|
|
| TEST_P(ParameterizedWebFrameTest, WebNodeImageContents)
|
|
|