~ubuntu-branches/ubuntu/trusty/qtdeclarative-opensource-src/trusty-updates

« back to all changes in this revision

Viewing changes to tests/auto/quick/qquickitem/data/focusSubItemInNonFocusScope.qml

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-05 14:17:19 UTC
  • Revision ID: package-import@ubuntu.com-20130205141719-qqeyml8wslpyez52
Tags: upstream-5.0.1
ImportĀ upstreamĀ versionĀ 5.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
 
 
3
Rectangle {
 
4
    width: 400; height: 400
 
5
 
 
6
    FocusScope {
 
7
        width: 400; height: 400
 
8
        focus: true
 
9
        Item {
 
10
            width: 400; height: 400
 
11
            Item {
 
12
                id: dummy
 
13
                objectName: "dummyItem"
 
14
                focus: true
 
15
            }
 
16
            TextInput {
 
17
                id: ti
 
18
                objectName: "textInput"
 
19
                focus: true
 
20
            }
 
21
        }
 
22
    }
 
23
}