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
095ce18b
Commit
095ce18b
authored
Dec 09, 2008
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 10, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Skip tests on broken IE6 versions.
parent
905fcb87
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
6 deletions
+20
-6
htmldoc.c
dlls/mshtml/tests/htmldoc.c
+20
-6
No files found.
dlls/mshtml/tests/htmldoc.c
View file @
095ce18b
...
...
@@ -149,7 +149,7 @@ static BOOL expect_InPlaceUIWindow_SetActiveObject_active = TRUE;
static
BOOL
ipsex
;
static
BOOL
set_clientsite
=
FALSE
,
container_locked
=
FALSE
;
static
BOOL
readystate_set_loading
=
FALSE
,
load_from_stream
;
static
BOOL
editmode
=
FALSE
;
static
BOOL
editmode
=
FALSE
,
show_failed
;
static
int
stream_read
,
protocol_read
;
static
enum
load_state_t
{
LD_DOLOAD
,
...
...
@@ -1732,6 +1732,14 @@ static HRESULT WINAPI DocumentSite_ActivateMe(IOleDocumentSite *iface, IOleDocum
expect_status_text
=
(
load_state
==
LD_COMPLETE
?
(
LPCOLESTR
)
0xdeadbeef
:
NULL
);
hres
=
IOleDocumentView_Show
(
view
,
TRUE
);
if
(
FAILED
(
hres
))
{
win_skip
(
"Show failed
\n
"
);
if
(
activeobj
)
IOleInPlaceActiveObject_Release
(
activeobj
);
IOleDocument_Release
(
document
);
show_failed
=
TRUE
;
return
S_OK
;
}
ok
(
hres
==
S_OK
,
"Show failed: %08x
\n
"
,
hres
);
CHECK_CALLED
(
CanInPlaceActivate
);
...
...
@@ -3891,6 +3899,10 @@ static void test_HTMLDocument_hlink(void)
test_GetCurMoniker
(
unk
,
NULL
,
NULL
);
test_Persist
(
unk
);
test_Navigate
(
unk
);
if
(
show_failed
)
{
IUnknown_Release
(
unk
);
return
;
}
test_download
(
FALSE
,
TRUE
,
TRUE
);
...
...
@@ -4126,12 +4138,14 @@ START_TEST(htmldoc)
container_hwnd
=
create_container_window
();
register_protocol
();
test_HTMLDocument
(
FALSE
);
test_HTMLDocument
(
TRUE
);
test_HTMLDocument_hlink
();
test_HTMLDocument_StreamLoad
();
test_editing_mode
(
FALSE
);
test_editing_mode
(
TRUE
);
if
(
!
show_failed
)
{
test_HTMLDocument
(
FALSE
);
test_HTMLDocument
(
TRUE
);
test_HTMLDocument_StreamLoad
();
test_editing_mode
(
FALSE
);
test_editing_mode
(
TRUE
);
}
DestroyWindow
(
container_hwnd
);
CoUninitialize
();
...
...
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