mshtml: Use uri_nofrag instead of full URI in navigate_anchor.
This commit is contained in:
parent
8c6d9482bc
commit
fc73f4726e
|
@ -121,7 +121,7 @@ static HRESULT navigate_anchor(HTMLAnchorElement *This)
|
||||||
if(*href) {
|
if(*href) {
|
||||||
if(!window)
|
if(!window)
|
||||||
window = This->element.node.doc->basedoc.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 {
|
}else {
|
||||||
TRACE("empty href\n");
|
TRACE("empty href\n");
|
||||||
hres = S_OK;
|
hres = S_OK;
|
||||||
|
|
Loading…
Reference in New Issue