Add regression tests for `underline`.

We're within 4px in every case.
This commit is contained in:
David Wendt 2020-06-18 21:47:56 -04:00
parent f097a6584e
commit 65f4d2cf1e
4 changed files with 41 additions and 0 deletions

View File

@ -216,6 +216,7 @@ swf_tests_approx! {
(edittext_margins, "avm1/edittext_margins", 1, 3.0),
(edittext_tab_stops, "avm1/edittext_tab_stops", 1, 5.0),
(edittext_bullet, "avm1/edittext_bullet", 1, 3.0),
(edittext_underline, "avm1/edittext_underline", 1, 4.0),
}
/// Wrapper around string slice that makes debug output `{:?}` to print string same way as `{}`.

View File

@ -0,0 +1,40 @@
//Creating left aligned text w/ wordwrap, multiline
//field.textWidth
241
//field.textHeight
52
//Creating center aligned text w/ wordwrap, multiline
//field.textWidth
237
//field.textHeight
52
//Creating right aligned text w/ wordwrap, multiline
//field.textWidth
237
//field.textHeight
52
//Creating justified text w/ wordwrap, multiline
//field.textWidth
237
//field.textHeight
52
//Creating left aligned text w/ wordwrap, multiline & long text
//field.textWidth
245
//field.textHeight
144
//Creating center aligned text w/ wordwrap, multiline & long text
//field.textWidth
241
//field.textHeight
144
//Creating right aligned text w/ wordwrap, multiline & long text
//field.textWidth
241
//field.textHeight
144
//Creating justified text w/ wordwrap, multiline & long text
//field.textWidth
241
//field.textHeight
144

Binary file not shown.

Binary file not shown.