mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
31 lines
561 B
HTML
31 lines
561 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Tests that Japanese iroha ordering works in list items.
|
|
|
|
FIXME(pcwalton): This shouldn't have a "." after the kana. -->
|
|
<style>
|
|
@font-face {
|
|
font-family: TakaoPGothic;
|
|
src: url(fonts/takao-p-gothic/TakaoPGothic.ttf);
|
|
}
|
|
body {
|
|
font-family: TakaoPGothic;
|
|
}
|
|
ol {
|
|
list-style-position: inside;
|
|
list-style-type: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<ol>
|
|
<li>い. Gryffindor</li>
|
|
<li>ろ. Hufflepuff</li>
|
|
<li>は. Ravenclaw</li>
|
|
<li>に. Slytherin</li>
|
|
</ol>
|
|
</body>
|
|
</html>
|
|
|
|
|