diff options
Diffstat (limited to 'tests/auto/declarative/qmldom')
-rw-r--r-- | tests/auto/declarative/qmldom/MyComponent.qml | 2 | ||||
-rw-r--r-- | tests/auto/declarative/qmldom/top.qml | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmldom/MyComponent.qml b/tests/auto/declarative/qmldom/MyComponent.qml new file mode 100644 index 0000000..0940753 --- /dev/null +++ b/tests/auto/declarative/qmldom/MyComponent.qml @@ -0,0 +1,2 @@ +Item { +} diff --git a/tests/auto/declarative/qmldom/top.qml b/tests/auto/declarative/qmldom/top.qml new file mode 100644 index 0000000..142d4c8 --- /dev/null +++ b/tests/auto/declarative/qmldom/top.qml @@ -0,0 +1,4 @@ +MyComponent { + width: 100 + height: 100 +} |