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

« back to all changes in this revision

Viewing changes to tests/auto/qml/qqmlecmascript/data/sharedAttachedObject.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 Qt.test 1.0
 
2
import QtQuick 2.0
 
3
 
 
4
MyQmlObject {
 
5
    id: root
 
6
    property bool test1: false
 
7
    property bool test2: false
 
8
 
 
9
    MyQmlObject.value2: 7
 
10
 
 
11
    Component.onCompleted: {
 
12
        test1 = root.MyQmlObject.value2 == 7;
 
13
        test2 = root.MyQmlObjectAlias.value2 == 7;
 
14
    }
 
15
}
 
16