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
bb1ff337
Commit
bb1ff337
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: Don't expose readyState property to elements in IE11 mode.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5962a0ea
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
htmlelem.c
dlls/mshtml/htmlelem.c
+1
-0
documentmode.js
dlls/mshtml/tests/documentmode.js
+1
-0
No files found.
dlls/mshtml/htmlelem.c
View file @
bb1ff337
...
...
@@ -6301,6 +6301,7 @@ void HTMLElement_init_dispex_info(dispex_data_t *info, compat_mode_t mode)
{
static
const
dispex_hook_t
elem2_ie11_hooks
[]
=
{
{
DISPID_IHTMLELEMENT2_DOSCROLL
,
NULL
},
{
DISPID_IHTMLELEMENT2_READYSTATE
,
NULL
},
{
DISPID_UNKNOWN
}
};
...
...
dlls/mshtml/tests/documentmode.js
View file @
bb1ff337
...
...
@@ -32,6 +32,7 @@ sync_test("elem_props", function() {
var
v
=
document
.
documentMode
;
test_exposed
(
"doScroll"
,
v
<
11
);
test_exposed
(
"readyState"
,
v
<
11
);
test_exposed
(
"querySelectorAll"
,
v
>=
8
);
test_exposed
(
"textContent"
,
v
>=
9
);
test_exposed
(
"prefix"
,
v
>=
9
);
...
...
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