1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/text/wordbreak-7b.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 + <head> 1.7 + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 1.8 + <style type="text/css"> 1.9 + @font-face { 1.10 + font-family: test; 1.11 + src: url(../fonts/dejavu-sans/DejaVuSans.ttf); 1.12 + } 1.13 + body { 1.14 + font-family: test; 1.15 + line-height: 1.5em; 1.16 + } 1.17 + div.breakall { width: 0px; word-break: break-all; } 1.18 + div.keepall { width: 0px; word-break: keep-all; } 1.19 + </style> 1.20 + <title>Test - word-break: break-all with rtl and diacritics, including ligatures</title> 1.21 + </head> 1.22 + <body> 1.23 + <div class="breakall"> 1.24 + وَلَا 1.25 + السَّلَامُ 1.26 + عَلَيْكُمْ 1.27 + </div> 1.28 + <br> 1.29 + <div class="keepall"> 1.30 + وَلَا 1.31 + السَّلَامُ 1.32 + عَلَيْكُمْ 1.33 + </div> 1.34 + </body> 1.35 +</html>