aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>2014-01-29 10:01:03 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-29 10:17:27 +0100
commit1d2c34572f63fe6cee34ed863b2175b4115a0ed2 (patch)
treee421192ad7a37309e6ac3c4d653a5503d08edf94 /tests/manual
parent3d3429f55bca1b09c1d2184ef719abae0e762a09 (diff)
Add test for shaping and rendering Sinhala text
This is currently broken on Mac OS X, but the fix is nigh. Task-number: QTBUG-36056 Change-Id: I547f7961a2ca8c62301e15de486a6f75de26bc4a Reviewed-by: aavit <eirik.aavitsland@digia.com>
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/scenegraph_lancelot/data/text/text_sinhala.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/manual/scenegraph_lancelot/data/text/text_sinhala.qml b/tests/manual/scenegraph_lancelot/data/text/text_sinhala.qml
new file mode 100644
index 0000000000..e74b72da92
--- /dev/null
+++ b/tests/manual/scenegraph_lancelot/data/text/text_sinhala.qml
@@ -0,0 +1,16 @@
+import QtQuick 2.0
+
+Item {
+ width: 320
+ height: 480
+
+ Text {
+ anchors.fill: parent
+ wrapMode: Text.WrapAtWordBoundaryOrAnywhere
+ font.family: "Arial"
+ font.pixelSize: 20
+ text: "සිංහළ අකුරු අබලං"
+ }
+}
+
+