aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/scenegraph_lancelot/data/text/text_thai.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/scenegraph_lancelot/data/text/text_thai.qml')
-rw-r--r--tests/manual/scenegraph_lancelot/data/text/text_thai.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/manual/scenegraph_lancelot/data/text/text_thai.qml b/tests/manual/scenegraph_lancelot/data/text/text_thai.qml
new file mode 100644
index 0000000000..b001e92f98
--- /dev/null
+++ b/tests/manual/scenegraph_lancelot/data/text/text_thai.qml
@@ -0,0 +1,18 @@
+// test Thai font rendering and line breaking
+
+import QtQuick 2.0
+
+Item {
+ width: 320
+ height: 480
+
+ Text {
+ anchors.fill: parent
+ wrapMode: Text.Wrap
+ font.family: "Arial"
+ font.pixelSize: 20
+ text: "ภาษาไทย เป็นภาษาราชการของประเทศไทย และภาษาแม่ของชาวไทย และชนเชื้อสายอื่นในประเทศไทย ภาษาไทยเป็นภาษาในกลุ่มภาษาไท"
+ }
+}
+
+