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
114f32c8
Commit
114f32c8
authored
Oct 17, 2014
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 20, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Return S_OK in IHTMLDocument3::recalc.
parent
40ef9b2d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
htmldoc.c
dlls/mshtml/htmldoc.c
+5
-2
dom.c
dlls/mshtml/tests/dom.c
+3
-0
No files found.
dlls/mshtml/htmldoc.c
View file @
114f32c8
...
...
@@ -1820,8 +1820,11 @@ static HRESULT WINAPI HTMLDocument3_releaseCapture(IHTMLDocument3 *iface)
static
HRESULT
WINAPI
HTMLDocument3_recalc
(
IHTMLDocument3
*
iface
,
VARIANT_BOOL
fForce
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument3
(
iface
);
FIXME
(
"(%p)->(%x)
\n
"
,
This
,
fForce
);
return
E_NOTIMPL
;
WARN
(
"(%p)->(%x)
\n
"
,
This
,
fForce
);
/* Doing nothing here should be fine for us. */
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLDocument3_createTextNode
(
IHTMLDocument3
*
iface
,
BSTR
text
,
...
...
dlls/mshtml/tests/dom.c
View file @
114f32c8
...
...
@@ -7613,6 +7613,9 @@ static void test_elems(IHTMLDocument2 *doc)
IHTMLElement_Release
(
elem2
);
IHTMLElement_Release
(
elem
);
hres
=
IHTMLDocument3_recalc
(
doc3
,
VARIANT_TRUE
);
ok
(
hres
==
S_OK
,
"recalc failed: %08x
\n
"
,
hres
);
IHTMLDocument3_Release
(
doc3
);
elem
=
get_elem_by_id
(
doc
,
"s"
,
TRUE
);
...
...
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