summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml
diff options
context:
space:
mode:
authorMatthew Vogt <matthew.vogt@nokia.com>2012-01-30 14:16:15 +1000
committerMatthew Vogt <matthew.vogt@nokia.com>2012-01-30 14:16:15 +1000
commit12a5ddf456ba8549645a8cb28a8b4ed6197a14da (patch)
tree63ee2c88af936e0609a3a194f5bcc304c4c0b707 /tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml
Import relevant source from Qt 4.8
Diffstat (limited to 'tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml
new file mode 100644
index 00000000..618a65f0
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml
@@ -0,0 +1,15 @@
+import QtQuick 1.0
+import "../../shared" 1.0
+
+Rectangle {
+ id: s; width: 600; height: 100;
+ property string text: "The quick brown fox jumps over the lazy dog."
+ TestText {
+ text: s.text
+ anchors.verticalCenter: s.verticalCenter
+ }
+ TestText {
+ text: s.text
+ anchors.baseline: s.verticalCenter
+ }
+}