aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml
diff options
context:
space:
mode:
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 0000000000..618a65f063
--- /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
+ }
+}