diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2010-10-28 08:39:35 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2010-10-28 09:16:59 (GMT) |
commit | eb286d008cf651bd0496c35fb3139cc37036882f (patch) | |
tree | 8e750107f7d33f3d5145523357117b99921f69fb /tests/auto/declarative/qmlvisual/focusscope/test3.qml | |
parent | 5a2a17ab60f8393f5e0bf47ff281eeb3e3fc3dc6 (diff) | |
download | Qt-eb286d008cf651bd0496c35fb3139cc37036882f.zip Qt-eb286d008cf651bd0496c35fb3139cc37036882f.tar.gz Qt-eb286d008cf651bd0496c35fb3139cc37036882f.tar.bz2 |
Clean up qmlvisual/focusscope tests
Remove text, to make them less platform specific
Task-number: QTBUG-14792
Diffstat (limited to 'tests/auto/declarative/qmlvisual/focusscope/test3.qml')
-rw-r--r-- | tests/auto/declarative/qmlvisual/focusscope/test3.qml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/tests/auto/declarative/qmlvisual/focusscope/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/test3.qml index 184763a..01fb580 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/test3.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/test3.qml @@ -1,9 +1,14 @@ import QtQuick 1.0 +/* + Currently selected element should be red + Pressing "9" should print the number of the currently selected item + Be sure to scroll all the way to the right, pause, and then all the way to the left +*/ Rectangle { color: "white" - width: 800 - height: 600 + width: 400 + height: 100 ListModel { id: model @@ -45,8 +50,4 @@ Rectangle { } - Text { - y: 100; x: 50 - text: "Currently selected element should be red\nPressing \"9\" should print the number of the currently selected item\nBe sure to scroll all the way to the right, pause, and then all the way to the left." - } } |