| 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) + "; (U+" +
|
| + charCode.toString(16).toUpperCase() +
|
| + ") ";
|
| + }
|
| + 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>
|
|
|