OLD | NEW |
(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> |
OLD | NEW |