aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols2/qquickdrawer/data/itemPartialOverlayModal.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quickcontrols2/qquickdrawer/data/itemPartialOverlayModal.qml')
-rw-r--r--tests/auto/quickcontrols2/qquickdrawer/data/itemPartialOverlayModal.qml13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/auto/quickcontrols2/qquickdrawer/data/itemPartialOverlayModal.qml b/tests/auto/quickcontrols2/qquickdrawer/data/itemPartialOverlayModal.qml
new file mode 100644
index 0000000000..23aa4ca3c2
--- /dev/null
+++ b/tests/auto/quickcontrols2/qquickdrawer/data/itemPartialOverlayModal.qml
@@ -0,0 +1,13 @@
+import QtQuick 2.15
+import QtQuick.Controls 2.15
+
+Item {
+ width: 400; height: 400
+
+ Drawer {
+ edge: Qt.LeftEdge
+ height: 200
+ width: 200
+ modal: true
+ }
+}