aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickdesignersupport/data/componentTest.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickdesignersupport/data/componentTest.qml')
-rw-r--r--tests/auto/quick/qquickdesignersupport/data/componentTest.qml33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickdesignersupport/data/componentTest.qml b/tests/auto/quick/qquickdesignersupport/data/componentTest.qml
new file mode 100644
index 0000000000..a30cfafc90
--- /dev/null
+++ b/tests/auto/quick/qquickdesignersupport/data/componentTest.qml
@@ -0,0 +1,33 @@
+import QtQuick 2.9
+import QtQuick.Window 2.3
+
+Item {
+ visible: true
+ width: 640
+ height: 480
+
+ Component01 {
+ id: rectangle
+ x: 205
+ y: 70
+ width: 251
+ height: 242
+ }
+
+ Item {
+ id: element
+ x: 14
+ y: 39
+ width: 285
+ height: 304
+
+ Rectangle {
+ id: rectangle1
+ x: 43
+ y: 52
+ width: 200
+ height: 200
+ color: "#ffffff"
+ }
+ }
+}