summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data
Commit message (Collapse)AuthorAgeFilesLines
* Don't release register prematurelyAaron Kennedy2011-08-041-0/+7
| | | | Task-number: QTBUG-20648
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml-staging into ↵Qt Continuous Integration System2011-05-041-0/+11
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | master-integration * 'master' of scm.dev.nokia.troll.no:qt/qt-qml-staging: QmlViewer: Translate UI Fix insert and scroll to bottom case QDeclarativeDebug: Fix test case QDeclarativeDebug: Handle case where client with ongoing queries is deleted Remove compile warning Fix QUnifiedTimer bug Stop the animation driver when there are no more animations. Optimization and benchmark for setting object properties from QML. Add Constant and Final flags to QMetaObjectBuilder Fixed QML TextEdit docs Make -no-opengl exist on other platforms Only ask for name when the user goes on the high score list.
| * Merge branch 'master' of ../qt-qml-stagingMichael Brasser2011-04-142-4/+6
| |\
| * \ Merge ../qt-qml-stagingYann Bodson2011-03-291-0/+6
| |\ \
| * | | Optimization and benchmark for setting object properties from QML.Michael Brasser2011-03-161-0/+11
| | | | | | | | | | | | | | | | | | | | Change-Id: Ib923e5d3946e99001ef682a9dd8ca6d7788818a3 Reviewed-by: Aaron Kennedy
* | | | Resolve unqualified attached properties correctlyAaron Kennedy2011-04-151-0/+22
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When resolving unqualified attached properties, we should use the scope object, not the context object. Otherwise they will always resolve to the root object of the context, regardless of where they are written. In this example, QtObject { id: root QtObject { id: me property int a: AttachedObject.x } } the attached object should be loaded on the "me" object, not the "root" object. Change-Id: I386f886f62df7b8020c3ff703cdfc891d5739713 Reviewed-by: Martin Jones
* | | Allow enum values to be used as signal parametersBea Lam2011-04-122-4/+6
| |/ |/| | | | | | | | | | | | | | | | | | | | | The fix does not work for enums declared outside of the class that emits the signal, since in this case it is not possible to access the metaobject of the class that declared the enum. However the fix makes a special case for the Qt namespace to allow enums in this namespace to be used. Task-number: QTBUG-15983 Change-Id: I6f72255b07010311a20fe068bd97c7db7b294d9b Reviewed-by: Aaron Kennedy
* | Fix writing to an attached property from script.Michael Brasser2011-03-211-0/+6
|/ | | | | Change-Id: I80c228092271d4d9c5694607da7a123d06739731 Reviewed-by: Aaron Kennedy
* Allow unknown types to be passed opaquely through signalsAaron Kennedy2011-02-031-0/+5
| | | | Task-number: QTBUG-16683
* Ensure simple objects also get the appropriate property cacheAaron Kennedy2011-01-281-0/+14
| | | | Task-number: QTBUG-13849
* Allow property bindings to be easily created from JavaScriptBea Lam2011-01-272-3/+80
| | | | | | | | Properties can now be assigned a function that returns the binding value. Task-number: QTBUG-14964 Reviewed-by: Aaron Kennedy
* Support property/method versions in QMLMartin Jones2011-01-056-0/+98
| | | | | | | | Use metaobject revisioning to exclude properties/revisions added in later versions from interfering with earlier versions. Task-number: QTBUG-13451 Reviewed-by: Aaron Kennedy
* Fix spelling in declarative autotestsJoona Petrell2010-12-201-0/+0
| | | | | Task-number: Reviewed-by: Martin Jones
* Improve consistency in handling of aliases, bindings and value typesAaron Kennedy2010-11-2911-0/+293
| | | | Task-number: QTBUG-13719
* Fix QML ecmascript autotest.Yann Bodson2010-11-081-1/+2
|
* Add testcase for QTBUG-13719.Michael Brasser2010-11-042-0/+17
|
* Properties take precedence over methodsAaron Kennedy2010-10-191-4/+4
| | | | | | | | Properties have always had precedence over methods in C++ classes, but erroneously, not in types declared in QML. This was because the property cache for the two went through a different code path. With changes 0c06e59577df1ec715e67d6d5842800bcec24945 and c407d79f79c67f2f2bb84efc93061fd57fe4cf54 the code paths were unified and this bug was exposed.
* Correctly splice properties from derived metaobjects togetherAaron Kennedy2010-10-141-0/+10
| | | | Task-number: QTBUG-14449
* Allow objectName to be used in QML bindingsAaron Kennedy2010-10-111-0/+8
| | | | Task-number: QTBUG-13999
* Replace all occurances of "Qt 4.7" with "QtQuick 1.0"Aaron Kennedy2010-09-2974-74/+74
| | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones
* If a type is registered under several names, share the attached property objectAaron Kennedy2010-09-281-0/+16
| | | | Task-number: QTBUG-13799
* Support passing QObject derived types to QML methodsAaron Kennedy2010-09-032-0/+20
| | | | QTBUG-13047
* Support JS "in" operator on QML objectsAaron Kennedy2010-09-011-0/+7
| | | | QTBUG-12837
* Prevent calling deleteLater() from QMLAaron Kennedy2010-08-311-0/+14
| | | | QTBUG-13045
* Ignore non-scriptable properties in QMLAaron Kennedy2010-08-311-0/+19
| | | | QTBUG-13043
* Make autotests work with qreal == float (in addition to double).Warwick Allison2010-07-022-2/+2
| | | | Task-number: QTBUG-11853
* Fix assertAaron Kennedy2010-06-252-0/+9
| | | | QTBUG-11600
* Disallow global object properties as property namesAaron Kennedy2010-06-251-2/+2
| | | | QTBUG-11605
* Reading a property that doesn't exist throws a ReferenceError testAaron Kennedy2010-06-251-0/+12
| | | | QTBUG-11606
* References to undefined variables throws a ReferenceErrorAaron Kennedy2010-06-233-3/+11
| | | | This is consistent with normal JavaScript
* Test e75088323ae15604139ddfd66b85cc3b8d43abebWarwick Allison2010-05-201-0/+4
| | | | Task-number: QTBUG-10820
* Make Qt.include() work for js files that have '.pragma library'Bea Lam2010-05-183-0/+22
|
* Check for acquireReg() failureAaron Kennedy2010-05-171-0/+26
| | | | QTBUG-10696
* Add Qt.include() method for scoped inclusion of JavaScript filesAaron Kennedy2010-05-1415-0/+173
|
* Merge branch '4.7' of git@scm.dev.nokia.troll.no:qt/qt-qml into 4.7Alan Alpert2010-05-051-2/+2
|\
| * Null objects should appear as JS nullAaron Kennedy2010-05-051-2/+2
| |
* | Make component.createObject require a parent argumentAlan Alpert2010-05-051-2/+2
|/ | | | | | | | | For graphical objects (the common case) a common mistake is to not parent a dynamically created item. Since you almost always want to add a parent, and it's hard for a beginner to diagnose this problem, a parent is now a required argument and dealt with by the createObject function. Task-number: QTBUG-10110
* Ensure eval and Function are in the correct scopeAaron Kennedy2010-04-302-0/+42
| | | | QTBUG-10236
* Warn on assigning a function to a QML property.Michael Brasser2010-04-292-0/+18
| | | | | | | | | This is not supported, and should not silently be converting the function to a string. See QTBUG-10302 for why we check !isRegExp as well as isFunction. Task-number: QTBUG-10237 Reviewed-by: Aaron Kennedy
* Cleanup guards used in synthesized QML meta objectsAaron Kennedy2010-04-291-0/+13
| | | | QTCREATORBUG-1289
* Suppress transient errors from bindingsAaron Kennedy2010-04-291-0/+14
| | | | | | | If a binding generates > 1 transient error, only the first was being suppressed. QTBUG-10274
* AutotestsAaron Kennedy2010-04-271-0/+10
|
* Fix versioning of Qt Declarative's in-built typesAlan Alpert2010-04-2154-54/+54
| | | | | | Since we aren't releasing for 4.6, all types are new in 4.7. Task-number: QTBUG-10081
* Update test files to new syntaxAlan Alpert2010-04-212-5/+5
|
* Allow null to be assigned to object propertiesAaron Kennedy2010-04-202-0/+20
|
* Missing fileAaron Kennedy2010-04-201-0/+7
|
* Remove Script {} supportAaron Kennedy2010-04-1927-196/+50
|
* Don't crash on deleted objects assigned to variant propertiesAaron Kennedy2010-04-191-1/+1
| | | | QTBUG-8077
* Reduce warnings at shutdownAaron Kennedy2010-04-142-0/+15
| | | | | | QTBUG-9799 Reviewed-by: Alexis Menard
* Reduce warnings at shutdownAaron Kennedy2010-04-141-0/+9
| | | | QTBUG-9799