diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2010-01-11 06:45:58 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2010-01-11 06:45:58 (GMT) |
commit | 06775ea8c44ac2a6cbcfc2e3fa912cccfd8db90c (patch) | |
tree | da530123ec8646ac457ba30a1c86207f7117e63f | |
parent | 2be7112e69849bd0b4117ee2b6ea0789fa7bb3f0 (diff) | |
download | Qt-06775ea8c44ac2a6cbcfc2e3fa912cccfd8db90c.zip Qt-06775ea8c44ac2a6cbcfc2e3fa912cccfd8db90c.tar.gz Qt-06775ea8c44ac2a6cbcfc2e3fa912cccfd8db90c.tar.bz2 |
missed file
-rw-r--r-- | tests/auto/declarative/qmlecmascript/data/exceptionProducesWarning2.qml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmlecmascript/data/exceptionProducesWarning2.qml b/tests/auto/declarative/qmlecmascript/data/exceptionProducesWarning2.qml new file mode 100644 index 0000000..44e10c1 --- /dev/null +++ b/tests/auto/declarative/qmlecmascript/data/exceptionProducesWarning2.qml @@ -0,0 +1,7 @@ +import Qt 4.6 +import Qt.test 1.0 + +MyQmlObject { + value: { throw(new Error("JS exception")) } +} + |