| Index: third_party/WebKit/Source/core/testing/Internals.cpp
|
| diff --git a/third_party/WebKit/Source/core/testing/Internals.cpp b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| index dabd8b74de6a8163d6e638c4ef502077e88d22b9..d1e73d8c575699e27a750504be3c648d58580a66 100644
|
| --- a/third_party/WebKit/Source/core/testing/Internals.cpp
|
| +++ b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| @@ -2625,9 +2625,9 @@ void Internals::forceReload(bool bypassCache) {
|
| if (!frame())
|
| return;
|
|
|
| - frame()->reload(bypassCache ? FrameLoadTypeReloadBypassingCache
|
| - : FrameLoadTypeReloadMainResource,
|
| - ClientRedirectPolicy::NotClientRedirect);
|
| + frame()->reload(
|
| + bypassCache ? FrameLoadTypeReloadBypassingCache : FrameLoadTypeReload,
|
| + ClientRedirectPolicy::NotClientRedirect);
|
| }
|
|
|
| Node* Internals::visibleSelectionAnchorNode() {
|
|
|