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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/text/tifinagh-glyphs.html
diff --git a/third_party/WebKit/LayoutTests/fast/text/tifinagh-glyphs.html b/third_party/WebKit/LayoutTests/fast/text/tifinagh-glyphs.html
new file mode 100644
index 0000000000000000000000000000000000000000..5b6ba53fab62d37b7fb88d07a475af65374f2d24
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/text/tifinagh-glyphs.html
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>(Neo-)Tifinagh glyphs</title>
+ </head>
+ <body>
+ <b>(Neo-)Tifinagh glyphs monospace font</b>
+ <pre style="white-space: pre-wrap" id="mono"></pre>
+ <b>(Neo-)Tifinagh glyphs default font</b>
+ <div id="default"></div>
+ <script>
+ function makeCharHtml(charCode) {
+ return "&#x" + charCode.toString(16) + ";&nbsp;(U+" +
+ charCode.toString(16).toUpperCase() +
+ ")&nbsp;&nbsp;&nbsp;&nbsp; ";
+ }
+ function makeCharHtmlSequence(first, last) {
+ var result = "";
+ for (var i = first; i <= last; i++)
+ result += makeCharHtml(i);
+ return result;
+ }
+ charSequenceHtml = makeCharHtmlSequence(0x2D30, 0x2D67) +
+ makeCharHtmlSequence(0x2D6F, 0x2D6F);
+ document.getElementById("mono").innerHTML = charSequenceHtml;
+ document.getElementById("default").innerHTML = charSequenceHtml;
+ </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>

Powered by Google App Engine
This is Rietveld 408576698