NavigationManagerImpl::IsFragmentChangeNavigationBetweenUrls has always been implemented as the following:
if (existing_url == new_url || !new_url.has_ref())
return false;
return existing_url.EqualsIgnoringRef(new_url);
If existing_url = "http://google.com#foo" and new_url = "http://google.com", this method returns false but it should return true.
Comment 1 by sheriffbot@chromium.org
, Jul 27Status: Untriaged (was: Available)