forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1141931 part 9 - Reftest for ruby frames reordering. r=jfkthame
--HG-- extra : source : 7a078551c85fa9a29109a2222634d66f7bcc7fac
- Loading branch information
Showing
3 changed files
with
89 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,38 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Bug 1141931 - Bidi reordering of ruby</title> | ||
<link rel="stylesheet" href="common.css"> | ||
</head> | ||
<body> | ||
<p> | ||
<ruby> | ||
<rb>base1</rb><rb>base2</rb> | ||
<rt>text1</rt><rt>text2</rt> | ||
<rb>base4</rb><rb>base3</rb> | ||
<rt>text4</rt><rt>text3</rt> | ||
</ruby> | ||
<ruby> | ||
<rb>base7</rb><rb>base8</rb> | ||
<rt>text7</rt><rt>text8</rt> | ||
<rb>base6</rb><rb>base5</rb> | ||
<rt>text6</rt><rt>text5</rt> | ||
</ruby> | ||
</p> | ||
<p style="text-align: right"> | ||
<ruby> | ||
<rb>base5</rb><rb>base6</rb> | ||
<rt>text5</rt><rt>text6</rt> | ||
<rb>base8</rb><rb>base7</rb> | ||
<rt>text8</rt><rt>text7</rt> | ||
</ruby> | ||
<ruby> | ||
<rb>base3</rb><rb>base4</rb> | ||
<rt>text3</rt><rt>text4</rt> | ||
<rb>base2</rb><rb>base1</rb> | ||
<rt>text2</rt><rt>text1</rt> | ||
</ruby> | ||
</p> | ||
</body> | ||
</html> |
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,50 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Bug 1141931 - Bidi reordering of ruby</title> | ||
<link rel="stylesheet" href="common.css"> | ||
</head> | ||
<body> | ||
<p> | ||
<ruby> | ||
<rb>base1</rb><rb>base2</rb> | ||
<rtc dir="rtl"> | ||
<rt>text1</rt><rt>text2</rt> | ||
</rtc> | ||
<rbc dir="rtl"> | ||
<rb>base3</rb><rb>base4</rb> | ||
</rbc> | ||
<rt>text3</rt><rt>text4</rt> | ||
</ruby> | ||
<ruby dir="rtl"> | ||
<rb>base5</rb><rb>base6</rb> | ||
<rt>text5</rt><rt>text6</rt> | ||
<rbc dir="ltr"> | ||
<rb>base7</rb><rb>base8</rb> | ||
</rbc> | ||
<rt>text7</rt><rt>text8</rt> | ||
</ruby> | ||
</p> | ||
<p dir="rtl"> | ||
<ruby> | ||
<rb>base1</rb><rb>base2</rb> | ||
<rtc dir="ltr"> | ||
<rt>text1</rt><rt>text2</rt> | ||
</rtc> | ||
<rbc dir="ltr"> | ||
<rb>base3</rb><rb>base4</rb> | ||
</rbc> | ||
<rt>text3</rt><rt>text4</rt> | ||
</ruby> | ||
<ruby dir="ltr"> | ||
<rb>base5</rb><rb>base6</rb> | ||
<rt>text5</rt><rt>text6</rt> | ||
<rbc dir="rtl"> | ||
<rb>base7</rb><rb>base8</rb> | ||
</rbc> | ||
<rt>text7</rt><rt>text8</rt> | ||
</ruby> | ||
</p> | ||
</body> | ||
</html> |
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