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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/layout-fonts/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: Adapted tests after Tifinagh feedback 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 <meta charset="UTF-8">
4 <head>
5 <script type="text/javascript" src="../../http/tests/inspector-protocol/insp ector-protocol-test.js"></script>
6 <script type="text/javascript" src="../../http/tests/inspector-protocol/css- protocol-test.js"></script>
7 <script type="text/javascript" src="../../http/tests/inspector-protocol/dom- protocol-test.js"></script>
8 <script type="text/javascript" src="resources/layout-font-test.js"></script>
9 </head>
10 <body>
11 <!-- All ogham glyps in two font families. -->
12 <div class="test">
13 <div id=oghammonofont></div>
14 <div id=oghamdefaultfont></div>
15 <script>
16 function makeCharHtml(charCode) {
17 return "&#x" + charCode.toString(16) + ";";
18 }
19 function makeCharHtmlSequence(first, last) {
20 var result = "";
21 for (var i = first; i <= last; i++)
22 result += makeCharHtml(i);
23 return result;
24 }
25 charSequenceHtml = makeCharHtmlSequence(0x1680, 0x169c);
26 document.getElementById("oghammonofont").innerHTML = charSequenceHtml;
27 document.getElementById("oghamdefaultfont").innerHTML = charSequenceHtml;
28 </script>
29 </div>
30 There should be two lines of
31 <a href="https://en.wikipedia.org/wiki/Ogham">Ogham</a> above.
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698