From 563d289a62597fb7eb747decc85c97d4ca166e53 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Thu, 13 May 2010 17:57:35 +0200 Subject: [PATCH] mshtml: Fixed test on some IEs. --- dlls/mshtml/tests/dom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/tests/dom.c b/dlls/mshtml/tests/dom.c index 7be4fe79c9..fd4238e098 100644 --- a/dlls/mshtml/tests/dom.c +++ b/dlls/mshtml/tests/dom.c @@ -3003,7 +3003,7 @@ static void test_select_elem(IHTMLSelectElement *select) V_I4(&name) = 1; hres = IHTMLSelectElement_item(select, name, index, NULL); - ok(hres == E_POINTER, "item failed: %08x, expected E_POINTER\n", hres); + ok(hres == E_POINTER || broken(hres == E_INVALIDARG), "item failed: %08x, expected E_POINTER\n", hres); disp = NULL; hres = IHTMLSelectElement_item(select, name, index, &disp); -- 2.32.0.93.g670b81a890