aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickitem2/data
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@digia.com>2013-05-08 17:53:34 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-08 19:27:41 +0200
commit98229432d781253201699a04e606414767d5f2e6 (patch)
tree6b59c69701c861298d324a2deb88e2d6eb7e51ed /tests/auto/quick/qquickitem2/data
parent06385e88556985cfd1309f1c29f261be6f6a4c74 (diff)
Revert "Mac: respect the system settings in Full Keyboard Access"
This breaks Qt Quick Controls activeFocusOnTab autotests. This reverts commit 305616a60462b668c4d0b3d19302fa90469aceb5. Change-Id: Ided59ebe99659b23e950e8269ccaa8d7d44a4fdb Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'tests/auto/quick/qquickitem2/data')
-rw-r--r--tests/auto/quick/qquickitem2/data/activeFocusOnTab6.qml144
1 files changed, 0 insertions, 144 deletions
diff --git a/tests/auto/quick/qquickitem2/data/activeFocusOnTab6.qml b/tests/auto/quick/qquickitem2/data/activeFocusOnTab6.qml
deleted file mode 100644
index 22b4d249f0..0000000000
--- a/tests/auto/quick/qquickitem2/data/activeFocusOnTab6.qml
+++ /dev/null
@@ -1,144 +0,0 @@
-import QtQuick 2.1
-
-Item {
- id: main
- objectName: "main"
- width: 800
- height: 600
- focus: true
- Component.onCompleted: button12.focus = true
- Item {
- id: sub1
- objectName: "sub1"
- width: 230
- height: 600
- anchors.top: parent.top
- anchors.left: parent.left
- Item {
- id: button11
- objectName: "button11"
- width: 100
- height: 50
- activeFocusOnTab: true
- Accessible.role: Accessible.Table
- Rectangle {
- anchors.fill: parent
- color: parent.activeFocus ? "red" : "black"
- }
-
- anchors.top: parent.top
- anchors.topMargin: 100
- }
- Item {
- id: button12
- objectName: "button12"
- activeFocusOnTab: true
- Accessible.role: Accessible.List
- Rectangle {
- anchors.fill: parent
- color: parent.activeFocus ? "red" : "black"
- }
- width: 100
- height: 50
-
- anchors.top: button11.bottom
- anchors.bottomMargin: 100
- }
- Item {
- id: button13
- objectName: "button13"
- enabled: false
- activeFocusOnTab: true
- Accessible.role: Accessible.Table
- Rectangle {
- anchors.fill: parent
- color: parent.activeFocus ? "red" : "black"
- }
- width: 100
- height: 50
-
- anchors.top: button12.bottom
- anchors.bottomMargin: 100
- }
- Item {
- id: button14
- objectName: "button14"
- visible: false
- activeFocusOnTab: true
- Accessible.role: Accessible.List
- Rectangle {
- anchors.fill: parent
- color: parent.activeFocus ? "red" : "black"
- }
- width: 100
- height: 50
-
- anchors.top: button12.bottom
- anchors.bottomMargin: 100
- }
- }
- Item {
- id: sub2
- objectName: "sub2"
- activeFocusOnTab: true
- Accessible.role: Accessible.Row
- width: 230
- height: 600
- anchors.top: parent.top
- anchors.left: sub1.right
- Item {
- id: button21
- objectName: "button21"
- width: 100
- height: 50
- activeFocusOnTab: true
- Accessible.role: Accessible.PushButton
- Rectangle {
- anchors.fill: parent
- color: parent.activeFocus ? "red" : "black"
- }
-
- anchors.top: parent.top
- anchors.topMargin: 100
- }
- Item {
- id: button22
- objectName: "button22"
- width: 100
- height: 50
- activeFocusOnTab: true
- Accessible.role: Accessible.RadioButton
- Rectangle {
- anchors.fill: parent
- color: parent.activeFocus ? "red" : "black"
- }
-
- anchors.top: button21.bottom
- anchors.bottomMargin: 100
- }
- }
- Item {
- id: sub3
- objectName: "sub3"
- width: 230
- height: 600
- anchors.top: parent.top
- anchors.left: sub2.right
- TextEdit {
- id: edit
- objectName: "edit"
- width: 230
- height: 400
- readOnly: false
- activeFocusOnTab: true
- Accessible.role: Accessible.EditableText
- wrapMode: TextEdit.Wrap
- textFormat: TextEdit.RichText
-
- text: "aaa\n"
- +"bbb\n"
- +"ccc\n"
- +"ddd\n"
- }
- }
-}