Commit 8b4c1204 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Make listStyle tests less strict about value order.

parent 47a7d835
......@@ -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));
......
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