Implement own grapheme boundary breaker for editing.
Followings are differences from the previous grapheme breaker:
- Follows latest(including proposed) grapheme breaker spec:
Unicode Standard Annex #29
http://www.unicode.org/reports/tr29
- Removed Tamil exception rule from Indic syllable composition.
Introduced by
https://bugs.webkit.org/show_bug.cgi?id=15790
Neither bug nor change description doesn't mention about Tamil
exception but latest Unicode standards doesn't have exception.
- Revive Rule GB9b rule: don't break after Prepend property.
Introduced by
https://bugs.webkit.org/show_bug.cgi?id=24342
It is safe to revive this rule since Thai characters no longer have
Prepend property since Unicode 6.1.
Note that there are no character having Prepend property until
Unicode 9.0 after Unicode 6.1
BUG=
594923
R=yosin