mshtml: Use uri_nofrag instead of full URI in navigate_anchor.

This commit is contained in:
Jacek Caban 2013-11-29 12:58:41 +01:00 committed by Alexandre Julliard
parent 8c6d9482bc
commit fc73f4726e

View file

@ -121,7 +121,7 @@ static HRESULT navigate_anchor(HTMLAnchorElement *This)
if(*href) {
if(!window)
window = This->element.node.doc->basedoc.window;
hres = navigate_url(window, href, window->uri, BINDING_NAVIGATED);
hres = navigate_url(window, href, window->uri_nofrag, BINDING_NAVIGATED);
}else {
TRACE("empty href\n");
hres = S_OK;