aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/quick.text/delegates_text_elide.qml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/auto/creation/quick.text/delegates_text_elide.qml')
-rw-r--r--benchmarks/auto/creation/quick.text/delegates_text_elide.qml17
1 files changed, 17 insertions, 0 deletions
diff --git a/benchmarks/auto/creation/quick.text/delegates_text_elide.qml b/benchmarks/auto/creation/quick.text/delegates_text_elide.qml
new file mode 100644
index 0000000..a0743eb
--- /dev/null
+++ b/benchmarks/auto/creation/quick.text/delegates_text_elide.qml
@@ -0,0 +1,17 @@
+import QtQuick 2.0
+import QmlBench 1.0
+
+// Tests the creation of Text with a long string of text that is elided on the right
+CreationBenchmark {
+ id: root
+ count: 50
+ staticCount: 1000
+ delegate: Text {
+ x: QmlBench.getRandom() * (root.width - width)
+ y: QmlBench.getRandom() * (root.height - height)
+ width: 40
+ text: "Some very very very long text"
+ font.pixelSize: 10
+ elide: Text.ElideRight
+ }
+}