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
5847928b
Commit
5847928b
authored
May 11, 2010
by
Jacek Caban
Committed by
Alexandre Julliard
May 11, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLSelectElement::item implementation.
parent
b52bdff8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
2 deletions
+50
-2
htmlselect.c
dlls/mshtml/htmlselect.c
+14
-1
dom.c
dlls/mshtml/tests/dom.c
+36
-1
No files found.
dlls/mshtml/htmlselect.c
View file @
5847928b
...
...
@@ -445,7 +445,20 @@ static HRESULT WINAPI HTMLSelectElement_item(IHTMLSelectElement *iface, VARIANT
VARIANT
index
,
IDispatch
**
pdisp
)
{
HTMLSelectElement
*
This
=
HTMLSELECT_THIS
(
iface
);
FIXME
(
"(%p)->(v v %p)
\n
"
,
This
,
pdisp
);
TRACE
(
"(%p)->(%s %s %p)
\n
"
,
This
,
debugstr_variant
(
&
name
),
debugstr_variant
(
&
index
),
pdisp
);
if
(
!
pdisp
)
return
E_POINTER
;
*
pdisp
=
NULL
;
if
(
V_VT
(
&
name
)
==
VT_I4
)
{
if
(
V_I4
(
&
name
)
<
0
)
return
E_INVALIDARG
;
return
htmlselect_item
(
This
,
V_I4
(
&
name
),
pdisp
);
}
FIXME
(
"Unsupported args
\n
"
);
return
E_NOTIMPL
;
}
...
...
dlls/mshtml/tests/dom.c
View file @
5847928b
...
...
@@ -2906,7 +2906,8 @@ static IHTMLElement *get_doc_elem_by_id(IHTMLDocument2 *doc, const char *id)
static
void
test_select_elem
(
IHTMLSelectElement
*
select
)
{
IDispatch
*
disp
;
IDispatch
*
disp
,
*
disp2
;
VARIANT
name
,
index
;
HRESULT
hres
;
test_select_type
(
select
,
"select-one"
);
...
...
@@ -2927,6 +2928,40 @@ static void test_select_elem(IHTMLSelectElement *select)
ok
(
disp
!=
NULL
,
"options == NULL
\n
"
);
ok
(
iface_cmp
((
IUnknown
*
)
disp
,
(
IUnknown
*
)
select
),
"disp != select
\n
"
);
IDispatch_Release
(
disp
);
V_VT
(
&
index
)
=
VT_EMPTY
;
V_VT
(
&
name
)
=
VT_I4
;
V_I4
(
&
name
)
=
-
1
;
disp
=
(
void
*
)
0xdeadbeef
;
hres
=
IHTMLSelectElement_item
(
select
,
name
,
index
,
&
disp
);
ok
(
hres
==
E_INVALIDARG
,
"item failed: %08x, expected E_INVALIDARG
\n
"
,
hres
);
ok
(
!
disp
,
"disp = %p
\n
"
,
disp
);
V_I4
(
&
name
)
=
2
;
disp
=
(
void
*
)
0xdeadbeef
;
hres
=
IHTMLSelectElement_item
(
select
,
name
,
index
,
&
disp
);
ok
(
hres
==
S_OK
,
"item failed: %08x
\n
"
,
hres
);
ok
(
!
disp
,
"disp = %p
\n
"
,
disp
);
V_I4
(
&
name
)
=
1
;
hres
=
IHTMLSelectElement_item
(
select
,
name
,
index
,
NULL
);
ok
(
hres
==
E_POINTER
,
"item failed: %08x, expected E_POINTER
\n
"
,
hres
);
disp
=
NULL
;
hres
=
IHTMLSelectElement_item
(
select
,
name
,
index
,
&
disp
);
ok
(
hres
==
S_OK
,
"item failed: %08x
\n
"
,
hres
);
ok
(
disp
!=
NULL
,
"disp = NULL
\n
"
);
test_disp
((
IUnknown
*
)
disp
,
&
DIID_DispHTMLOptionElement
,
NULL
);
V_VT
(
&
index
)
=
VT_I4
;
V_I4
(
&
index
)
=
1
;
disp2
=
NULL
;
hres
=
IHTMLSelectElement_item
(
select
,
name
,
index
,
&
disp2
);
ok
(
hres
==
S_OK
,
"item failed: %08x
\n
"
,
hres
);
ok
(
disp2
!=
NULL
,
"disp = NULL
\n
"
);
ok
(
iface_cmp
((
IUnknown
*
)
disp
,
(
IUnknown
*
)
disp2
),
"disp != disp2
\n
"
);
IDispatch_Release
(
disp2
);
IDispatch_Release
(
disp
);
}
static
void
test_create_option_elem
(
IHTMLDocument2
*
doc
)
...
...
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