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
c16ef729
Commit
c16ef729
authored
Sep 13, 2017
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Expose IHTMLElement6 to scripts.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e391872e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
htmlelem.c
dlls/mshtml/htmlelem.c
+3
-1
documentmode.js
dlls/mshtml/tests/documentmode.js
+3
-0
No files found.
dlls/mshtml/htmlelem.c
View file @
c16ef729
...
...
@@ -5349,8 +5349,10 @@ void HTMLElement_init_dispex_info(dispex_data_t *info, compat_mode_t mode)
if
(
mode
>=
COMPAT_MODE_IE8
)
dispex_info_add_interface
(
info
,
IElementSelector_tid
,
NULL
);
if
(
mode
>=
COMPAT_MODE_IE9
)
if
(
mode
>=
COMPAT_MODE_IE9
)
{
dispex_info_add_interface
(
info
,
IHTMLElement6_tid
,
NULL
);
dispex_info_add_interface
(
info
,
IElementTraversal_tid
,
NULL
);
}
}
static
const
tid_t
HTMLElement_iface_tids
[]
=
{
...
...
dlls/mshtml/tests/documentmode.js
View file @
c16ef729
...
...
@@ -35,6 +35,9 @@ function test_elem_props() {
test_exposed
(
"textContent"
,
v
>=
9
);
test_exposed
(
"prefix"
,
v
>=
9
);
test_exposed
(
"firstElementChild"
,
v
>=
9
);
test_exposed
(
"onsubmit"
,
v
>=
9
);
test_exposed
(
"getElementsByClassName"
,
v
>=
9
);
test_exposed
(
"removeAttributeNS"
,
v
>=
9
);
next_test
();
}
...
...
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