aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/customParser.recursive.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmllint/data/customParser.recursive.qml')
-rw-r--r--tests/auto/qml/qmllint/data/customParser.recursive.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/auto/qml/qmllint/data/customParser.recursive.qml b/tests/auto/qml/qmllint/data/customParser.recursive.qml
new file mode 100644
index 0000000000..aa15460021
--- /dev/null
+++ b/tests/auto/qml/qmllint/data/customParser.recursive.qml
@@ -0,0 +1,16 @@
+import QtQuick 2.0
+
+ListModel {
+ id: listModel
+ ListElement { dataType: "rect"; color: "green"; font.color: "red"; ListElement {} Behavior on FooBar {} }
+ ListElement { dataType: "image"; source: "../shared/images/qt-logo.png" }
+ ListElement { dataType: "rect"; color: "green" }
+ ListElement { dataType: "image"; source: "../shared/images/qt-logo.png" }
+ ListElement { dataType: "rect"; color: "blue" }
+ ListElement { dataType: "rect"; color: "blue" }
+ ListElement { dataType: "rect"; color: "blue" }
+ ListElement { dataType: "rect"; color: "blue" }
+ ListElement { dataType: "rect"; color: "blue" }
+ ListElement { dataType: "rect"; color: "blue" }
+}
+