Bug 1318539 - Reftests for RTL rendering of color glyph with partial opacity (currently failing). r=jrmuizel

This commit is contained in:
Jonathan Kew 2017-02-22 23:09:52 +00:00
Родитель 29443ed98c
Коммит 38d2c7f0e9
5 изменённых файлов: 75 добавлений и 0 удалений

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

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Mozilla bug 1318539</title>
<style>
.ref {
font-family: EmojiOne Mozilla, Apple Color Emoji, Segoe UI Emoji, Noto Color Emoji, sans-serif;
font-size: 48px;
opacity: 0.5;
text-align: right;
}
</style>
</head>
<body class="ref">
(&#x1f602;&#x1f601;&#x1f600;)
</body>
</html>

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

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Mozilla bug 1318539</title>
<style>
.test {
font-family: EmojiOne Mozilla, Apple Color Emoji, Segoe UI Emoji, Noto Color Emoji, sans-serif;
font-size: 48px;
opacity: 0.5;
}
</style>
</head>
<body dir=rtl class="test">
(&#x1f600;&#x1f601;&#x1f602;)
</body>
</html>

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

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Mozilla bug 1318539</title>
<style>
.ref {
font-family: EmojiOne Mozilla, Apple Color Emoji, Segoe UI Emoji, Noto Color Emoji, sans-serif;
font-size: 48px;
opacity: 0.5;
unicode-bidi: bidi-override;
direction: ltr;
}
</style>
</head>
<body class="ref">
&#x5d1;&#x1f600;&#x5d0;
</body>
</html>

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

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Mozilla bug 1318539</title>
<style>
.test {
font-family: EmojiOne Mozilla, Apple Color Emoji, Segoe UI Emoji, Noto Color Emoji, sans-serif;
font-size: 48px;
opacity: 0.5;
}
</style>
</head>
<body class="test">
&#x5d0;&#x1f600;&#x5d1;
</body>
</html>

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

@ -342,3 +342,7 @@ HTTP(..) == space-font-1.html space-font-1-ref.html
# handling of highly negative letter-spacing and intrinsic width
== negative-letter-spacing-1.html negative-letter-spacing-1-ref.html
== segment-break-transformation-1.html segment-break-transformation-1-ref.html
# color glyphs, opacity, and RTL runs - bug 1318539
fails == color-opacity-rtl-1.html color-opacity-rtl-1-ref.html
fails == color-opacity-rtl-2.html color-opacity-rtl-2-ref.html