mshtml: Don't use simplified fragment-only navigation if there is post data to send.
This commit is contained in:
parent
dec3a9c7b0
commit
c77ba794b7
|
@ -1920,7 +1920,7 @@ HRESULT super_navigate(HTMLWindow *window, IUri *uri, const WCHAR *headers, BYTE
|
|||
}
|
||||
}
|
||||
|
||||
if(window->uri && compare_ignoring_frag(window->uri, uri)) {
|
||||
if(window->uri && !post_data_size && compare_ignoring_frag(window->uri, uri)) {
|
||||
TRACE("fragment navigate\n");
|
||||
return navigate_fragment(window, uri);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue