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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/text/tifinagh-glyphs.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: More testing 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 <b>(Neo-)Tifinagh glyphs monospace font</b>
8 <pre style="white-space: pre-wrap" id="mono"></pre>
9 <b>(Neo-)Tifinagh glyphs default font</b>
10 <div id="default"></div>
11 <script>
12 function makeCharHtml(charCode) {
13 return "&#x" + charCode.toString(16) + ";&nbsp;(U+" +
14 charCode.toString(16).toUpperCase() +
15 ")&nbsp;&nbsp;&nbsp;&nbsp; ";
16 }
17 function makeCharHtmlSequence(first, last) {
18 var result = "";
19 for (var i = first; i <= last; i++)
20 result += makeCharHtml(i);
21 return result;
22 }
23 charSequenceHtml = makeCharHtmlSequence(0x2D30, 0x2D67) +
24 makeCharHtmlSequence(0x2D6F, 0x2D6F);
25 document.getElementById("mono").innerHTML = charSequenceHtml;
26 document.getElementById("default").innerHTML = charSequenceHtml;
27 </script>
28 <p>
29 There should be many interesting glyphs above. See
30 <a href="https://en.wikipedia.org/wiki/Tifinagh">
31 https://en.wikipedia.org/wiki/Tifinagh</a> for more.
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698