Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
f8baa370
Commit
f8baa370
authored
Sep 26, 2011
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Sep 26, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: IID_IHTMLCurrentStyle4 isn't supported on IE6.
parent
5df9ff3a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
dom.c
dlls/mshtml/tests/dom.c
+12
-1
No files found.
dlls/mshtml/tests/dom.c
View file @
f8baa370
...
...
@@ -365,7 +365,6 @@ static const IID * const cstyle_iids[] = {
&
IID_IHTMLCurrentStyle
,
&
IID_IHTMLCurrentStyle2
,
&
IID_IHTMLCurrentStyle3
,
&
IID_IHTMLCurrentStyle4
,
NULL
};
...
...
@@ -4568,8 +4567,20 @@ static void test_defaults(IHTMLDocument2 *doc)
hres
=
IHTMLElement2_get_currentStyle
(
elem2
,
&
cstyle
);
ok
(
hres
==
S_OK
,
"get_currentStyle failed: %08x
\n
"
,
hres
);
if
(
SUCCEEDED
(
hres
))
{
IUnknown
*
unk
;
test_disp
((
IUnknown
*
)
cstyle
,
&
DIID_DispHTMLCurrentStyle
,
"[object]"
);
test_ifaces
((
IUnknown
*
)
cstyle
,
cstyle_iids
);
hres
=
IHTMLCurrentStyle_QueryInterface
(
cstyle
,
&
IID_IHTMLCurrentStyle4
,
(
void
**
)
&
unk
);
if
(
SUCCEEDED
(
hres
))
IUnknown_Release
(
unk
);
else
{
/*IE6 doesn't have interface */
win_skip
(
"IID_IHTMLCurrentStyle4 not supported
\n
"
);
}
IHTMLCurrentStyle_Release
(
cstyle
);
}
IHTMLElement2_Release
(
elem2
);
...
...
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