Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
85da7dba
Commit
85da7dba
authored
Apr 05, 2021
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 05, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Add IHTMLStyleElement::onload and onerror implementation.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
495d9b5f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
htmlstyleelem.c
dlls/mshtml/htmlstyleelem.c
+8
-8
No files found.
dlls/mshtml/htmlstyleelem.c
View file @
85da7dba
...
...
@@ -156,29 +156,29 @@ static HRESULT WINAPI HTMLStyleElement_get_onreadystatechange(IHTMLStyleElement
static
HRESULT
WINAPI
HTMLStyleElement_put_onload
(
IHTMLStyleElement
*
iface
,
VARIANT
v
)
{
HTMLStyleElement
*
This
=
impl_from_IHTMLStyleElement
(
iface
);
FIXM
E
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
E_NOTIMPL
;
TRAC
E
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
IHTMLElement6_put_onload
(
&
This
->
element
.
IHTMLElement6_iface
,
v
)
;
}
static
HRESULT
WINAPI
HTMLStyleElement_get_onload
(
IHTMLStyleElement
*
iface
,
VARIANT
*
p
)
{
HTMLStyleElement
*
This
=
impl_from_IHTMLStyleElement
(
iface
);
FIXM
E
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
TRAC
E
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
IHTMLElement6_get_onload
(
&
This
->
element
.
IHTMLElement6_iface
,
p
)
;
}
static
HRESULT
WINAPI
HTMLStyleElement_put_onerror
(
IHTMLStyleElement
*
iface
,
VARIANT
v
)
{
HTMLStyleElement
*
This
=
impl_from_IHTMLStyleElement
(
iface
);
FIXM
E
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
E_NOTIMPL
;
TRAC
E
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
IHTMLElement6_put_onerror
(
&
This
->
element
.
IHTMLElement6_iface
,
v
)
;
}
static
HRESULT
WINAPI
HTMLStyleElement_get_onerror
(
IHTMLStyleElement
*
iface
,
VARIANT
*
p
)
{
HTMLStyleElement
*
This
=
impl_from_IHTMLStyleElement
(
iface
);
FIXM
E
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
TRAC
E
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
IHTMLElement6_get_onerror
(
&
This
->
element
.
IHTMLElement6_iface
,
p
)
;
}
static
HRESULT
WINAPI
HTMLStyleElement_get_styleSheet
(
IHTMLStyleElement
*
iface
,
IHTMLStyleSheet
**
p
)
...
...
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