diff options
Diffstat (limited to 'tests/auto/declarative/anchors/data/illegal2.qml')
-rw-r--r-- | tests/auto/declarative/anchors/data/illegal2.qml | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/auto/declarative/anchors/data/illegal2.qml b/tests/auto/declarative/anchors/data/illegal2.qml deleted file mode 100644 index 978be52..0000000 --- a/tests/auto/declarative/anchors/data/illegal2.qml +++ /dev/null @@ -1,13 +0,0 @@ -import Qt 4.6 - -Rectangle { - id: rect - width: 120; height: 200; color: "white" - Text { id: text1; text: "Hello" } - Text { - id: text2; - anchors.baseline: text1.baseline; - anchors.top: text1.top; - text: "World" - } -} |