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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/text/tifinagh.html
diff --git a/third_party/WebKit/LayoutTests/fast/text/tifinagh.html b/third_party/WebKit/LayoutTests/fast/text/tifinagh.html
new file mode 100644
index 0000000000000000000000000000000000000000..cc2bbfb651b376ac40e3164f53ecb91442aa9a73
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/text/tifinagh.html
@@ -0,0 +1,34 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>(Neo-)Tifinagh glyphs</title>
+ </head>
+ <body>
+ <h1>(Neo-)Tifinagh glyphs</h1>
+ <script>
+ function emitChar(charCode) {
+ 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
+ charCode.toString(16).toUpperCase() +
+ ")&nbsp;&nbsp;&nbsp;&nbsp; ");
+ }
+ function emitCharSequence(first, last) {
+ for (var i = first; i <= last; i++)
+ emitChar(i);
+ }
+ document.write("<b>Mono space</b>");
+ document.write("<pre style='white-space: pre-wrap'>");
+ emitCharSequence(0x2D30, 0x2D67);
+ emitCharSequence(0x2D6F, 0x2D6F);
+ document.write("</pre>");
+
+ document.write("<b>Default font</b>");
+ document.write("<p>")
+ emitCharSequence(0x2D30, 0x2D67);
+ emitCharSequence(0x2D6F, 0x2D6F);
+ </script>
+ <p>
+ There should be many interesting glyphs above. See
+ <a href="https://en.wikipedia.org/wiki/Tifinagh">
+ https://en.wikipedia.org/wiki/Tifinagh</a> for more.
+ </body>
+</html>
« 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