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, 0 insertions, 15 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml
deleted file mode 100644
index 618a65f063..0000000000
--- a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml
+++ /dev/null
@@ -1,15 +0,0 @@
-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
- }
-}