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
4719c438
Commit
4719c438
authored
May 31, 2014
by
Zhenbo Li
Committed by
Alexandre Julliard
Jun 12, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLDocument2:toString method.
parent
0547c0d2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
htmldoc.c
dlls/mshtml/htmldoc.c
+11
-2
dom.c
dlls/mshtml/tests/dom.c
+7
-0
No files found.
dlls/mshtml/htmldoc.c
View file @
4719c438
...
...
@@ -1578,8 +1578,17 @@ static HRESULT WINAPI HTMLDocument_get_onerrorupdate(IHTMLDocument2 *iface, VARI
static
HRESULT
WINAPI
HTMLDocument_toString
(
IHTMLDocument2
*
iface
,
BSTR
*
String
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
String
);
return
E_NOTIMPL
;
static
const
WCHAR
objectW
[]
=
{
'['
,
'o'
,
'b'
,
'j'
,
'e'
,
'c'
,
't'
,
']'
,
0
};
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
String
);
if
(
!
String
)
return
E_INVALIDARG
;
*
String
=
SysAllocString
(
objectW
);
return
*
String
?
S_OK
:
E_OUTOFMEMORY
;
}
static
HRESULT
WINAPI
HTMLDocument_createStyleSheet
(
IHTMLDocument2
*
iface
,
BSTR
bstrHref
,
...
...
dlls/mshtml/tests/dom.c
View file @
4719c438
...
...
@@ -5243,10 +5243,17 @@ static void test_doc_elem(IHTMLDocument2 *doc)
IHTMLElement
*
elem
;
IHTMLDocument3
*
doc3
;
HRESULT
hres
;
BSTR
bstr
;
hres
=
IHTMLDocument2_QueryInterface
(
doc
,
&
IID_IHTMLDocument3
,
(
void
**
)
&
doc3
);
ok
(
hres
==
S_OK
,
"QueryInterface(IID_IHTMLDocument3) failed: %08x
\n
"
,
hres
);
hres
=
IHTMLDocument2_toString
(
doc
,
&
bstr
);
ok
(
hres
==
S_OK
,
"toString failed: %08x
\n
"
,
hres
);
ok
(
!
strcmp_wa
(
bstr
,
"[object]"
),
"toString returned %s, expected [object]
\n
"
,
wine_dbgstr_w
(
bstr
));
SysFreeString
(
bstr
);
hres
=
IHTMLDocument3_get_documentElement
(
doc3
,
&
elem
);
IHTMLDocument3_Release
(
doc3
);
ok
(
hres
==
S_OK
,
"get_documentElement failed: %08x
\n
"
,
hres
);
...
...
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