1#![allow(deprecated)]slint::slint!{#[include_path=r#"/input/slint/tests/driver/driverlib/../../cases/examples"#]
2// Copyright © SixtyFPS GmbH <info@slint.dev>
3// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial
4
5// Test for manual visual verification of default font properties of Window
6//
7
8TestCase := Window {
9 width: 800px;
10 height: 600px;
11
12 default-font-family: "Courier New";
13 default-font-size: 48px;
14
15 GridLayout {
16 Text {
17 text: "This text should be shown in 48px Courier New\nIt's a fixed width font so the characters should align";
18 }
19 }
20}
21}
22