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

Unified Diff: third_party/WebKit/LayoutTests/fast/text/ogham.html

Issue 1521993008: Teach Chromium on Windows where to find Ogham glyphs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/ogham.html
diff --git a/third_party/WebKit/LayoutTests/fast/text/ogham.html b/third_party/WebKit/LayoutTests/fast/text/ogham.html
new file mode 100644
index 0000000000000000000000000000000000000000..ff8e5bef60d3eef0ce5b6b557c3796fe3344dd29
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/text/ogham.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Ogham glyphs</title>
+ </head>
+ <body>
+ <h1>Ogham glyphs</h1>
+ <script>
+ function emitChar(charCode) {
+ document.write("&#x" + charCode.toString(16) + ";&nbsp;(U+" +
+ charCode.toString(16).toUpperCase() +
+ ")&nbsp;&nbsp;&nbsp;&nbsp; ");
+ }
+ function emitCharSequence(first, last) {
+ for (var i = first; i <= last; i++)
+ emitChar(i);
+ }
+ document.write("<b>Monospace</b>");
+ document.write("<pre style='white-space: pre-wrap'>");
+ emitCharSequence(0x1680, 0x169C);
+ document.write("</pre>");
+
+ document.write("<b>Default font</b>");
+ document.write("<p>")
+ emitCharSequence(0x1680, 0x169C);
+ </script>
+ <p>
+ There should be many interesting glyphs above. See
+ <a href="https://en.wikipedia.org/wiki/Ogham">
+ https://en.wikipedia.org/wiki/Ogham</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