blob: b2d49809a9a32e674c44c2aa984a82bc2ae62414 [file] [edit]
<!DOCTYPE html>
<meta charset="UTF-8">
<title>test reference</title>
<style>
@font-face {
font-family: halt-font;
src: url('/fonts/noto/cjk/NotoSansCJKjp-Regular-subset-halt.otf');
}
ruby {
ruby-overhang: spaces;
ruby-align: center;
}
div {
/* Use the halt font to match with a reference in Mac. */
font-family: halt-font;
font-size: 20px;
border-left: 5px solid;
border-right: 5px solid;
width: max-content;
text-spacing-trim: space-all;
}
.test { border-color: orange; }
.measure { border-color: blue; }
</style>
<body lang="ja">
<p>Test passes if orange and blue lines are aligned.
<div class=test><ruby>・  あ  ・<rt>あああああああああああ</ruby></div>
<div class=measure>あ・  あ  ・あ</div>
</body>