Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2b94ad52
Commit
2b94ad52
authored
Mar 18, 2010
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Make sure that readState is READYSTATE_LOADING in read_stream_data.
parent
d16bf5f9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
navigate.c
dlls/mshtml/navigate.c
+4
-1
events.c
dlls/mshtml/tests/events.c
+0
-1
No files found.
dlls/mshtml/navigate.c
View file @
2b94ad52
...
...
@@ -972,8 +972,11 @@ static HRESULT read_stream_data(nsChannelBSC *This, IStream *stream)
on_start_nsrequest
(
This
);
if
(
This
->
window
)
if
(
This
->
window
)
{
update_window_doc
(
This
->
window
);
if
(
This
->
window
->
readystate
!=
READYSTATE_LOADING
)
set_ready_state
(
This
->
window
,
READYSTATE_LOADING
);
}
}
This
->
bsc
.
readed
+=
This
->
nsstream
->
buf_size
;
...
...
dlls/mshtml/tests/events.c
View file @
2b94ad52
...
...
@@ -1310,7 +1310,6 @@ static void test_onreadystatechange(IHTMLDocument2 *doc)
SET_EXPECT
(
iframe_onreadystatechange_interactive
);
SET_EXPECT
(
iframe_onreadystatechange_complete
);
pump_msgs
(
&
called_iframe_onreadystatechange_complete
);
todo_wine
CHECK_CALLED
(
iframe_onreadystatechange_loading
);
CHECK_CALLED
(
iframe_onreadystatechange_interactive
);
CHECK_CALLED
(
iframe_onreadystatechange_complete
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment