aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtDeclarative/bug_926.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtDeclarative/bug_926.qml')
-rw-r--r--tests/QtDeclarative/bug_926.qml17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/QtDeclarative/bug_926.qml b/tests/QtDeclarative/bug_926.qml
new file mode 100644
index 000000000..50895db1c
--- /dev/null
+++ b/tests/QtDeclarative/bug_926.qml
@@ -0,0 +1,17 @@
+import Qt 4.7
+import Example 1.0
+
+Rectangle {
+ width: 100
+ height: 62
+
+ MyClass {
+ id: myClass
+ urla: "http://www.pyside.org"
+ }
+
+ Text {
+ id: name
+ text: myClass.urla
+ }
+}