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
bdcc88a3
Commit
bdcc88a3
authored
Sep 10, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 10, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added support for DISPATCH_METHOD|DISPATCH_PROPERTYGET flags in HTMLDocumentNode_invoke.
parent
64dc6561
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
htmldoc.c
dlls/mshtml/htmldoc.c
+1
-1
vbtest.html
dlls/mshtml/tests/vbtest.html
+2
-0
No files found.
dlls/mshtml/htmldoc.c
View file @
bdcc88a3
...
...
@@ -2183,7 +2183,7 @@ static HRESULT HTMLDocumentNode_invoke(DispatchEx *dispex, DISPID id, LCID lcid,
nsresult
nsres
;
HRESULT
hres
;
if
(
flags
!=
DISPATCH_PROPERTYGET
)
{
if
(
flags
!=
DISPATCH_PROPERTYGET
&&
flags
!=
(
DISPATCH_METHOD
|
DISPATCH_PROPERTYGET
)
)
{
FIXME
(
"unsupported flags %x
\n
"
,
flags
);
return
E_NOTIMPL
;
}
...
...
dlls/mshtml/tests/vbtest.html
View file @
bdcc88a3
...
...
@@ -32,6 +32,7 @@ If true then counter = counter+1
Sub runTest()
Call ok(counter = 6, "counter = " & counter)
Call ok(isNull(document.onkeyup), "document.onkeyup is not null")
Call ok(document.formname.tagName = "FORM", "document.form.tagName = " & document.formname.tagName)
Call external.reportSuccess()
End Sub
</script>
...
...
@@ -39,5 +40,6 @@ End Sub
// We're in javascript
</script>
<body
onload=
"If true then runTest()"
>
<form
name=
"formname"
></form>
</body>
</html>
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