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
a9e5a233
Commit
a9e5a233
authored
Sep 13, 2023
by
Gabriel Ivăncescu
Committed by
Alexandre Julliard
Sep 14, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Traverse and unlink ImageElements using the dispex.
Signed-off-by:
Gabriel Ivăncescu
<
gabrielopcode@gmail.com
>
parent
9d10b639
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
8 deletions
+22
-8
htmlimg.c
dlls/mshtml/htmlimg.c
+22
-8
No files found.
dlls/mshtml/htmlimg.c
View file @
a9e5a233
...
...
@@ -675,17 +675,24 @@ static HRESULT HTMLImgElement_get_readystate(HTMLDOMNode *iface, BSTR *p)
return
IHTMLImgElement_get_readyState
(
&
This
->
IHTMLImgElement_iface
,
p
);
}
static
void
HTMLImgElement_traverse
(
HTMLDOMNode
*
iface
,
nsCycleCollectionTraversalCallback
*
cb
)
static
inline
HTMLImg
*
HTMLImg_from_DispatchEx
(
DispatchEx
*
iface
)
{
HTMLImg
*
This
=
impl_from_HTMLDOMNode
(
iface
);
return
CONTAINING_RECORD
(
iface
,
HTMLImg
,
element
.
node
.
event_target
.
dispex
);
}
static
void
HTMLImgElement_traverse
(
DispatchEx
*
dispex
,
nsCycleCollectionTraversalCallback
*
cb
)
{
HTMLImg
*
This
=
HTMLImg_from_DispatchEx
(
dispex
);
HTMLDOMNode_traverse
(
dispex
,
cb
);
if
(
This
->
nsimg
)
note_cc_edge
((
nsISupports
*
)
This
->
nsimg
,
"
This->
nsimg"
,
cb
);
note_cc_edge
((
nsISupports
*
)
This
->
nsimg
,
"nsimg"
,
cb
);
}
static
void
HTMLImgElement_unlink
(
HTMLDOMNode
*
iface
)
static
void
HTMLImgElement_unlink
(
DispatchEx
*
dispex
)
{
HTMLImg
*
This
=
impl_from_HTMLDOMNode
(
iface
);
HTMLImg
*
This
=
HTMLImg_from_DispatchEx
(
dispex
);
HTMLDOMNode_unlink
(
dispex
);
unlink_ref
(
&
This
->
nsimg
);
}
...
...
@@ -698,8 +705,15 @@ static const NodeImplVtbl HTMLImgElementImplVtbl = {
.
handle_event
=
HTMLElement_handle_event
,
.
get_attr_col
=
HTMLElement_get_attr_col
,
.
get_readystate
=
HTMLImgElement_get_readystate
,
.
traverse
=
HTMLImgElement_traverse
,
.
unlink
=
HTMLImgElement_unlink
};
static
const
event_target_vtbl_t
HTMLImgElement_event_target_vtbl
=
{
{
HTMLELEMENT_DISPEX_VTBL_ENTRIES
,
.
traverse
=
HTMLImgElement_traverse
,
.
unlink
=
HTMLImgElement_unlink
},
HTMLELEMENT_EVENT_TARGET_VTBL_ENTRIES
,
};
static
const
tid_t
HTMLImgElement_iface_tids
[]
=
{
...
...
@@ -721,7 +735,7 @@ static void HTMLImgElement_init_dispex_info(dispex_data_t *info, compat_mode_t m
static
dispex_static_data_t
HTMLImgElement_dispex
=
{
"HTMLImageElement"
,
&
HTMLElement_event_target_vtbl
.
dispex_vtbl
,
&
HTML
Img
Element_event_target_vtbl
.
dispex_vtbl
,
DispHTMLImg_tid
,
HTMLImgElement_iface_tids
,
HTMLImgElement_init_dispex_info
...
...
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