wordbreak-7a.html (931B)
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, no ligatures</title> 18 </head> 19 <body> 20 <div class="breakall"> 21 العربي 22 الضَّالِّينَ 23 </div> 24 <br> 25 <div class="keepall"> 26 العربي 27 الضَّالِّينَ 28 </div> 29 </body> 30 </html>