tenfourfox/layout/reftests/css-ruby/intrinsic-isize-2.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

32 lines
648 B
HTML

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Bug 1180443 - Intrinsic ISize calculation of ruby with whitespace</title>
<style>
div {
display: inline-block;
border: 1px solid black;
}
</style>
</head>
<body>
<p>No line break should happen in any block, and the content should just fit in the block.</p>
<div>
<ruby><rb>ABC</rb> <rb>DEF</rb></ruby>
</div>
<div>
XYZ <ruby><rb>ABC</rb><rb>DEF</rb></ruby> XYZ
</div>
<div>
<ruby><rb>あい</rb> <rb>うえ</rb></ruby>
</div>
<div>
<ruby><rb>あい</rb><rb>うえ</rb></ruby>
</div>
<br>
</body>
</html>