| Index: third_party/WebKit/Source/core/frame/LocalFrame.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.cpp b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
 | 
| index 15161faa4dcb7882692ff8645199a611fbf15140..403cb63e1224204836c9bb5bc16ec302e8be9754 100644
 | 
| --- a/third_party/WebKit/Source/core/frame/LocalFrame.cpp
 | 
| +++ b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
 | 
| @@ -768,7 +768,12 @@ bool LocalFrame::isURLAllowed(const KURL& url) const
 | 
|  
 | 
|  bool LocalFrame::shouldReuseDefaultView(const KURL& url) const
 | 
|  {
 | 
| -    return loader().stateMachine()->isDisplayingInitialEmptyDocument() && document()->isSecureTransitionTo(url);
 | 
| +    // Secure transitions can only happen when navigating from the initial empty
 | 
| +    // document.
 | 
| +    if (!loader().stateMachine()->isDisplayingInitialEmptyDocument())
 | 
| +        return false;
 | 
| +
 | 
| +    return document()->isSecureTransitionTo(url);
 | 
|  }
 | 
|  
 | 
|  void LocalFrame::removeSpellingMarkersUnderWords(const Vector<String>& words)
 | 
| 
 |