Status: PASS | Duration: 10ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-ruby/ruby-intrinsic-isize-002.html
<!DOCTYPE html> <html lang="ja"> <meta charset="UTF-8"> <title>Intrinsic ISize calculation of ruby</title> <link rel="author" title="Xidorn Quan" href="https://www.upsuper.org"> <link rel="author" title="Mozilla" href="https://www.mozilla.org"> <link rel="help" href="https://drafts.csswg.org/css-ruby-1/#line-breaks"> <link rel="match" href="ruby-intrinsic-isize-002-ref.html"> <style> div { display: inline-block; border: 1px solid black; } </style> <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>
/css/css-ruby/ruby-intrinsic-isize-002-ref.html
<!DOCTYPE html> <html lang="ja"> <meta charset="UTF-8"> <title>Intrinsic ISize calculation of ruby</title> <link rel="author" title="Xidorn Quan" href="https://www.upsuper.org"> <link rel="author" title="Mozilla" href="https://www.mozilla.org"> <style> div { display: inline-block; border: 1px solid black; } </style> <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>