-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
part 3 - Fix intrinsic isize calculation for ruby frame.
Differential Revision: https://phabricator.services.mozilla.com/D109228 bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1696721 gecko-commit: 1245e772d2de6ac472460e2d74cd76eef430f975 gecko-reviewers: dholbert
- Loading branch information
1 parent
3186398
commit def549c
Showing
2 changed files
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<!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"> | ||
<style> | ||
.ruby { | ||
border-left: 5px solid blue; | ||
border-right: 10px solid blue; | ||
padding: 0 20px 0 10px; | ||
margin: 0 10px 0 20px; | ||
} | ||
div { | ||
display: inline-block; | ||
border: 1px solid black; | ||
font-kerning: none; /* disable kerning, because in the reference file | ||
it might occur across <span> boundaries */ | ||
} | ||
.ruby > span { | ||
white-space: nowrap; | ||
} | ||
</style> | ||
|
||
<div style="width: min-content"> | ||
<span class="ruby"><span>ABC</span><span>DEF</span></span> | ||
</div> | ||
<div style="width: max-content"> | ||
<span class="ruby"><span>ABC</span><span>DEF</span></span> | ||
</div> | ||
<br> | ||
|
||
<div style="width: min-content"> | ||
XYZ<span class="ruby"><span>ABC</span><span>DEF</span></span>XYZ | ||
</div> | ||
<div style="width: max-content"> | ||
XYZ<span class="ruby"><span>ABC</span><span>DEF</span></span>XYZ | ||
</div> | ||
<br> | ||
|
||
<div style="width: min-content"> | ||
<span class="ruby"><span>あい</span><span>うえ</span></span> | ||
</div> | ||
<div style="width: max-content"> | ||
<span class="ruby"><span>あい</span><span>うえ</span></span> | ||
</div> | ||
<br> | ||
|
||
<div style="width: min-content"> | ||
お<span class="ruby"><span>あい</span><span>うえ</span></span>お | ||
</div> | ||
<div style="width: max-content"> | ||
お<span class="ruby"><span>あい</span><span>うえ</span></span>お | ||
</div> | ||
<br> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<!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="help" href="https://drafts.csswg.org/css-ruby-1/#line-breaks"> | ||
<link rel="match" href="ruby-intrinsic-isize-003-ref.html"> | ||
<style> | ||
ruby { | ||
border-left: 5px solid blue; | ||
border-right: 10px solid blue; | ||
padding: 0 20px 0 10px; | ||
margin: 0 10px 0 20px; | ||
} | ||
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> |