| Index: Source/core/html/HTMLFrameElementBase.cpp
|
| diff --git a/Source/core/html/HTMLFrameElementBase.cpp b/Source/core/html/HTMLFrameElementBase.cpp
|
| index c37f911833778e8e143314420f6762c0a9e63a7c..a12c3d0a40fd2fde0df2713c1bb3c85fc588db23 100644
|
| --- a/Source/core/html/HTMLFrameElementBase.cpp
|
| +++ b/Source/core/html/HTMLFrameElementBase.cpp
|
| @@ -70,7 +70,7 @@ bool HTMLFrameElementBase::isURLAllowed() const
|
| return true;
|
| }
|
|
|
| -void HTMLFrameElementBase::openURL(bool lockBackForwardList)
|
| +void HTMLFrameElementBase::openURL(bool replaceCurrentItem)
|
| {
|
| if (!isURLAllowed())
|
| return;
|
| @@ -90,7 +90,7 @@ void HTMLFrameElementBase::openURL(bool lockBackForwardList)
|
| url = blankURL();
|
| }
|
|
|
| - if (!loadOrRedirectSubframe(url, m_frameName, lockBackForwardList))
|
| + if (!loadOrRedirectSubframe(url, m_frameName, replaceCurrentItem))
|
| return;
|
| if (!contentFrame() || scriptURL.isEmpty() || !contentFrame()->isLocalFrame())
|
| return;
|
|
|