Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(475)

Unified Diff: LayoutTests/fast/css/font-face-unicode-range.html

Issue 244253003: SimpleFontData::fillGlyphPage should not set zero for missing glyphs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix expectation Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/css/font-face-unicode-range-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css/font-face-unicode-range.html
diff --git a/LayoutTests/fast/css/font-face-unicode-range.html b/LayoutTests/fast/css/font-face-unicode-range.html
index 825929278452e92c48ddacf43a6fb9426b812e79..81f2ba2d24e42beedeba982605c366dce93f67a4 100644
--- a/LayoutTests/fast/css/font-face-unicode-range.html
+++ b/LayoutTests/fast/css/font-face-unicode-range.html
@@ -63,6 +63,16 @@
src: local('Courier'), local('Courier New');
unicode-range: U+0052-0055;
}
+
+ @font-face {
+ font-family: 'test6';
+ src: local('Courier'), local('Courier New');
+ }
+ @font-face {
+ font-family: 'test6';
+ src: url('../../resources/Ahem.ttf');
+ unicode-range: U+0027; /* missing glyph */
+ }
</style>
</head>
<body onload="finished()">
@@ -114,6 +124,15 @@
ABCDEFGHIJKLMNO<span class="ahem">PQ<span class="courier">RSTU</span>VWX</span>YZ
</p>
</div>
+
+ <div>
+ <p style="font-family: 'test6';">
+ '''
+ </p>
+ <p>
+ <span class="courier">'''</span>
+ </p>
+ </div>
<script>
function finished()
{
« no previous file with comments | « no previous file | LayoutTests/fast/css/font-face-unicode-range-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698