зеркало из https://github.com/mozilla/gecko-dev.git
32 строки
524 B
HTML
32 строки
524 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>
|
|
ABC DEF
|
|
</div>
|
|
<div>
|
|
XYZ ABCDEF XYZ
|
|
</div>
|
|
|
|
<div>
|
|
あい うえ
|
|
</div>
|
|
<div>
|
|
お あいうえ お
|
|
</div>
|
|
<br>
|
|
</body>
|
|
</html>
|