1#![allow(deprecated)]slint::slint!{#[include_path=r#"/input/slint/tests/driver/driverlib/../../cases/types"#]
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 that cubic-bezier() can accept negative numbers
6
7TestCase := Rectangle {
8 animate background {
9 easing: cubic-bezier(0.600, -0.280, 0.735, 0.045); // ease-in-back
10 }
11}
12}
13