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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/text/tifinagh.html

Issue 1525653002: Use Ebrima as fallback font for Tifinagh in Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Now with tests. Created 5 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>(Neo-)Tifinagh glyphs</title>
5 </head>
6 <body>
7 <h1>(Neo-)Tifinagh glyphs</h1>
8 <script>
9 function emitChar(charCode) {
10 document.write("&#x" + charCode.toString(16) + ";&nbsp;(U+" +
drott 2015/12/16 08:52:06 Thanks for adding a test, unless there is a specif
Daniel Bratell 2015/12/16 09:17:24 This is way easier to work with. We can easily che
11 charCode.toString(16).toUpperCase() +
12 ")&nbsp;&nbsp;&nbsp;&nbsp; ");
13 }
14 function emitCharSequence(first, last) {
15 for (var i = first; i <= last; i++)
16 emitChar(i);
17 }
18 document.write("<b>Mono space</b>");
19 document.write("<pre style='white-space: pre-wrap'>");
20 emitCharSequence(0x2D30, 0x2D67);
21 emitCharSequence(0x2D6F, 0x2D6F);
22 document.write("</pre>");
23
24 document.write("<b>Default font</b>");
25 document.write("<p>")
26 emitCharSequence(0x2D30, 0x2D67);
27 emitCharSequence(0x2D6F, 0x2D6F);
28 </script>
29 <p>
30 There should be many interesting glyphs above. See
31 <a href="https://en.wikipedia.org/wiki/Tifinagh">
32 https://en.wikipedia.org/wiki/Tifinagh</a> for more.
33 </body>
34 </html>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | third_party/WebKit/Source/platform/fonts/win/FontFallbackWin.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698