wordbreak-7b.html (1060B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 5 <style type="text/css"> 6 @font-face { 7 font-family: test; 8 src: url(../fonts/dejavu-sans/DejaVuSans.ttf); 9 } 10 body { 11 font-family: test; 12 line-height: 1.5em; 13 } 14 div.breakall { width: 0px; word-break: break-all; } 15 div.keepall { width: 0px; word-break: keep-all; } 16 </style> 17 <title>Test - word-break: break-all with rtl and diacritics, including ligatures</title> 18 </head> 19 <body> 20 <div class="breakall"> 21 وَلَا 22 السَّلَامُ 23 عَلَيْكُمْ 24 </div> 25 <br> 26 <div class="keepall"> 27 وَلَا 28 السَّلَامُ 29 عَلَيْكُمْ 30 </div> 31 </body> 32 </html>