Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
5bbcdf7b
Commit
5bbcdf7b
authored
Apr 03, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLMetaElement::get_content implementation.
parent
f4c20b02
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
2 deletions
+30
-2
htmlmeta.c
dlls/mshtml/htmlmeta.c
+13
-2
dom.c
dlls/mshtml/tests/dom.c
+17
-0
No files found.
dlls/mshtml/htmlmeta.c
View file @
5bbcdf7b
...
...
@@ -118,8 +118,19 @@ static HRESULT WINAPI HTMLMetaElement_put_content(IHTMLMetaElement *iface, BSTR
static
HRESULT
WINAPI
HTMLMetaElement_get_content
(
IHTMLMetaElement
*
iface
,
BSTR
*
p
)
{
HTMLMetaElement
*
This
=
impl_from_IHTMLMetaElement
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
nsAString
content_str
,
val_str
;
nsresult
nsres
;
static
const
PRUnichar
contentW
[]
=
{
'c'
,
'o'
,
'n'
,
't'
,
'e'
,
'n'
,
't'
,
0
};
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
nsAString_InitDepend
(
&
content_str
,
contentW
);
nsAString_Init
(
&
val_str
,
NULL
);
nsres
=
nsIDOMHTMLElement_GetAttribute
(
This
->
element
.
nselem
,
&
content_str
,
&
val_str
);
nsAString_Finish
(
&
content_str
);
return
return_nsstr
(
nsres
,
&
val_str
,
p
);
}
static
HRESULT
WINAPI
HTMLMetaElement_put_name
(
IHTMLMetaElement
*
iface
,
BSTR
v
)
...
...
dlls/mshtml/tests/dom.c
View file @
5bbcdf7b
...
...
@@ -3259,6 +3259,22 @@ static void _test_meta_name(unsigned line, IUnknown *unk, const char *exname)
IHTMLMetaElement_Release
(
meta
);
}
#define test_meta_content(a,b) _test_meta_content(__LINE__,a,b)
static
void
_test_meta_content
(
unsigned
line
,
IUnknown
*
unk
,
const
char
*
excontent
)
{
IHTMLMetaElement
*
meta
;
BSTR
content
=
NULL
;
HRESULT
hres
;
meta
=
_get_metaelem_iface
(
line
,
unk
);
hres
=
IHTMLMetaElement_get_content
(
meta
,
&
content
);
ok_
(
__FILE__
,
line
)(
hres
==
S_OK
,
"get_content failed: %08x
\n
"
,
hres
);
ok_
(
__FILE__
,
line
)(
!
strcmp_wa
(
content
,
excontent
),
"content = %s, expected %s
\n
"
,
wine_dbgstr_w
(
content
),
excontent
);
SysFreeString
(
content
);
IHTMLMetaElement_Release
(
meta
);
}
#define get_elem_doc(e) _get_elem_doc(__LINE__,e)
static
IHTMLDocument2
*
_get_elem_doc
(
unsigned
line
,
IUnknown
*
unk
)
{
...
...
@@ -5289,6 +5305,7 @@ static void test_elems(IHTMLDocument2 *doc)
elem
=
get_doc_elem_by_id
(
doc
,
"metaid"
);
if
(
elem
)
{
test_meta_name
((
IUnknown
*
)
elem
,
"meta name"
);
test_meta_content
((
IUnknown
*
)
elem
,
"text/html; charset=utf-8"
);
IHTMLElement_Release
(
elem
);
}
...
...
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