blob: 5f681e44c41d9ed9d7388b5c6a61dd3dbd73ac86 [file] [edit]
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Reference: ruby-overhang spaces with non-BMP characters</title>
<style>
ruby {
ruby-overhang: spaces;
ruby-align: center;
}
div {
font-size: 20px;
border-left: 5px solid;
border-right: 5px solid;
width: max-content;
margin-bottom: 10px;
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>ああああああああ</rt></ruby>🍊</div>
<div class="measure">🍊) あ (🍊</div>
</body>