aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols/qquickdrawer/data/window.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quickcontrols/qquickdrawer/data/window.qml')
-rw-r--r--tests/auto/quickcontrols/qquickdrawer/data/window.qml19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/auto/quickcontrols/qquickdrawer/data/window.qml b/tests/auto/quickcontrols/qquickdrawer/data/window.qml
new file mode 100644
index 0000000000..fbdc4047d7
--- /dev/null
+++ b/tests/auto/quickcontrols/qquickdrawer/data/window.qml
@@ -0,0 +1,19 @@
+// Copyright (C) 2017 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+import QtQuick
+import QtQuick.Window
+import QtQuick.Controls
+
+Window {
+ width: 400
+ height: 400
+
+ property alias drawer: drawer
+
+ Drawer {
+ id: drawer
+ width: 200
+ height: 200
+ }
+}