Commit d7a2da57 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Move document binding to the new document binding list in on_start_nsrequest.

parent 0c45c8b5
......@@ -973,9 +973,12 @@ static HRESULT on_start_nsrequest(nsChannelBSC *This)
}
if(This->window) {
list_remove(&This->bsc.entry);
list_init(&This->bsc.entry);
update_window_doc(This->window);
if(This->window->doc != This->bsc.doc)
This->bsc.doc = This->window->doc;
list_add_head(&This->bsc.doc->bindings, &This->bsc.entry);
if(This->window->readystate != READYSTATE_LOADING)
set_ready_state(This->window, READYSTATE_LOADING);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment