aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeitem/data/layoutmirroring.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeitem/data/layoutmirroring.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/layoutmirroring.qml54
1 files changed, 0 insertions, 54 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/layoutmirroring.qml b/tests/auto/qtquick1/qdeclarativeitem/data/layoutmirroring.qml
deleted file mode 100644
index 866b615310..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/layoutmirroring.qml
+++ /dev/null
@@ -1,54 +0,0 @@
-import QtQuick 1.1
-
-Item {
- property bool childrenInherit: true
- Item {
- objectName: "mirrored1"
- LayoutMirroring.enabled: true
- LayoutMirroring.childrenInherit: parent.childrenInherit
- Item {
- Item {
- objectName: "notMirrored1"
- LayoutMirroring.enabled: false
- Item {
- objectName: "inheritedMirror1"
- }
- }
- Item {
- objectName: "inheritedMirror2"
- }
- }
- }
- Item {
- objectName: "mirrored2"
- LayoutMirroring.enabled: true
- LayoutMirroring.childrenInherit: false
- Item {
- objectName: "notMirrored2"
- }
- }
- Item {
- LayoutMirroring.enabled: true
- LayoutMirroring.childrenInherit: true
- Loader {
- id: loader
- }
- }
- states: State {
- name: "newContent"
- PropertyChanges {
- target: loader
- sourceComponent: component
- }
- }
- Component {
- id: component
- Item {
- objectName: "notMirrored3"
- LayoutMirroring.enabled: false
- Item {
- objectName: "inheritedMirror3"
- }
- }
- }
-}