Commit fc1f50c5 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

dwrite/tests: Test font set properties that should be always available.

parent 2bc442aa
......@@ -9512,6 +9512,13 @@ static void test_fontsetbuilder(void)
hr = IDWriteFontSet_GetPropertyValues(fontset, 0, id, &exists, &values);
ok(hr == S_OK, "Failed to get property value, hr %#x.\n", hr);
if (id == DWRITE_FONT_PROPERTY_ID_WEIGHT || id == DWRITE_FONT_PROPERTY_ID_STRETCH
|| id == DWRITE_FONT_PROPERTY_ID_STYLE)
{
todo_wine
ok(exists, "Property %u expected to exist.\n", id);
}
if (!exists)
continue;
......
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