From 27f127c3e61fa7108f13b7582875681a39b752c6 Mon Sep 17 00:00:00 2001 From: Nicolas Le Cam Date: Tue, 27 Oct 2009 19:05:47 +0100 Subject: mshtml/tests: Fix events test when pointer is on a corner. --- dlls/mshtml/tests/events.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/mshtml/tests/events.c b/dlls/mshtml/tests/events.c index 9d23775..ebff925 100644 --- a/dlls/mshtml/tests/events.c +++ b/dlls/mshtml/tests/events.c @@ -1608,7 +1608,7 @@ static HWND create_container_window(void) RegisterClassExA(&wndclass); return CreateWindowA(szHTMLDocumentTest, szHTMLDocumentTest, - WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, + WS_OVERLAPPEDWINDOW | WS_ICONIC, CW_USEDEFAULT, CW_USEDEFAULT, 300, 300, NULL, NULL, NULL, NULL); } -- 1.6.3.3