bug fixed about the rtl markup behavior. 18/195518/1
authorJoogab Yun <joogab.yun@samsung.com>
Fri, 7 Dec 2018 09:03:59 +0000 (18:03 +0900)
committerJoogab Yun <joogab.yun@samsung.com>
Fri, 14 Dec 2018 06:05:37 +0000 (15:05 +0900)
commit823c2516e4292e1241738a1275e5b538f0a1a77c
tree348d7909f32f9a4b95d0cf32f5a65f9cc37beb68
parentf56562cd29ec0a648e11ad8e0b5f40241f737e17
bug fixed about the rtl markup behavior.

ex)
TextLabel label = TextLabel::New("&rlm;20&rlm;/&rlm;11&rlm;/&rlm;2018&rlm;" );
or
TextLabel label = TextLabel::New("&#x200F;20&&#x200F;/&#x200F;11&#x200F;/&#x200F;2018&#x200F;");

should be displayed not "20/11/2018" but "2018/11/20"

refer)
https://www.w3schools.com/cssref/tryit.asp?filename=trycss_text_direction

Change-Id: Iab595aedc691afbfd53f4b75c5eab4d58b26b59f
dali-toolkit/internal/text/bidirectional-support.cpp
dali-toolkit/internal/text/multi-language-support-impl.cpp
dali-toolkit/internal/text/script-run.h [changed mode: 0644->0755]