mshtml: Make listStyle tests less strict about value order.

This commit is contained in:
Jacek Caban 2014-09-19 13:19:47 +02:00 committed by Alexandre Julliard
parent 47a7d835d4
commit 8b4c120453
1 changed files with 1 additions and 1 deletions

View File

@ -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));