Commit 8e87b923 authored by Alexandre Julliard's avatar Alexandre Julliard

user32/tests: Fix coordinates in the UpdateLayeredWindow broken case.

parent d46f8e31
......@@ -13935,7 +13935,7 @@ static void test_layered_window(void)
"wrong window rect %d,%d,%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
GetClientRect( hwnd, &rect );
ok( (rect.right == 250 && rect.bottom == 300) ||
broken(rect.right == client.right - 100 && rect.bottom == client.bottom - 50),
broken(rect.right == client.right - 50 && rect.bottom == client.bottom),
"wrong client rect %d,%d,%d,%d\n", rect.left, rect.top, rect.right, rect.bottom );
DestroyWindow( hwnd );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment