bug 752459 - reftest for word-wrap cluster support. r=smontagu

This commit is contained in:
Jonathan Kew 2012-05-18 16:51:40 +01:00
Родитель e38d57ad83
Коммит f33c539453
3 изменённых файлов: 29 добавлений и 0 удалений

Просмотреть файл

@ -121,6 +121,7 @@ HTTP(..) == wordwrap-03.html wordwrap-03-ref.html
== wordwrap-08.html wordwrap-08-ref.html
!= wordwrap-09.html wordwrap-01-ref.html
== wordwrap-09.html wordwrap-09-ref.html
== wordwrap-10.html wordwrap-10-ref.html # bug 752459
== word-spacing-01.html word-spacing-01-ref.html
# the following will fail when rendering with Core Text (see bug 389074) due to what appears to be
# an Apple bug: the presence of ZWNJ disturbs the positioning of an adjacent glyph. rdar://6427865

Просмотреть файл

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Test - word-wrap: break-word should respect clusters</title>
</head>
<body>
<div>
a<br>b<br>c<br>
d&#x0325;<br>e&#x0315;<br>f&#x0323;<br>
&#x10400;<br>&#x10401;<br>&#x10402;
</div>
</body>
</html>

Просмотреть файл

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Test - word-wrap: break-word should respect clusters</title>
</head>
<body>
<div style="width:0px; word-wrap:break-word">
abc
d&#x0325;e&#x0315;f&#x0323;
&#x10400;&#x10401;&#x10402;
</div>
</body>
</html>