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
4238faa0
Commit
4238faa0
authored
Mar 26, 2021
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 26, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Fix navigator.toString() in IE9+ compat modes.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
53cc70ca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
omnavigator.c
dlls/mshtml/omnavigator.c
+2
-1
documentmode.js
dlls/mshtml/tests/documentmode.js
+2
-0
No files found.
dlls/mshtml/omnavigator.c
View file @
4238faa0
...
...
@@ -1315,7 +1315,8 @@ static HRESULT WINAPI OmNavigator_toString(IOmNavigator *iface, BSTR *String)
if
(
!
String
)
return
E_INVALIDARG
;
*
String
=
SysAllocString
(
L"[object]"
);
*
String
=
SysAllocString
(
dispex_compat_mode
(
&
This
->
dispex
)
<
COMPAT_MODE_IE9
?
L"[object]"
:
L"[object Navigator]"
);
return
*
String
?
S_OK
:
E_OUTOFMEMORY
;
}
...
...
dlls/mshtml/tests/documentmode.js
View file @
4238faa0
...
...
@@ -375,4 +375,6 @@ sync_test("navigator", function() {
ok
(
navigator
.
appCodeName
===
"Mozilla"
,
"appCodeName = "
+
navigator
.
appCodeName
);
ok
(
navigator
.
appName
===
(
v
<
11
?
"Microsoft Internet Explorer"
:
"Netscape"
),
"appName = "
+
navigator
.
appName
);
ok
(
navigator
.
toString
()
===
(
v
<
9
?
"[object]"
:
"[object Navigator]"
),
"navigator.toString() = "
+
navigator
.
toString
());
});
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