Add a test for letter spacing.

This test is approximate because the 0.5px test is off by 1px in terms of height.
This commit is contained in:
David Wendt 2020-06-04 18:04:25 -04:00
parent 6ce7ecee78
commit 74d4c25133
4 changed files with 16 additions and 0 deletions

View File

@ -211,6 +211,7 @@ swf_tests_approx! {
(stage_object_properties, "avm1/stage_object_properties", 4, 0.051),
(stage_object_properties_swf6, "avm1/stage_object_properties_swf6", 4, 0.051),
(movieclip_getbounds, "avm1/movieclip_getbounds", 1, 0.051),
(edittext_letter_spacing, "avm1/edittext_letter_spacing", 1, 1.0),
}
/// Wrapper around string slice that makes debug output `{:?}` to print string same way as `{}`.

View File

@ -0,0 +1,15 @@
//Creating left aligned text w/ wordwrap, multiline & long text
//field.textWidth
388
//field.textHeight
60
//Creating left aligned text w/ wordwrap, multiline, 0.1px letter spacing & long text
//field.textWidth
397
//field.textHeight
60
//Creating left aligned text w/ wordwrap, multiline, 0.5px letter spacing & long text
//field.textWidth
398
//field.textHeight
75

Binary file not shown.

Binary file not shown.