mirror of
https://github.com/reactos/wine.git
synced 2024-12-13 14:26:40 +00:00
usp10/tests: Add a latn shaping test with ligatures.
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Aric Stewart <aric@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e2f677212a
commit
04cd6029ea
@ -1185,6 +1185,13 @@ static void test_ScriptShapeOpenType(HDC hdc)
|
||||
{1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
|
||||
{0,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}} };
|
||||
|
||||
static const WCHAR test3[] = {'t', 't', 'f', 'f', 'f', 'i', 0};
|
||||
static const shapeTest_char t3_c[] = {{0, {0, 0}}, {0, {0, 0}}, {0, {0, 0}},
|
||||
{1, {0, 0}}, {1, {0, 0}}, {1, {0, 0}}};
|
||||
static const shapeTest_glyph t3_g[] = {
|
||||
{1, {{SCRIPT_JUSTIFY_CHARACTER, 1, 0, 0, 0, 0}, 0}},
|
||||
{1, {{SCRIPT_JUSTIFY_CHARACTER, 1, 0, 0, 0, 0}, 0}}};
|
||||
|
||||
/* Hebrew */
|
||||
static const WCHAR test_hebrew[] = {0x05e9, 0x05dc, 0x05d5, 0x05dd,0};
|
||||
static const shapeTest_char hebrew_c[] = {{3,{0,0}},{2,{0,0}},{1,{0,0}},{0,{0,0}}};
|
||||
@ -1467,6 +1474,14 @@ static void test_ScriptShapeOpenType(HDC hdc)
|
||||
|
||||
test_shape_ok(hdc, test2, 4, &Control, &State, 1, 4, t2_c, glyph_test);
|
||||
|
||||
test_valid = find_font_for_range(hdc, "Calibri", 0, test3[0], &hfont, &hfont_orig);
|
||||
if (hfont != NULL)
|
||||
{
|
||||
test_shape_ok_valid(test_valid, hdc, test3, 6, &Control, &State, 0, 2, t3_c, t3_g);
|
||||
SelectObject(hdc, hfont_orig);
|
||||
DeleteObject(hfont);
|
||||
}
|
||||
|
||||
test_valid = find_font_for_range(hdc, "Microsoft Sans Serif", 11, test_hebrew[0], &hfont, &hfont_orig);
|
||||
if (hfont != NULL)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user