bug 752455 - reftest for word-break, clusters, text-transform. r=smontagu

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

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

@ -109,6 +109,7 @@ HTTP(..) != synthetic-bold-metrics-01.html synthetic-bold-metrics-01-notref.html
== wordbreak-6.html wordbreak-6-ref.html
HTTP(..) == wordbreak-7a.html wordbreak-7a-ref.html
fails HTTP(..) == wordbreak-7b.html wordbreak-7b-ref.html # bug 479829
== wordbreak-8.html wordbreak-8-ref.html
== wordwrap-01.html wordwrap-01-ref.html
HTTP(..) == wordwrap-02.html wordwrap-02-ref.html
HTTP(..) == wordwrap-03.html wordwrap-03-ref.html

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

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
.lc { text-transform: lowercase; }
.uc { text-transform: uppercase; }
</style>
<title>Test - word-break:break-all with text-transform and clusters</title>
</head>
<body>
<div class="lc">f<br>o<br>x<br>f<br>o&#x0325;<br>x&#x0307;</div><br>
<div class="lc">fox<br>fo&#x0325;x&#x0307;</div><br>
<div class="uc">f<br>o<br>x<br>f<br>o&#x0325;<br>x&#x0307;</div><br>
<div class="uc">fox<br>fo&#x0325;x&#x0307;</div><br>
</body>
</html>

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

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
.breakall { width: 0px; word-break: break-all; }
.keepall { width: 0px; word-break: keep-all; }
.lc { text-transform: lowercase; }
.uc { text-transform: uppercase; }
</style>
<title>Test - word-break:break-all with text-transform and clusters</title>
</head>
<body>
<div class="breakall lc">fox fo&#x0325;x&#x0307;</div><br>
<div class="keepall lc">fox fo&#x0325;x&#x0307;</div><br>
<div class="breakall uc">fox fo&#x0325;x&#x0307;</div><br>
<div class="keepall uc">fox fo&#x0325;x&#x0307;</div><br>
</body>
</html>