Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/text/tifinagh.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/text/tifinagh.html b/third_party/WebKit/LayoutTests/fast/text/tifinagh.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..cc2bbfb651b376ac40e3164f53ecb91442aa9a73 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/fast/text/tifinagh.html |
| @@ -0,0 +1,34 @@ |
| +<!DOCTYPE html> |
| +<html> |
| + <head> |
| + <title>(Neo-)Tifinagh glyphs</title> |
| + </head> |
| + <body> |
| + <h1>(Neo-)Tifinagh glyphs</h1> |
| + <script> |
| + function emitChar(charCode) { |
| + document.write("&#x" + charCode.toString(16) + "; (U+" + |
|
drott
2015/12/16 08:52:06
Thanks for adding a test, unless there is a specif
Daniel Bratell
2015/12/16 09:17:24
This is way easier to work with. We can easily che
|
| + charCode.toString(16).toUpperCase() + |
| + ") "); |
| + } |
| + function emitCharSequence(first, last) { |
| + for (var i = first; i <= last; i++) |
| + emitChar(i); |
| + } |
| + document.write("<b>Mono space</b>"); |
| + document.write("<pre style='white-space: pre-wrap'>"); |
| + emitCharSequence(0x2D30, 0x2D67); |
| + emitCharSequence(0x2D6F, 0x2D6F); |
| + document.write("</pre>"); |
| + |
| + document.write("<b>Default font</b>"); |
| + document.write("<p>") |
| + emitCharSequence(0x2D30, 0x2D67); |
| + emitCharSequence(0x2D6F, 0x2D6F); |
| + </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> |