diff options
author | Sebastian Geerken <devnull@localhost> | 2012-12-06 15:11:57 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2012-12-06 15:11:57 +0100 |
commit | a914d5ffedd10004ae86b55aaaf58df270c4d960 (patch) | |
tree | 7501afdfb31c82b8cb4d1ca9d0f1314b6c63c976 /test | |
parent | a9136a867918e4bb7aa2080f2960c6920b405258 (diff) |
Split up words in hyphenation.
Diffstat (limited to 'test')
-rw-r--r-- | test/hyphenate-nbsp.html | 3 | ||||
-rw-r--r-- | test/liang.cc | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/hyphenate-nbsp.html b/test/hyphenate-nbsp.html index 16e4d298..1bfd9a25 100644 --- a/test/hyphenate-nbsp.html +++ b/test/hyphenate-nbsp.html @@ -1,4 +1,3 @@ <div style="font-size:10em" lang=de> -Weiß -kurz und knapp +Weiß kurz und knapp www.dillo.org </div> diff --git a/test/liang.cc b/test/liang.cc index 1f08f95c..b1161d9f 100644 --- a/test/liang.cc +++ b/test/liang.cc @@ -51,6 +51,7 @@ int main (int argc, char *argv[]) hyphenateWord (&p, "Nordrhein-Westfalen"); hyphenateWord (&p, "kurz\xc2\xa0und\xc2\xa0knapp"); hyphenateWord (&p, "weiß"); + hyphenateWord (&p, "www.dillo.org"); return 0; } |