wpt / css / css-ruby / ruby-intrinsic-isize-001.html

Status: PASS | Duration: 9ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-ruby/ruby-intrinsic-isize-001.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-001-ref.html">
<style>
  div {
    display: inline-block;
    border: 1px solid black;
    font-kerning: none; /* disable kerning, because in the reference file
                            it might occur across <span> boundaries */
  }
</style>
<div style="width: min-content">
  <ruby><rb>ABC<rb>DEF</ruby>
</div>
<div style="width: max-content">
  <ruby><rb>ABC<rb>DEF</ruby>
</div>
<br>

<div style="width: min-content">
  XYZ<ruby><rb>ABC<rb>DEF</ruby>XYZ
</div>
<div style="width: max-content">
  XYZ<ruby><rb>ABC<rb>DEF</ruby>XYZ
</div>
<br>

<div style="width: min-content">
  <ruby><rb>あい<rb>うえ</ruby>
</div>
<div style="width: max-content">
  <ruby><rb>あい<rb>うえ</ruby>
</div>
<br>

<div style="width: min-content">
  お<ruby><rb>あい<rb>うえ</ruby>お
</div>
<div style="width: max-content">
  お<ruby><rb>あい<rb>うえ</ruby>お
</div>
<br>

/css/css-ruby/ruby-intrinsic-isize-001-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;
    font-kerning: none; /* disable kerning, because in the reference file
                            it might occur across <span> boundaries */
  }
  span {
    white-space: nowrap;
  }
</style>
<div style="width: min-content">
  <span>ABC</span><span>DEF</span>
</div>
<div style="width: max-content">
  <span>ABC</span><span>DEF</span>
</div>
<br>

<div style="width: min-content">
  XYZ<span>ABC</span><span>DEF</span>XYZ
</div>
<div style="width: max-content">
  XYZ<span>ABC</span><span>DEF</span>XYZ
</div>
<br>

<div style="width: min-content">
  <span>あい</span><span>うえ</span>
</div>
<div style="width: max-content">
  <span>あい</span><span>うえ</span>
</div>
<br>

<div style="width: min-content">
  お<span>あい</span><span>うえ</span>お
</div>
<div style="width: max-content">
  お<span>あい</span><span>うえ</span>お
</div>
<br>