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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Ogham glyphs</title>
5 </head>
6 <body>
7 <h1>Ogham glyphs</h1>
8 <script>
9 function emitChar(charCode) {
10 document.write("&#x" + charCode.toString(16) + ";&nbsp;(U+" +
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>Monospace</b>");
19 document.write("<pre style='white-space: pre-wrap'>");
20 emitCharSequence(0x1680, 0x169C);
21 document.write("</pre>");
22
23 document.write("<b>Default font</b>");
24 document.write("<p>")
25 emitCharSequence(0x1680, 0x169C);
26 </script>
27 <p>
28 There should be many interesting glyphs above. See
29 <a href="https://en.wikipedia.org/wiki/Ogham">
30 https://en.wikipedia.org/wiki/Ogham</a> for more.
31 </body>
32 </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