Commit b3d7896a authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

user32/tests: Add a test for OpenClipboard twice with non-zero hwnd.

parent b267cc29
......@@ -66,6 +66,7 @@ static void test_ClipboardOwner(void)
ok( ret, "CloseClipboard error %d\n", GetLastError());
ok(OpenClipboard(hWnd1), "OpenClipboard failed\n");
todo_wine ok(OpenClipboard(hWnd1), "OpenClipboard second time in the same hwnd failed\n");
SetLastError(0xdeadbeef);
ret = OpenClipboard(hWnd2);
......
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