Index: third_party/WebKit/Source/core/frame/FrameView.cpp |
diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp |
index f38a80e5fa6048784cd43d080aa45094efbfdb5a..ab683edc781649f2d59babc784503b6642a307d1 100644 |
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp |
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp |
@@ -1918,7 +1918,8 @@ bool FrameView::ProcessUrlFragmentHelper(const String& name, |
// Implement the rule that "" and "top" both mean top of page as in other |
// browsers. |
- if (!anchor_node && !(name.IsEmpty() || EqualIgnoringCase(name, "top"))) |
+ if (!anchor_node && |
+ !(name.IsEmpty() || DeprecatedEqualIgnoringCase(name, "top"))) |
return false; |
if (behavior == kUrlFragmentScroll) |