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
fe4cb844
Commit
fe4cb844
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_httpEquiv implementation.
parent
5bbcdf7b
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 @
fe4cb844
...
...
@@ -104,8 +104,19 @@ static HRESULT WINAPI HTMLMetaElement_put_httpEquiv(IHTMLMetaElement *iface, BST
static
HRESULT
WINAPI
HTMLMetaElement_get_httpEquiv
(
IHTMLMetaElement
*
iface
,
BSTR
*
p
)
{
HTMLMetaElement
*
This
=
impl_from_IHTMLMetaElement
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
nsAString
httpequiv_str
,
val_str
;
nsresult
nsres
;
static
const
PRUnichar
httpEquivW
[]
=
{
'h'
,
't'
,
't'
,
'p'
,
'-'
,
'e'
,
'q'
,
'u'
,
'i'
,
'v'
,
0
};
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
nsAString_InitDepend
(
&
httpequiv_str
,
httpEquivW
);
nsAString_Init
(
&
val_str
,
NULL
);
nsres
=
nsIDOMHTMLElement_GetAttribute
(
This
->
element
.
nselem
,
&
httpequiv_str
,
&
val_str
);
nsAString_Finish
(
&
httpequiv_str
);
return
return_nsstr
(
nsres
,
&
val_str
,
p
);
}
static
HRESULT
WINAPI
HTMLMetaElement_put_content
(
IHTMLMetaElement
*
iface
,
BSTR
v
)
...
...
dlls/mshtml/tests/dom.c
View file @
fe4cb844
...
...
@@ -3275,6 +3275,22 @@ static void _test_meta_content(unsigned line, IUnknown *unk, const char *exconte
IHTMLMetaElement_Release
(
meta
);
}
#define test_meta_httpequiv(a,b) _test_meta_httpequiv(__LINE__,a,b)
static
void
_test_meta_httpequiv
(
unsigned
line
,
IUnknown
*
unk
,
const
char
*
exval
)
{
IHTMLMetaElement
*
meta
;
BSTR
val
=
NULL
;
HRESULT
hres
;
meta
=
_get_metaelem_iface
(
line
,
unk
);
hres
=
IHTMLMetaElement_get_httpEquiv
(
meta
,
&
val
);
ok_
(
__FILE__
,
line
)(
hres
==
S_OK
,
"get_httpEquiv failed: %08x
\n
"
,
hres
);
ok_
(
__FILE__
,
line
)(
!
strcmp_wa
(
val
,
exval
),
"httpEquiv = %s, expected %s
\n
"
,
wine_dbgstr_w
(
val
),
exval
);
SysFreeString
(
val
);
IHTMLMetaElement_Release
(
meta
);
}
#define get_elem_doc(e) _get_elem_doc(__LINE__,e)
static
IHTMLDocument2
*
_get_elem_doc
(
unsigned
line
,
IUnknown
*
unk
)
{
...
...
@@ -5306,6 +5322,7 @@ static void test_elems(IHTMLDocument2 *doc)
if
(
elem
)
{
test_meta_name
((
IUnknown
*
)
elem
,
"meta name"
);
test_meta_content
((
IUnknown
*
)
elem
,
"text/html; charset=utf-8"
);
test_meta_httpequiv
((
IUnknown
*
)
elem
,
"Content-Type"
);
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