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
4dea0b25
Commit
4dea0b25
authored
Nov 06, 2014
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 06, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLScriptElement:onerror property semi-stub implementation.
parent
c19b6dbf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
htmlscript.c
dlls/mshtml/htmlscript.c
+9
-4
No files found.
dlls/mshtml/htmlscript.c
View file @
4dea0b25
...
@@ -29,6 +29,7 @@
...
@@ -29,6 +29,7 @@
#include "wine/debug.h"
#include "wine/debug.h"
#include "mshtml_private.h"
#include "mshtml_private.h"
#include "htmlevent.h"
#include "htmlscript.h"
#include "htmlscript.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
mshtml
);
WINE_DEFAULT_DEBUG_CHANNEL
(
mshtml
);
...
@@ -290,15 +291,19 @@ static HRESULT WINAPI HTMLScriptElement_get_readyState(IHTMLScriptElement *iface
...
@@ -290,15 +291,19 @@ static HRESULT WINAPI HTMLScriptElement_get_readyState(IHTMLScriptElement *iface
static
HRESULT
WINAPI
HTMLScriptElement_put_onerror
(
IHTMLScriptElement
*
iface
,
VARIANT
v
)
static
HRESULT
WINAPI
HTMLScriptElement_put_onerror
(
IHTMLScriptElement
*
iface
,
VARIANT
v
)
{
{
HTMLScriptElement
*
This
=
impl_from_IHTMLScriptElement
(
iface
);
HTMLScriptElement
*
This
=
impl_from_IHTMLScriptElement
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
E_NOTIMPL
;
FIXME
(
"(%p)->(%s) semi-stub
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
set_node_event
(
&
This
->
element
.
node
,
EVENTID_ERROR
,
&
v
);
}
}
static
HRESULT
WINAPI
HTMLScriptElement_get_onerror
(
IHTMLScriptElement
*
iface
,
VARIANT
*
p
)
static
HRESULT
WINAPI
HTMLScriptElement_get_onerror
(
IHTMLScriptElement
*
iface
,
VARIANT
*
p
)
{
{
HTMLScriptElement
*
This
=
impl_from_IHTMLScriptElement
(
iface
);
HTMLScriptElement
*
This
=
impl_from_IHTMLScriptElement
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
get_node_event
(
&
This
->
element
.
node
,
EVENTID_ERROR
,
p
);
}
}
static
HRESULT
WINAPI
HTMLScriptElement_put_type
(
IHTMLScriptElement
*
iface
,
BSTR
v
)
static
HRESULT
WINAPI
HTMLScriptElement_put_type
(
IHTMLScriptElement
*
iface
,
BSTR
v
)
...
...
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