aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativetext/data
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativetext/data')
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/alignments.qml41
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/alignments_cb.pngbin496 -> 0 bytes
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/alignments_cc.pngbin556 -> 0 bytes
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/alignments_ct.pngbin533 -> 0 bytes
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/alignments_lb.pngbin496 -> 0 bytes
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/alignments_lc.pngbin535 -> 0 bytes
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/alignments_lt.pngbin514 -> 0 bytes
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/alignments_rb.pngbin505 -> 0 bytes
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/alignments_rc.pngbin559 -> 0 bytes
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/alignments_rt.pngbin539 -> 0 bytes
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/elideimplicitwidth.qml7
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesLocal.qml5
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesLocalError.qml5
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesRemote.qml5
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesRemoteError.qml5
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/horizontalAlignment_RightToLeft.qml23
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/http/exists.pngbin2738 -> 0 bytes
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/lineCount.qml15
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/lineHeight.qml15
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/qtbug_14734.qml10
-rw-r--r--tests/auto/qtquick1/qdeclarativetext/data/rotated.qml18
21 files changed, 0 insertions, 149 deletions
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/alignments.qml b/tests/auto/qtquick1/qdeclarativetext/data/alignments.qml
deleted file mode 100644
index 25105f6789..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/alignments.qml
+++ /dev/null
@@ -1,41 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: top
- width: 70; height: 70;
-
- property alias horizontalAlignment: t.horizontalAlignment
- property alias verticalAlignment: t.verticalAlignment
- property alias wrapMode: t.wrapMode
- property alias running: timer.running
- property string txt: "Test"
-
- Rectangle {
- anchors.centerIn: parent
- width: 40
- height: 40
- color: "green"
-
- Text {
- id: t
-
- anchors.fill: parent
- horizontalAlignment: Text.AlignRight
- verticalAlignment: Text.AlignBottom
- wrapMode: Text.WordWrap
- text: top.txt
- }
- Timer {
- id: timer
-
- interval: 1
- running: true
- repeat: true
- onTriggered: {
- top.txt = top.txt + "<br>more " + top.txt.length;
- if (top.txt.length > 50)
- running = false
- }
- }
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/alignments_cb.png b/tests/auto/qtquick1/qdeclarativetext/data/alignments_cb.png
deleted file mode 100644
index cf6199a418..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/alignments_cb.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/alignments_cc.png b/tests/auto/qtquick1/qdeclarativetext/data/alignments_cc.png
deleted file mode 100644
index f81ccb4238..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/alignments_cc.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/alignments_ct.png b/tests/auto/qtquick1/qdeclarativetext/data/alignments_ct.png
deleted file mode 100644
index 9ba64125d5..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/alignments_ct.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/alignments_lb.png b/tests/auto/qtquick1/qdeclarativetext/data/alignments_lb.png
deleted file mode 100644
index 1b50a81f3d..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/alignments_lb.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/alignments_lc.png b/tests/auto/qtquick1/qdeclarativetext/data/alignments_lc.png
deleted file mode 100644
index f041b868f8..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/alignments_lc.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/alignments_lt.png b/tests/auto/qtquick1/qdeclarativetext/data/alignments_lt.png
deleted file mode 100644
index c75e0d158e..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/alignments_lt.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/alignments_rb.png b/tests/auto/qtquick1/qdeclarativetext/data/alignments_rb.png
deleted file mode 100644
index b06a5da715..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/alignments_rb.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/alignments_rc.png b/tests/auto/qtquick1/qdeclarativetext/data/alignments_rc.png
deleted file mode 100644
index e468857cd0..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/alignments_rc.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/alignments_rt.png b/tests/auto/qtquick1/qdeclarativetext/data/alignments_rt.png
deleted file mode 100644
index 576715ffce..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/alignments_rt.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/elideimplicitwidth.qml b/tests/auto/qtquick1/qdeclarativetext/data/elideimplicitwidth.qml
deleted file mode 100644
index 60ae15c4e1..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/elideimplicitwidth.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 1.1
-
-Text {
- text: "Hello World"
- elide: Text.ElideRight
- width: 30
-}
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesLocal.qml b/tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesLocal.qml
deleted file mode 100644
index ee9b95a2a7..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesLocal.qml
+++ /dev/null
@@ -1,5 +0,0 @@
-import QtQuick 1.0
-
-Text {
- text: "<img src='http/exists.png'>"
-}
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesLocalError.qml b/tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesLocalError.qml
deleted file mode 100644
index 4dc0d3e16f..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesLocalError.qml
+++ /dev/null
@@ -1,5 +0,0 @@
-import QtQuick 1.0
-
-Text {
- text: "<img src='http/notexists.png'>"
-}
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesRemote.qml b/tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesRemote.qml
deleted file mode 100644
index 438f4a06d3..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesRemote.qml
+++ /dev/null
@@ -1,5 +0,0 @@
-import QtQuick 1.0
-
-Text {
- text: "<img src='http://127.0.0.1:14453/exists.png'>"
-}
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesRemoteError.qml b/tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesRemoteError.qml
deleted file mode 100644
index c24bf24f9c..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/embeddedImagesRemoteError.qml
+++ /dev/null
@@ -1,5 +0,0 @@
-import QtQuick 1.0
-
-Text {
- text: "<img src='http://127.0.0.1:14453/notexists.png'>"
-}
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/horizontalAlignment_RightToLeft.qml b/tests/auto/qtquick1/qdeclarativetext/data/horizontalAlignment_RightToLeft.qml
deleted file mode 100644
index 4f58944672..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/horizontalAlignment_RightToLeft.qml
+++ /dev/null
@@ -1,23 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: top
- width: 200; height: 70;
-
- property alias horizontalAlignment: text.horizontalAlignment
- property string text: "اختبا"
-
- Rectangle {
- anchors.centerIn: parent
- width: 180
- height: 20
- color: "green"
-
- Text {
- id: text
- objectName: "text"
- anchors.fill: parent
- text: top.text
- }
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/http/exists.png b/tests/auto/qtquick1/qdeclarativetext/data/http/exists.png
deleted file mode 100644
index 399bd0b1d9..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/http/exists.png
+++ /dev/null
Binary files differ
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/lineCount.qml b/tests/auto/qtquick1/qdeclarativetext/data/lineCount.qml
deleted file mode 100644
index 63817f6f2a..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/lineCount.qml
+++ /dev/null
@@ -1,15 +0,0 @@
-import QtQuick 1.1
-
-Item {
- width: 200
- height: 200
-
- Text {
- id: myText
- objectName: "myText"
- width: 200
- wrapMode: Text.WordWrap
- maximumLineCount: undefined
- text: "Testing that maximumLines, visibleLines, and totalLines works properly in the autotests. The quick brown fox jumped over the lazy anything with the letter 'g'."
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/lineHeight.qml b/tests/auto/qtquick1/qdeclarativetext/data/lineHeight.qml
deleted file mode 100644
index 851d871192..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/lineHeight.qml
+++ /dev/null
@@ -1,15 +0,0 @@
-import QtQuick 1.1
-
-Item {
- width: 200
- height: 200
-
- Text {
- id: myText
- objectName: "myText"
- width: 200
- wrapMode: Text.WordWrap
- font.pixelSize: 13
- text: "Lorem ipsum sit amet, consectetur adipiscing elit. Integer felis nisl, varius in pretium nec, venenatis non erat. Proin lobortis interdum dictum."
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/qtbug_14734.qml b/tests/auto/qtquick1/qdeclarativetext/data/qtbug_14734.qml
deleted file mode 100644
index bd07d66727..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/qtbug_14734.qml
+++ /dev/null
@@ -1,10 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 640
- height: 480
-
- Text {
- text: "í "
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativetext/data/rotated.qml b/tests/auto/qtquick1/qdeclarativetext/data/rotated.qml
deleted file mode 100644
index 1e893b93fc..0000000000
--- a/tests/auto/qtquick1/qdeclarativetext/data/rotated.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width : 200
- height : 100
-
- Text {
- objectName: "text"
- x: 20
- y: 20
- height : 20
- width : 80
- text : "Something"
- rotation : 30
- transformOrigin : Item.TopLeft
- }
-}
-