From 8b4c120453461cd40f5ae38f3bfd8f1d30f12678 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Fri, 19 Sep 2014 13:19:47 +0200 Subject: [PATCH] mshtml: Make listStyle tests less strict about value order. --- dlls/mshtml/tests/style.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/tests/style.c b/dlls/mshtml/tests/style.c index d8c86b15671..ed9338dcd6d 100644 --- a/dlls/mshtml/tests/style.c +++ b/dlls/mshtml/tests/style.c @@ -2351,7 +2351,7 @@ static void test_body_style(IHTMLStyle *style) if (hres != E_INVALIDARG) { hres = IHTMLStyle_get_listStyle(style, &str); ok(hres == S_OK, "get_listStyle failed: %08x\n", hres); - ok(strstr_wa(str, "decimal-leading-zero") == str && + ok(strstr_wa(str, "decimal-leading-zero") && strstr_wa(str, "none") != NULL && strstr_wa(str, "inside") != NULL, "listStyle = %s\n", wine_dbgstr_w(str)); -- 2.11.4.GIT