diff --git a/html-ruby-extensions/README.md b/html-ruby-extensions/README.md new file mode 100644 index 00000000000000..df65fa36937953 --- /dev/null +++ b/html-ruby-extensions/README.md @@ -0,0 +1,51 @@ +# Tests for HTML Ruby Markup extensions + +Specification: https://www.w3.org/TR/html-ruby-extensions/ + +WARNING: These are manual tests. +There is some support for automation, +but the results must be evaluated manually. +Simply relying on automated reports of tests passing is not sufficient. + +These tests are hard to write reliably, +because without relying on a styling mechanism (which should be tested separately), +there's no prescribed rendering, +yet the rendering is how we can tell whether the markup did the right thing: +ruby must be segmented correctly, +and the correct ruby annotation must be paired with the correct base. +That is something you can tell visually. + +The approach taken here follows the same logic +as the pre-existing html/semantics/text-level-semantics/the-ruby-element/ruby-usage.html: +use a mismatch ref-test against what the rendering is likely to be +if the browser didn't do anything, or did the wrong thing. +In that original example, the mismatch reference is simply what you'd get in a browser with no support for ruby at all. +The tests in this directory do that too, +and add a few variants of possible wrong renderings, +some attested in existing layout engines, +some "just in case". + +As such, automated test failures are indicative of something being wrong with the implementation, +but tests passing could be false positives: +maybe it is implemented right, +or maybe it is implemented wrong in a novel way. + +Therefore, each test is written including a description of the pass condition, +in a way that can be evaluated by a person looking at the test. + +It would be better to write these tests so that their pass condition can be automated, +but as far as I can tell, +that's not reliably doable. + +For instance, it might be tempting to use `X1Y2` +or `X1Y2` +as a reference for `XY12` +as they are defined to have the same base/annotation pairing, +but it is not required that they have precisely the same rendering. +And indeed, some implementations do vary +(notably in terms of base/annotation alignment). + +So we're left with semi-manual tests. + +Anyone finding false positives is encouraged +to add corresponding mismatch references. diff --git a/html-ruby-extensions/html-ruby-001.html b/html-ruby-extensions/html-ruby-001.html new file mode 100644 index 00000000000000..a8cb57aae0eca0 --- /dev/null +++ b/html-ruby-extensions/html-ruby-001.html @@ -0,0 +1,45 @@ + + + +Ruby Markup Content Model: one ruby per base, annonymous base, annotation with rt + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-002.html b/html-ruby-extensions/html-ruby-002.html new file mode 100644 index 00000000000000..374ba650845175 --- /dev/null +++ b/html-ruby-extensions/html-ruby-002.html @@ -0,0 +1,46 @@ + + + +Ruby Markup Content Model: one ruby per base, rb as base, annotation with rt + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-003.html b/html-ruby-extensions/html-ruby-003.html new file mode 100644 index 00000000000000..c039816a89701f --- /dev/null +++ b/html-ruby-extensions/html-ruby-003.html @@ -0,0 +1,46 @@ + + + +Ruby Markup Content Model: single ruby element, anonymous bases, interleaved markup, annotation with rt + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-004.html b/html-ruby-extensions/html-ruby-004.html new file mode 100644 index 00000000000000..212c4397b3ece6 --- /dev/null +++ b/html-ruby-extensions/html-ruby-004.html @@ -0,0 +1,47 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rt + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-005.html b/html-ruby-extensions/html-ruby-005.html new file mode 100644 index 00000000000000..29cefb02d43f2c --- /dev/null +++ b/html-ruby-extensions/html-ruby-005.html @@ -0,0 +1,47 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, annotation with rt + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-006.html b/html-ruby-extensions/html-ruby-006.html new file mode 100644 index 00000000000000..ffb108a41d2859 --- /dev/null +++ b/html-ruby-extensions/html-ruby-006.html @@ -0,0 +1,47 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, rb ommitted in middle base, annotation with rt + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-007.html b/html-ruby-extensions/html-ruby-007.html new file mode 100644 index 00000000000000..06299df87fd11f --- /dev/null +++ b/html-ruby-extensions/html-ruby-007.html @@ -0,0 +1,47 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, rb ommitted in first and last bases, annotation with rt + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-008.html b/html-ruby-extensions/html-ruby-008.html new file mode 100644 index 00000000000000..26bb05079e396a --- /dev/null +++ b/html-ruby-extensions/html-ruby-008.html @@ -0,0 +1,51 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rt, extra annotation + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-009.html b/html-ruby-extensions/html-ruby-009.html new file mode 100644 index 00000000000000..65901a1ead9a95 --- /dev/null +++ b/html-ruby-extensions/html-ruby-009.html @@ -0,0 +1,51 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, annotation with rt, extra annotation + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-010.html b/html-ruby-extensions/html-ruby-010.html new file mode 100644 index 00000000000000..95fd3799c2034a --- /dev/null +++ b/html-ruby-extensions/html-ruby-010.html @@ -0,0 +1,46 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, annotation with rt, extra bases + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-011.html b/html-ruby-extensions/html-ruby-011.html new file mode 100644 index 00000000000000..e9c69de860c5b0 --- /dev/null +++ b/html-ruby-extensions/html-ruby-011.html @@ -0,0 +1,46 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rt, extra bases + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-012.html b/html-ruby-extensions/html-ruby-012.html new file mode 100644 index 00000000000000..fb36fec2ae86a9 --- /dev/null +++ b/html-ruby-extensions/html-ruby-012.html @@ -0,0 +1,32 @@ + + + +Ruby Markup Content Model: implicit ruby base unit is *maximal* DOM range, annotation with rt + + + + + + + + + + + + + +

The example below consists of 2 base characters (今日), jointly annotated with their pronunciation (きょう). +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はきょう diff --git a/html-ruby-extensions/html-ruby-013.html b/html-ruby-extensions/html-ruby-013.html new file mode 100644 index 00000000000000..b4b79662e2b7c4 --- /dev/null +++ b/html-ruby-extensions/html-ruby-013.html @@ -0,0 +1,49 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, annotation with rt, Inter-element spaces ingnored for segmentation/pairing purposes. + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は + + じょう + diff --git a/html-ruby-extensions/html-ruby-014.html b/html-ruby-extensions/html-ruby-014.html new file mode 100644 index 00000000000000..02ec3ab0627ad5 --- /dev/null +++ b/html-ruby-extensions/html-ruby-014.html @@ -0,0 +1,50 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, annotation with rt. spaces inside elements are not ignored. + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, two of which carry visible annotations. +“A” is annotated by “1”. +“B” is annotated by “2”. +“C” is not annotated. +For ease of comparison, it is preceded by some context text: “This is a sample”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+This is a sample + A BC + 1x2 + diff --git a/html-ruby-extensions/html-ruby-015.html b/html-ruby-extensions/html-ruby-015.html new file mode 100644 index 00000000000000..cd8a1a6923321c --- /dev/null +++ b/html-ruby-extensions/html-ruby-015.html @@ -0,0 +1,52 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rt, extra annotation + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-016.html b/html-ruby-extensions/html-ruby-016.html new file mode 100644 index 00000000000000..f3dfb4d44f8031 --- /dev/null +++ b/html-ruby-extensions/html-ruby-016.html @@ -0,0 +1,50 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rt, extra annotation + + + + + + + + + + + + + + + + + +

The example below consists of 4 base characters, 3 of which are annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one base with no annotation, after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-101.html b/html-ruby-extensions/html-ruby-101.html new file mode 100644 index 00000000000000..b38608f667ac5b --- /dev/null +++ b/html-ruby-extensions/html-ruby-101.html @@ -0,0 +1,47 @@ + + + +Ruby Markup Content Model: one ruby per base, annonymous base, annotation with rt, adding rp in all the places where it's allowed by the content model + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!じょう!!!!! diff --git a/html-ruby-extensions/html-ruby-102.html b/html-ruby-extensions/html-ruby-102.html new file mode 100644 index 00000000000000..a991fadc758131 --- /dev/null +++ b/html-ruby-extensions/html-ruby-102.html @@ -0,0 +1,48 @@ + + + +Ruby Markup Content Model: one ruby per base, rb as base, annotation with rt, adding rp in all the places where it's allowed by the content model + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!じょう!!!!! diff --git a/html-ruby-extensions/html-ruby-103.html b/html-ruby-extensions/html-ruby-103.html new file mode 100644 index 00000000000000..fffd31ce468135 --- /dev/null +++ b/html-ruby-extensions/html-ruby-103.html @@ -0,0 +1,48 @@ + + + +Ruby Markup Content Model: single ruby element, anonymous bases, interleaved markup, annotation with rt, adding rp in all the places where it's allowed by the content model + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!じょう!!!!! diff --git a/html-ruby-extensions/html-ruby-104.html b/html-ruby-extensions/html-ruby-104.html new file mode 100644 index 00000000000000..0c1acceee29c76 --- /dev/null +++ b/html-ruby-extensions/html-ruby-104.html @@ -0,0 +1,49 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rt, adding rp in all the places where it's allowed by the content model + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!じょう!!!!! diff --git a/html-ruby-extensions/html-ruby-105.html b/html-ruby-extensions/html-ruby-105.html new file mode 100644 index 00000000000000..f1d1c77982115e --- /dev/null +++ b/html-ruby-extensions/html-ruby-105.html @@ -0,0 +1,49 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, annotation with rt, adding rp in all the places where it's allowed by the content model + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!じょう!!! diff --git a/html-ruby-extensions/html-ruby-106.html b/html-ruby-extensions/html-ruby-106.html new file mode 100644 index 00000000000000..7f5b1d0b0b6556 --- /dev/null +++ b/html-ruby-extensions/html-ruby-106.html @@ -0,0 +1,49 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, rb ommitted in middle base, annotation with rt, adding rp in all the places where it's allowed by the content model + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!じょう!!! diff --git a/html-ruby-extensions/html-ruby-107.html b/html-ruby-extensions/html-ruby-107.html new file mode 100644 index 00000000000000..ec1523d0897bec --- /dev/null +++ b/html-ruby-extensions/html-ruby-107.html @@ -0,0 +1,49 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, rb ommitted in first and last bases, annotation with rt, adding rp in all the places where it's allowed by the content model + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!じょう!!! diff --git a/html-ruby-extensions/html-ruby-108.html b/html-ruby-extensions/html-ruby-108.html new file mode 100644 index 00000000000000..9ac37b58682d98 --- /dev/null +++ b/html-ruby-extensions/html-ruby-108.html @@ -0,0 +1,53 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rt, extra annotation, adding rp in all the places where it's allowed by the content model + + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!じょう!!!!!! diff --git a/html-ruby-extensions/html-ruby-109.html b/html-ruby-extensions/html-ruby-109.html new file mode 100644 index 00000000000000..e197c4034775ab --- /dev/null +++ b/html-ruby-extensions/html-ruby-109.html @@ -0,0 +1,53 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, annotation with rt, extra annotation, adding rp in all the places where it's allowed by the content model + + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!じょう!!!! diff --git a/html-ruby-extensions/html-ruby-110.html b/html-ruby-extensions/html-ruby-110.html new file mode 100644 index 00000000000000..7cba65464ea344 --- /dev/null +++ b/html-ruby-extensions/html-ruby-110.html @@ -0,0 +1,48 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, annotation with rt, extra bases, adding rp in all the places where it's allowed by the content model + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!じょう! diff --git a/html-ruby-extensions/html-ruby-111.html b/html-ruby-extensions/html-ruby-111.html new file mode 100644 index 00000000000000..7f7c7eacd7d351 --- /dev/null +++ b/html-ruby-extensions/html-ruby-111.html @@ -0,0 +1,48 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rt, extra bases, adding rp in all the places where it's allowed by the content model + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-112.html b/html-ruby-extensions/html-ruby-112.html new file mode 100644 index 00000000000000..01b2888a202b01 --- /dev/null +++ b/html-ruby-extensions/html-ruby-112.html @@ -0,0 +1,34 @@ + + + +Ruby Markup Content Model: implicit ruby base unit is *maximal* DOM range, annotation with rt, adding rp in all the places where it's allowed by the content model + + + + + + + + + + + + + + + +

The example below consists of 2 base characters (今日), jointly annotated with their pronunciation (きょう). +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!きょう! diff --git a/html-ruby-extensions/html-ruby-201.html b/html-ruby-extensions/html-ruby-201.html new file mode 100644 index 00000000000000..14cd2634fc133e --- /dev/null +++ b/html-ruby-extensions/html-ruby-201.html @@ -0,0 +1,48 @@ + + + +Ruby Markup Content Model: one ruby per base, annonymous base, annotation with rt, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!じょう!!!!! diff --git a/html-ruby-extensions/html-ruby-202.html b/html-ruby-extensions/html-ruby-202.html new file mode 100644 index 00000000000000..922f5f09f693d8 --- /dev/null +++ b/html-ruby-extensions/html-ruby-202.html @@ -0,0 +1,49 @@ + + + +Ruby Markup Content Model: one ruby per base, rb as base, annotation with rt, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!じょう!!!!! diff --git a/html-ruby-extensions/html-ruby-203.html b/html-ruby-extensions/html-ruby-203.html new file mode 100644 index 00000000000000..7c81aef202ff9a --- /dev/null +++ b/html-ruby-extensions/html-ruby-203.html @@ -0,0 +1,49 @@ + + + +Ruby Markup Content Model: single ruby element, anonymous bases, interleaved markup, annotation with rt, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!じょう!!!!! diff --git a/html-ruby-extensions/html-ruby-204.html b/html-ruby-extensions/html-ruby-204.html new file mode 100644 index 00000000000000..15c36d1ed4d243 --- /dev/null +++ b/html-ruby-extensions/html-ruby-204.html @@ -0,0 +1,50 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rt, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!じょう!!!!! diff --git a/html-ruby-extensions/html-ruby-205.html b/html-ruby-extensions/html-ruby-205.html new file mode 100644 index 00000000000000..e9911739aaed9e --- /dev/null +++ b/html-ruby-extensions/html-ruby-205.html @@ -0,0 +1,50 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, annotation with rt, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!!!じょう!!! diff --git a/html-ruby-extensions/html-ruby-206.html b/html-ruby-extensions/html-ruby-206.html new file mode 100644 index 00000000000000..01658179b3d3be --- /dev/null +++ b/html-ruby-extensions/html-ruby-206.html @@ -0,0 +1,50 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, rb ommitted in middle base, annotation with rt, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!!!じょう!!! diff --git a/html-ruby-extensions/html-ruby-207.html b/html-ruby-extensions/html-ruby-207.html new file mode 100644 index 00000000000000..1e4b56f24ea183 --- /dev/null +++ b/html-ruby-extensions/html-ruby-207.html @@ -0,0 +1,50 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, rb ommitted in first and last bases, annotation with rt, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!!!じょう!!! diff --git a/html-ruby-extensions/html-ruby-208.html b/html-ruby-extensions/html-ruby-208.html new file mode 100644 index 00000000000000..fb7ce3d24359a0 --- /dev/null +++ b/html-ruby-extensions/html-ruby-208.html @@ -0,0 +1,54 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rt, extra annotation, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!じょう!!!!!! diff --git a/html-ruby-extensions/html-ruby-209.html b/html-ruby-extensions/html-ruby-209.html new file mode 100644 index 00000000000000..4037dd710aa83a --- /dev/null +++ b/html-ruby-extensions/html-ruby-209.html @@ -0,0 +1,54 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, annotation with rt, extra annotation, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!!!じょう!!!! diff --git a/html-ruby-extensions/html-ruby-210.html b/html-ruby-extensions/html-ruby-210.html new file mode 100644 index 00000000000000..39e4526dbe8ddd --- /dev/null +++ b/html-ruby-extensions/html-ruby-210.html @@ -0,0 +1,49 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, annotation with rt, extra bases, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!!!じょう! diff --git a/html-ruby-extensions/html-ruby-211.html b/html-ruby-extensions/html-ruby-211.html new file mode 100644 index 00000000000000..718cb721e8b83b --- /dev/null +++ b/html-ruby-extensions/html-ruby-211.html @@ -0,0 +1,49 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rt, extra bases, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!じょう!! diff --git a/html-ruby-extensions/html-ruby-212.html b/html-ruby-extensions/html-ruby-212.html new file mode 100644 index 00000000000000..7a8566341bace3 --- /dev/null +++ b/html-ruby-extensions/html-ruby-212.html @@ -0,0 +1,35 @@ + + + +Ruby Markup Content Model: implicit ruby base unit is *maximal* DOM range, annotation with rt, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + +

The example below consists of 2 base characters (今日), jointly annotated with their pronunciation (きょう). +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!!きょう! diff --git a/html-ruby-extensions/html-ruby-301.html b/html-ruby-extensions/html-ruby-301.html new file mode 100644 index 00000000000000..f50b215d01d458 --- /dev/null +++ b/html-ruby-extensions/html-ruby-301.html @@ -0,0 +1,45 @@ + + + +Ruby Markup Content Model: one ruby per base, annonymous base, annotation with rtc + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-302.html b/html-ruby-extensions/html-ruby-302.html new file mode 100644 index 00000000000000..f37f75600664c5 --- /dev/null +++ b/html-ruby-extensions/html-ruby-302.html @@ -0,0 +1,46 @@ + + + +Ruby Markup Content Model: one ruby per base, rb as base, annotation with rtc + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-303.html b/html-ruby-extensions/html-ruby-303.html new file mode 100644 index 00000000000000..7ffa434734d3a9 --- /dev/null +++ b/html-ruby-extensions/html-ruby-303.html @@ -0,0 +1,46 @@ + + + +Ruby Markup Content Model: single ruby element, anonymous bases, interleaved markup, annotation with rtc + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-304.html b/html-ruby-extensions/html-ruby-304.html new file mode 100644 index 00000000000000..aedc7364301acb --- /dev/null +++ b/html-ruby-extensions/html-ruby-304.html @@ -0,0 +1,47 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rtc + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-305.html b/html-ruby-extensions/html-ruby-305.html new file mode 100644 index 00000000000000..00c272cffcb7de --- /dev/null +++ b/html-ruby-extensions/html-ruby-305.html @@ -0,0 +1,48 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, annotation with rtc and rt + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-306.html b/html-ruby-extensions/html-ruby-306.html new file mode 100644 index 00000000000000..7951bccdbe845e --- /dev/null +++ b/html-ruby-extensions/html-ruby-306.html @@ -0,0 +1,48 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, rb/rt ommitted in middle, annotation with rtc and rt + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-307.html b/html-ruby-extensions/html-ruby-307.html new file mode 100644 index 00000000000000..b000ebcd2a6546 --- /dev/null +++ b/html-ruby-extensions/html-ruby-307.html @@ -0,0 +1,48 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, rb/rt ommitted in first and last positions, annotation with rtc and rt + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-308.html b/html-ruby-extensions/html-ruby-308.html new file mode 100644 index 00000000000000..1db26c91d2b36d --- /dev/null +++ b/html-ruby-extensions/html-ruby-308.html @@ -0,0 +1,52 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rtc, extra annotation (in the same rtc, using rt) + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-309.html b/html-ruby-extensions/html-ruby-309.html new file mode 100644 index 00000000000000..6d00bc1c3b431c --- /dev/null +++ b/html-ruby-extensions/html-ruby-309.html @@ -0,0 +1,52 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabluar markup, annotation with rtc and rt, extra annotation + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-310.html b/html-ruby-extensions/html-ruby-310.html new file mode 100644 index 00000000000000..0fdd7b28735617 --- /dev/null +++ b/html-ruby-extensions/html-ruby-310.html @@ -0,0 +1,47 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, annotation with rtc and rt, extra bases + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-311.html b/html-ruby-extensions/html-ruby-311.html new file mode 100644 index 00000000000000..2e265fa957a8a9 --- /dev/null +++ b/html-ruby-extensions/html-ruby-311.html @@ -0,0 +1,46 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rtc, extra bases + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-312.html b/html-ruby-extensions/html-ruby-312.html new file mode 100644 index 00000000000000..b96bd2ff127b85 --- /dev/null +++ b/html-ruby-extensions/html-ruby-312.html @@ -0,0 +1,32 @@ + + + +Ruby Markup Content Model: if a ruby annotation range consists of an rtc element that contains no rt elements, the single ruby annotation unit represented by its contents spans (is paired with) every ruby base unit in the ruby segment. + + + + + + + + + + + + + +

The example below consists of 2 base characters (今日), jointly annotated with their pronunciation (きょう). +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はきょう diff --git a/html-ruby-extensions/html-ruby-313.html b/html-ruby-extensions/html-ruby-313.html new file mode 100644 index 00000000000000..c3ba8d107855ba --- /dev/null +++ b/html-ruby-extensions/html-ruby-313.html @@ -0,0 +1,46 @@ + + + +Ruby Markup Content Model: one ruby per base, annonymous base, annotation with rtc and rt + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-314.html b/html-ruby-extensions/html-ruby-314.html new file mode 100644 index 00000000000000..feac2ea9f7f13b --- /dev/null +++ b/html-ruby-extensions/html-ruby-314.html @@ -0,0 +1,47 @@ + + + +Ruby Markup Content Model: one ruby per base, rb as base, annotation with rtc and rt + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-315.html b/html-ruby-extensions/html-ruby-315.html new file mode 100644 index 00000000000000..e38e74544457d2 --- /dev/null +++ b/html-ruby-extensions/html-ruby-315.html @@ -0,0 +1,47 @@ + + + +Ruby Markup Content Model: single ruby element, anonymous bases, interleaved markup, annotation with rtc and rt + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-316.html b/html-ruby-extensions/html-ruby-316.html new file mode 100644 index 00000000000000..074a72a03a820f --- /dev/null +++ b/html-ruby-extensions/html-ruby-316.html @@ -0,0 +1,48 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rtc and rt + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/html-ruby-401.html b/html-ruby-extensions/html-ruby-401.html new file mode 100644 index 00000000000000..a4c29a5dd751cd --- /dev/null +++ b/html-ruby-extensions/html-ruby-401.html @@ -0,0 +1,48 @@ + + + +Ruby Markup Content Model: one ruby per base, annonymous base, annotation with rtc, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!!じょう!!!!!!!!! diff --git a/html-ruby-extensions/html-ruby-402.html b/html-ruby-extensions/html-ruby-402.html new file mode 100644 index 00000000000000..359a6f34d6189f --- /dev/null +++ b/html-ruby-extensions/html-ruby-402.html @@ -0,0 +1,49 @@ + + + +Ruby Markup Content Model: one ruby per base, rb as base, annotation with rtc, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!!じょう!!!!!!!! diff --git a/html-ruby-extensions/html-ruby-403.html b/html-ruby-extensions/html-ruby-403.html new file mode 100644 index 00000000000000..edaaeeb4b5ac70 --- /dev/null +++ b/html-ruby-extensions/html-ruby-403.html @@ -0,0 +1,49 @@ + + + +Ruby Markup Content Model: single ruby element, anonymous bases, interleaved markup, annotation with rtc, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!!!じょ!!!!!!!!!!!! diff --git a/html-ruby-extensions/html-ruby-404.html b/html-ruby-extensions/html-ruby-404.html new file mode 100644 index 00000000000000..8fb3be48261158 --- /dev/null +++ b/html-ruby-extensions/html-ruby-404.html @@ -0,0 +1,50 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rtc, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!!じょう!!!!!!!!!! diff --git a/html-ruby-extensions/html-ruby-405.html b/html-ruby-extensions/html-ruby-405.html new file mode 100644 index 00000000000000..84f41fe8b9980d --- /dev/null +++ b/html-ruby-extensions/html-ruby-405.html @@ -0,0 +1,51 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, annotation with rtc and rt, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!!!!じょう!!!! diff --git a/html-ruby-extensions/html-ruby-406.html b/html-ruby-extensions/html-ruby-406.html new file mode 100644 index 00000000000000..d744edf39d5219 --- /dev/null +++ b/html-ruby-extensions/html-ruby-406.html @@ -0,0 +1,51 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, rb/rt ommitted in middle, annotation with rtc and rt, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!!!!じょう!!!!! diff --git a/html-ruby-extensions/html-ruby-407.html b/html-ruby-extensions/html-ruby-407.html new file mode 100644 index 00000000000000..8d27095d923bb6 --- /dev/null +++ b/html-ruby-extensions/html-ruby-407.html @@ -0,0 +1,51 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, rb/rt ommitted in first and last positions, annotation with rtc and rt, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!じょ!!!!! diff --git a/html-ruby-extensions/html-ruby-408.html b/html-ruby-extensions/html-ruby-408.html new file mode 100644 index 00000000000000..42a104b948b5a8 --- /dev/null +++ b/html-ruby-extensions/html-ruby-408.html @@ -0,0 +1,55 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rtc, extra annotation (in the same rtc, using rt), adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!じょう!!!!!!!!!!! diff --git a/html-ruby-extensions/html-ruby-409.html b/html-ruby-extensions/html-ruby-409.html new file mode 100644 index 00000000000000..72b50353f375bd --- /dev/null +++ b/html-ruby-extensions/html-ruby-409.html @@ -0,0 +1,55 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabluar markup, annotation with rtc and rt, extra annotation, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!じょう!!!!! diff --git a/html-ruby-extensions/html-ruby-410.html b/html-ruby-extensions/html-ruby-410.html new file mode 100644 index 00000000000000..489535fb1f2164 --- /dev/null +++ b/html-ruby-extensions/html-ruby-410.html @@ -0,0 +1,50 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, tabular markup, annotation with rtc and rt, extra bases, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!じょう!! diff --git a/html-ruby-extensions/html-ruby-411.html b/html-ruby-extensions/html-ruby-411.html new file mode 100644 index 00000000000000..d566ffd207b3df --- /dev/null +++ b/html-ruby-extensions/html-ruby-411.html @@ -0,0 +1,49 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rtc, extra bases, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!じょう!! diff --git a/html-ruby-extensions/html-ruby-412.html b/html-ruby-extensions/html-ruby-412.html new file mode 100644 index 00000000000000..7e9f912d1e9b4e --- /dev/null +++ b/html-ruby-extensions/html-ruby-412.html @@ -0,0 +1,35 @@ + + + +Ruby Markup Content Model: if a ruby annotation range consists of an rtc element that contains no rt elements, the single ruby annotation unit represented by its contents spans (is paired with) every ruby base unit in the ruby segment., adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + +

The example below consists of 2 base characters (今日), jointly annotated with their pronunciation (きょう). +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!きょ!! diff --git a/html-ruby-extensions/html-ruby-413.html b/html-ruby-extensions/html-ruby-413.html new file mode 100644 index 00000000000000..9aa244cb758bb9 --- /dev/null +++ b/html-ruby-extensions/html-ruby-413.html @@ -0,0 +1,48 @@ + + + +Ruby Markup Content Model: one ruby per base, annonymous base, annotation with rtc and rt, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!じょう!!!!!!! diff --git a/html-ruby-extensions/html-ruby-414.html b/html-ruby-extensions/html-ruby-414.html new file mode 100644 index 00000000000000..9d7c95999e8ed8 --- /dev/null +++ b/html-ruby-extensions/html-ruby-414.html @@ -0,0 +1,49 @@ + + + +Ruby Markup Content Model: one ruby per base, rb as base, annotation with rtc and rt, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!じょう!!!!!!! diff --git a/html-ruby-extensions/html-ruby-415.html b/html-ruby-extensions/html-ruby-415.html new file mode 100644 index 00000000000000..13e00202691eba --- /dev/null +++ b/html-ruby-extensions/html-ruby-415.html @@ -0,0 +1,49 @@ + + + +Ruby Markup Content Model: single ruby element, anonymous bases, interleaved markup, annotation with rtc and rt, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!じょう!!!!!!!!!! diff --git a/html-ruby-extensions/html-ruby-416.html b/html-ruby-extensions/html-ruby-416.html new file mode 100644 index 00000000000000..5121a9e0165bc7 --- /dev/null +++ b/html-ruby-extensions/html-ruby-416.html @@ -0,0 +1,50 @@ + + + +Ruby Markup Content Model: single ruby element, rb bases, interleaved markup, annotation with rtc and rt, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!じょう!!!!!!!!!! diff --git a/html-ruby-extensions/html-ruby-501.html b/html-ruby-extensions/html-ruby-501.html new file mode 100644 index 00000000000000..fde38b9a9ba5b4 --- /dev/null +++ b/html-ruby-extensions/html-ruby-501.html @@ -0,0 +1,32 @@ + + + +Ruby Markup Content Model: two levels of spannings annotations. + + + + + + + + + + + + + +

The example below consists of 2 base characters (“今日”), jointly annotated with two levels of annotations: “きょう” and “today”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はきょうtoday diff --git a/html-ruby-extensions/html-ruby-502.html b/html-ruby-extensions/html-ruby-502.html new file mode 100644 index 00000000000000..01f7afb7136d81 --- /dev/null +++ b/html-ruby-extensions/html-ruby-502.html @@ -0,0 +1,44 @@ + + + +Ruby Markup Content Model: two levels of annotations, each with pairing. + + + + + + + + + + + + + + + +

The example below consists of 2 base characters, each annotated twice with its pronunciation (once in the latin alphabet, once in kana) +“” is annotated by “きょう” and “kyo”. +“” is annotated by “” and “to”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はきょうkyoto diff --git a/html-ruby-extensions/html-ruby-503.html b/html-ruby-extensions/html-ruby-503.html new file mode 100644 index 00000000000000..ef8f946c638673 --- /dev/null +++ b/html-ruby-extensions/html-ruby-503.html @@ -0,0 +1,48 @@ + + + +Ruby Markup Content Model: some explicit and implicit base units, one implicit rtc as the first level annotation, an explicit rtc with some explicit and implicit annotation units as the second level, and a spanning annotation as the third level. + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated twice, and then all jointly annotated once more. +“” is annotated by “1” and “a”. +“” is annotated by “2” and “b”. +“” is annotated by “3” and “c”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はabcaltogether123 diff --git a/html-ruby-extensions/html-ruby-504.html b/html-ruby-extensions/html-ruby-504.html new file mode 100644 index 00000000000000..534f384518b5dc --- /dev/null +++ b/html-ruby-extensions/html-ruby-504.html @@ -0,0 +1,48 @@ + + + +Ruby Markup Content Model: two levels of annotations, one spanning, one with pairing. + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated individually, and also all jointly annotated. +“” is annotated by “1”. +“” is annotated by “2”. +“” is annotated by “3”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はaltogether123 diff --git a/html-ruby-extensions/html-ruby-601.html b/html-ruby-extensions/html-ruby-601.html new file mode 100644 index 00000000000000..8c89dd6484345b --- /dev/null +++ b/html-ruby-extensions/html-ruby-601.html @@ -0,0 +1,35 @@ + + + +Ruby Markup Content Model: two levels of spannings annotations, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + +

The example below consists of 2 base characters (“今日”), jointly annotated with two levels of annotations: “きょう” and “today”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!きょ!!!to!day! diff --git a/html-ruby-extensions/html-ruby-602.html b/html-ruby-extensions/html-ruby-602.html new file mode 100644 index 00000000000000..0bd39776dd36ac --- /dev/null +++ b/html-ruby-extensions/html-ruby-602.html @@ -0,0 +1,47 @@ + + + +Ruby Markup Content Model: two levels of annotations, each with pairing, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + +

The example below consists of 2 base characters, each annotated twice with its pronunciation (once in the latin alphabet, once in kana) +“” is annotated by “きょう” and “kyo”. +“” is annotated by “” and “to”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!!!きょう!!!kyo!to! diff --git a/html-ruby-extensions/html-ruby-603.html b/html-ruby-extensions/html-ruby-603.html new file mode 100644 index 00000000000000..a2d9217cea1c8e --- /dev/null +++ b/html-ruby-extensions/html-ruby-603.html @@ -0,0 +1,51 @@ + + + +Ruby Markup Content Model: some explicit and implicit base units, one implicit rtc as the first level annotation, an explicit rtc with some explicit and implicit annotation units as the second level, and a spanning annotation as the third level, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated twice, and then all jointly annotated once more. +“” is annotated by “1” and “a”. +“” is annotated by “2” and “b”. +“” is annotated by “3” and “c”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!!!!!a!b!c!!!alto!gether!!1!2!3! diff --git a/html-ruby-extensions/html-ruby-604.html b/html-ruby-extensions/html-ruby-604.html new file mode 100644 index 00000000000000..d85393cdb44c06 --- /dev/null +++ b/html-ruby-extensions/html-ruby-604.html @@ -0,0 +1,50 @@ + + + +Ruby Markup Content Model: two levels of annotations, one spanning, one with pairing, adding rp in all the places where it's allowed by the content model, as well as some where it's not. + + + + + + + + + + + + + + + + + +

The example below consists of 3 base characters, each annotated individually, and also all jointly annotated. +“” is annotated by “1”. +“” is annotated by “2”. +“” is annotated by “3”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は!!!!!!altoge!ther!!1!2!3! diff --git a/html-ruby-extensions/html-ruby-701.html b/html-ruby-extensions/html-ruby-701.html new file mode 100644 index 00000000000000..ee2d29d38e3ae5 --- /dev/null +++ b/html-ruby-extensions/html-ruby-701.html @@ -0,0 +1,18 @@ + + + +Ruby Markup Content Model: rb outside ruby + + + + + +

+This test passes if the word "PASS" appears below. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+PASS diff --git a/html-ruby-extensions/html-ruby-702.html b/html-ruby-extensions/html-ruby-702.html new file mode 100644 index 00000000000000..d21f921fbc1a3a --- /dev/null +++ b/html-ruby-extensions/html-ruby-702.html @@ -0,0 +1,18 @@ + + + +Ruby Markup Content Model: rt outside ruby + + + + + +

+This test passes if the word "PASS" appears below. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+PASS diff --git a/html-ruby-extensions/html-ruby-703.html b/html-ruby-extensions/html-ruby-703.html new file mode 100644 index 00000000000000..3e0a38304338ec --- /dev/null +++ b/html-ruby-extensions/html-ruby-703.html @@ -0,0 +1,18 @@ + + + +Ruby Markup Content Model: rtc outside ruby + + + + + +

+This test passes if the word "PASS" appears below. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+PASS diff --git a/html-ruby-extensions/html-ruby-704.html b/html-ruby-extensions/html-ruby-704.html new file mode 100644 index 00000000000000..3afc7431012467 --- /dev/null +++ b/html-ruby-extensions/html-ruby-704.html @@ -0,0 +1,14 @@ + + + +Ruby Markup Content Model: rp outside ruby + + + + + +

+This test passes if the word "FAIL" does not appear below. + +


+FAIL diff --git a/html-ruby-extensions/reference/html-ruby-001-a-ref.html b/html-ruby-extensions/reference/html-ruby-001-a-ref.html new file mode 100644 index 00000000000000..541d58ae6734a3 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-001-a-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-001-b-ref.html b/html-ruby-extensions/reference/html-ruby-001-b-ref.html new file mode 100644 index 00000000000000..4015aa98e1a5de --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-001-b-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-001-c-ref.html b/html-ruby-extensions/reference/html-ruby-001-c-ref.html new file mode 100644 index 00000000000000..f54a43b3e322a6 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-001-c-ref.html @@ -0,0 +1,34 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-001-d-ref.html b/html-ruby-extensions/reference/html-ruby-001-d-ref.html new file mode 100644 index 00000000000000..d12b4cdc7eef69 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-001-d-ref.html @@ -0,0 +1,34 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-001-e-ref.html b/html-ruby-extensions/reference/html-ruby-001-e-ref.html new file mode 100644 index 00000000000000..3ed349acfe8d4b --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-001-e-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-001-f-ref.html b/html-ruby-extensions/reference/html-ruby-001-f-ref.html new file mode 100644 index 00000000000000..a2c7d478bb1ad1 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-001-f-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-001-g-ref.html b/html-ruby-extensions/reference/html-ruby-001-g-ref.html new file mode 100644 index 00000000000000..daf7e7c3d8e072 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-001-g-ref.html @@ -0,0 +1,34 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-001-y-ref.html b/html-ruby-extensions/reference/html-ruby-001-y-ref.html new file mode 100644 index 00000000000000..c0dab0d02ff307 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-001-y-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-001-z-ref.html b/html-ruby-extensions/reference/html-ruby-001-z-ref.html new file mode 100644 index 00000000000000..cfc9efb3864c10 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-001-z-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-008-a-ref.html b/html-ruby-extensions/reference/html-ruby-008-a-ref.html new file mode 100644 index 00000000000000..9b9d3a09e0f722 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-008-a-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょうけ diff --git a/html-ruby-extensions/reference/html-ruby-008-b-ref.html b/html-ruby-extensions/reference/html-ruby-008-b-ref.html new file mode 100644 index 00000000000000..9c4f5e969593bf --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-008-b-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょうけ diff --git a/html-ruby-extensions/reference/html-ruby-008-c-ref.html b/html-ruby-extensions/reference/html-ruby-008-c-ref.html new file mode 100644 index 00000000000000..5026298e07ce8f --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-008-c-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-008-d-ref.html b/html-ruby-extensions/reference/html-ruby-008-d-ref.html new file mode 100644 index 00000000000000..6ae1fff6e7ce06 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-008-d-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-008-e-ref.html b/html-ruby-extensions/reference/html-ruby-008-e-ref.html new file mode 100644 index 00000000000000..b9e7efb22b9c8d --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-008-e-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-008-f-ref.html b/html-ruby-extensions/reference/html-ruby-008-f-ref.html new file mode 100644 index 00000000000000..b5de45b0251ccb --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-008-f-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょうけ diff --git a/html-ruby-extensions/reference/html-ruby-008-g-ref.html b/html-ruby-extensions/reference/html-ruby-008-g-ref.html new file mode 100644 index 00000000000000..1bc3c54a511761 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-008-g-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-008-h-ref.html b/html-ruby-extensions/reference/html-ruby-008-h-ref.html new file mode 100644 index 00000000000000..376bf9e93ab6e2 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-008-h-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょうけ diff --git a/html-ruby-extensions/reference/html-ruby-008-i-ref.html b/html-ruby-extensions/reference/html-ruby-008-i-ref.html new file mode 100644 index 00000000000000..0793991d085166 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-008-i-ref.html @@ -0,0 +1,37 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-008-y-ref.html b/html-ruby-extensions/reference/html-ruby-008-y-ref.html new file mode 100644 index 00000000000000..f082642d4b7fca --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-008-y-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-008-z-ref.html b/html-ruby-extensions/reference/html-ruby-008-z-ref.html new file mode 100644 index 00000000000000..6387c025f21ca9 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-008-z-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-010-a-ref.html b/html-ruby-extensions/reference/html-ruby-010-a-ref.html new file mode 100644 index 00000000000000..e98827b5ec024a --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-010-a-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-010-b-ref.html b/html-ruby-extensions/reference/html-ruby-010-b-ref.html new file mode 100644 index 00000000000000..40ff86cb251816 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-010-b-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-010-c-ref.html b/html-ruby-extensions/reference/html-ruby-010-c-ref.html new file mode 100644 index 00000000000000..e400052b809142 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-010-c-ref.html @@ -0,0 +1,34 @@ + + + +test reference + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-010-d-ref.html b/html-ruby-extensions/reference/html-ruby-010-d-ref.html new file mode 100644 index 00000000000000..35e375dce2de39 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-010-d-ref.html @@ -0,0 +1,34 @@ + + + +test reference + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-010-e-ref.html b/html-ruby-extensions/reference/html-ruby-010-e-ref.html new file mode 100644 index 00000000000000..3d33a0849e2259 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-010-e-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-010-f-ref.html b/html-ruby-extensions/reference/html-ruby-010-f-ref.html new file mode 100644 index 00000000000000..70122ae89e4984 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-010-f-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-010-y-ref.html b/html-ruby-extensions/reference/html-ruby-010-y-ref.html new file mode 100644 index 00000000000000..1ac3cf34a76385 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-010-y-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-010-z-ref.html b/html-ruby-extensions/reference/html-ruby-010-z-ref.html new file mode 100644 index 00000000000000..629259ad8647ac --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-010-z-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, the first being annotated with its pronunciation. +“” is annotated by “じょう”. +“” is not annotated. +“” is not annotated. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-012-a-ref.html b/html-ruby-extensions/reference/html-ruby-012-a-ref.html new file mode 100644 index 00000000000000..ab9d77881ed228 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-012-a-ref.html @@ -0,0 +1,21 @@ + + + +test reference + + +

The example below consists of 2 base characters (今日), jointly annotated with their pronunciation (きょう). +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はきょう diff --git a/html-ruby-extensions/reference/html-ruby-012-b-ref.html b/html-ruby-extensions/reference/html-ruby-012-b-ref.html new file mode 100644 index 00000000000000..8fb6d691226b8c --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-012-b-ref.html @@ -0,0 +1,21 @@ + + + +test reference + + +

The example below consists of 2 base characters (今日), jointly annotated with their pronunciation (きょう). +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は今日きょう diff --git a/html-ruby-extensions/reference/html-ruby-012-c-ref.html b/html-ruby-extensions/reference/html-ruby-012-c-ref.html new file mode 100644 index 00000000000000..c157e3a7b1edf4 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-012-c-ref.html @@ -0,0 +1,24 @@ + + + +test reference + + + +

The example below consists of 2 base characters (今日), jointly annotated with their pronunciation (きょう). +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はきょう diff --git a/html-ruby-extensions/reference/html-ruby-012-d-ref.html b/html-ruby-extensions/reference/html-ruby-012-d-ref.html new file mode 100644 index 00000000000000..177e52871237b8 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-012-d-ref.html @@ -0,0 +1,24 @@ + + + +test reference + + + +

The example below consists of 2 base characters (今日), jointly annotated with their pronunciation (きょう). +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は今日きょう diff --git a/html-ruby-extensions/reference/html-ruby-012-e-ref.html b/html-ruby-extensions/reference/html-ruby-012-e-ref.html new file mode 100644 index 00000000000000..eabccfcc1809c3 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-012-e-ref.html @@ -0,0 +1,21 @@ + + + +test reference + + +

The example below consists of 2 base characters (今日), jointly annotated with their pronunciation (きょう). +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はきょう diff --git a/html-ruby-extensions/reference/html-ruby-012-y-ref.html b/html-ruby-extensions/reference/html-ruby-012-y-ref.html new file mode 100644 index 00000000000000..c3ca803f11d42b --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-012-y-ref.html @@ -0,0 +1,21 @@ + + + +test reference + + +

The example below consists of 2 base characters (今日), jointly annotated with their pronunciation (きょう). +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は今日 diff --git a/html-ruby-extensions/reference/html-ruby-012-z-ref.html b/html-ruby-extensions/reference/html-ruby-012-z-ref.html new file mode 100644 index 00000000000000..85778c97ea867e --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-012-z-ref.html @@ -0,0 +1,21 @@ + + + +test reference + + +

The example below consists of 2 base characters (今日), jointly annotated with their pronunciation (きょう). +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-013-a-ref.html b/html-ruby-extensions/reference/html-ruby-013-a-ref.html new file mode 100644 index 00000000000000..825af33cdab699 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-013-a-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は じょう diff --git a/html-ruby-extensions/reference/html-ruby-013-b-ref.html b/html-ruby-extensions/reference/html-ruby-013-b-ref.html new file mode 100644 index 00000000000000..640cd5ac7851db --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-013-b-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は じょう diff --git a/html-ruby-extensions/reference/html-ruby-013-c-ref.html b/html-ruby-extensions/reference/html-ruby-013-c-ref.html new file mode 100644 index 00000000000000..53ab9b22a07374 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-013-c-ref.html @@ -0,0 +1,34 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は じょう diff --git a/html-ruby-extensions/reference/html-ruby-013-d-ref.html b/html-ruby-extensions/reference/html-ruby-013-d-ref.html new file mode 100644 index 00000000000000..b34b6393cc81cd --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-013-d-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は じょう diff --git a/html-ruby-extensions/reference/html-ruby-013-e-ref.html b/html-ruby-extensions/reference/html-ruby-013-e-ref.html new file mode 100644 index 00000000000000..da01cc9d5a95f5 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-013-e-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は じょう diff --git a/html-ruby-extensions/reference/html-ruby-013-f-ref.html b/html-ruby-extensions/reference/html-ruby-013-f-ref.html new file mode 100644 index 00000000000000..9b6e977a591207 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-013-f-ref.html @@ -0,0 +1,34 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は じょう diff --git a/html-ruby-extensions/reference/html-ruby-013-y-ref.html b/html-ruby-extensions/reference/html-ruby-013-y-ref.html new file mode 100644 index 00000000000000..1c268d5c7374cf --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-013-y-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-014-a-ref.html b/html-ruby-extensions/reference/html-ruby-014-a-ref.html new file mode 100644 index 00000000000000..167b4f8905ae93 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-014-a-ref.html @@ -0,0 +1,38 @@ + + + +test reference + + + +

The example below consists of 3 base characters, two of which carry visible annotations. +“A” is annotated by “1”. +“B” is annotated by “2”. +“C” is not annotated. +For ease of comparison, it is preceded by some context text: “This is a sample”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+This is a sample + A BC + 1x2 + diff --git a/html-ruby-extensions/reference/html-ruby-014-b-ref.html b/html-ruby-extensions/reference/html-ruby-014-b-ref.html new file mode 100644 index 00000000000000..78f092d9b5f757 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-014-b-ref.html @@ -0,0 +1,34 @@ + + + +test reference + + + +

The example below consists of 3 base characters, two of which carry visible annotations. +“A” is annotated by “1”. +“B” is annotated by “2”. +“C” is not annotated. +For ease of comparison, it is preceded by some context text: “This is a sample”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+This is a sample A BC 1x2 diff --git a/html-ruby-extensions/reference/html-ruby-014-c-ref.html b/html-ruby-extensions/reference/html-ruby-014-c-ref.html new file mode 100644 index 00000000000000..2be864ad9cdd3a --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-014-c-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, two of which carry visible annotations. +“A” is annotated by “1”. +“B” is annotated by “2”. +“C” is not annotated. +For ease of comparison, it is preceded by some context text: “This is a sample”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+This is a sample A BC 1x2 diff --git a/html-ruby-extensions/reference/html-ruby-014-d-ref.html b/html-ruby-extensions/reference/html-ruby-014-d-ref.html new file mode 100644 index 00000000000000..5e9f7e489d8026 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-014-d-ref.html @@ -0,0 +1,34 @@ + + + +test reference + + + +

The example below consists of 3 base characters, two of which carry visible annotations. +“A” is annotated by “1”. +“B” is annotated by “2”. +“C” is not annotated. +For ease of comparison, it is preceded by some context text: “This is a sample”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+This is a sample A BC1x2 diff --git a/html-ruby-extensions/reference/html-ruby-014-e-ref.html b/html-ruby-extensions/reference/html-ruby-014-e-ref.html new file mode 100644 index 00000000000000..7b17d92b9fb553 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-014-e-ref.html @@ -0,0 +1,34 @@ + + + +test reference + + + +

The example below consists of 3 base characters, two of which carry visible annotations. +“A” is annotated by “1”. +“B” is annotated by “2”. +“C” is not annotated. +For ease of comparison, it is preceded by some context text: “This is a sample”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+This is a sample A BC1x2 diff --git a/html-ruby-extensions/reference/html-ruby-014-f-ref.html b/html-ruby-extensions/reference/html-ruby-014-f-ref.html new file mode 100644 index 00000000000000..0680fbe5f42699 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-014-f-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, two of which carry visible annotations. +“A” is annotated by “1”. +“B” is annotated by “2”. +“C” is not annotated. +For ease of comparison, it is preceded by some context text: “This is a sample”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+This is a sample A BC1x2
diff --git a/html-ruby-extensions/reference/html-ruby-014-y-ref.html b/html-ruby-extensions/reference/html-ruby-014-y-ref.html new file mode 100644 index 00000000000000..ec48ec0721fb02 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-014-y-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, two of which carry visible annotations. +“A” is annotated by “1”. +“B” is annotated by “2”. +“C” is not annotated. +For ease of comparison, it is preceded by some context text: “This is a sample”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+This is a sample A BC diff --git a/html-ruby-extensions/reference/html-ruby-014-z-ref.html b/html-ruby-extensions/reference/html-ruby-014-z-ref.html new file mode 100644 index 00000000000000..4785d939eb1d4f --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-014-z-ref.html @@ -0,0 +1,33 @@ + + + +test reference + + + +

The example below consists of 3 base characters, two of which carry visible annotations. +“A” is annotated by “1”. +“B” is annotated by “2”. +“C” is not annotated. +For ease of comparison, it is preceded by some context text: “This is a sample”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+This is a sample diff --git a/html-ruby-extensions/reference/html-ruby-015-a-ref.html b/html-ruby-extensions/reference/html-ruby-015-a-ref.html new file mode 100644 index 00000000000000..51cbe135705f53 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-015-a-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-015-b-ref.html b/html-ruby-extensions/reference/html-ruby-015-b-ref.html new file mode 100644 index 00000000000000..8c9066a4efef1e --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-015-b-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-015-c-ref.html b/html-ruby-extensions/reference/html-ruby-015-c-ref.html new file mode 100644 index 00000000000000..e3dfd6be3bc489 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-015-c-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-015-d-ref.html b/html-ruby-extensions/reference/html-ruby-015-d-ref.html new file mode 100644 index 00000000000000..0268d05e358871 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-015-d-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-015-e-ref.html b/html-ruby-extensions/reference/html-ruby-015-e-ref.html new file mode 100644 index 00000000000000..d4892cf4792af8 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-015-e-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-015-f-ref.html b/html-ruby-extensions/reference/html-ruby-015-f-ref.html new file mode 100644 index 00000000000000..0fb3899e56449b --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-015-f-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-015-g-ref.html b/html-ruby-extensions/reference/html-ruby-015-g-ref.html new file mode 100644 index 00000000000000..83dd2f95875214 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-015-g-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-015-h-ref.html b/html-ruby-extensions/reference/html-ruby-015-h-ref.html new file mode 100644 index 00000000000000..b2b080f065d367 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-015-h-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-015-i-ref.html b/html-ruby-extensions/reference/html-ruby-015-i-ref.html new file mode 100644 index 00000000000000..b6af1f159a4adb --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-015-i-ref.html @@ -0,0 +1,37 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-015-j-ref.html b/html-ruby-extensions/reference/html-ruby-015-j-ref.html new file mode 100644 index 00000000000000..132a373fc34359 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-015-j-ref.html @@ -0,0 +1,37 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-015-y-ref.html b/html-ruby-extensions/reference/html-ruby-015-y-ref.html new file mode 100644 index 00000000000000..2fc0d6c0e83d1b --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-015-y-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-015-z-ref.html b/html-ruby-extensions/reference/html-ruby-015-z-ref.html new file mode 100644 index 00000000000000..ebd81b7f986a91 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-015-z-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one excess annotation with no base after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-016-a-ref.html b/html-ruby-extensions/reference/html-ruby-016-a-ref.html new file mode 100644 index 00000000000000..fd04af4e8e9959 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-016-a-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 4 base characters, 3 of which are annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one base with no annotation, after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-016-b-ref.html b/html-ruby-extensions/reference/html-ruby-016-b-ref.html new file mode 100644 index 00000000000000..033ac5f73be179 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-016-b-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 4 base characters, 3 of which are annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one base with no annotation, after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-016-c-ref.html b/html-ruby-extensions/reference/html-ruby-016-c-ref.html new file mode 100644 index 00000000000000..0dd889554ad50c --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-016-c-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 4 base characters, 3 of which are annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one base with no annotation, after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-016-d-ref.html b/html-ruby-extensions/reference/html-ruby-016-d-ref.html new file mode 100644 index 00000000000000..a40cb7580d3c0f --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-016-d-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 4 base characters, 3 of which are annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one base with no annotation, after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-016-e-ref.html b/html-ruby-extensions/reference/html-ruby-016-e-ref.html new file mode 100644 index 00000000000000..3225459daa4b77 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-016-e-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 4 base characters, 3 of which are annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one base with no annotation, after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-016-f-ref.html b/html-ruby-extensions/reference/html-ruby-016-f-ref.html new file mode 100644 index 00000000000000..424a94e95e7644 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-016-f-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 4 base characters, 3 of which are annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one base with no annotation, after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-016-g-ref.html b/html-ruby-extensions/reference/html-ruby-016-g-ref.html new file mode 100644 index 00000000000000..61756305a5f20a --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-016-g-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 4 base characters, 3 of which are annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one base with no annotation, after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-016-h-ref.html b/html-ruby-extensions/reference/html-ruby-016-h-ref.html new file mode 100644 index 00000000000000..21938303ed620e --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-016-h-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 4 base characters, 3 of which are annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one base with no annotation, after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はじょう diff --git a/html-ruby-extensions/reference/html-ruby-016-y-ref.html b/html-ruby-extensions/reference/html-ruby-016-y-ref.html new file mode 100644 index 00000000000000..7fa325c40f58f2 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-016-y-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 4 base characters, 3 of which are annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one base with no annotation, after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-016-z-ref.html b/html-ruby-extensions/reference/html-ruby-016-z-ref.html new file mode 100644 index 00000000000000..93a15fd864fa26 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-016-z-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 4 base characters, 3 of which are annotated with its pronunciation. +“” is annotated by “じょう”. +“” is annotated by “”. +“” is annotated by “”. +There is also one base with no annotation, after the first one: “け”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-501-a-ref.html b/html-ruby-extensions/reference/html-ruby-501-a-ref.html new file mode 100644 index 00000000000000..710c07013d1d35 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-501-a-ref.html @@ -0,0 +1,21 @@ + + + +test reference + + +

The example below consists of 2 base characters (“今日”), jointly annotated with two levels of annotations: “きょう” and “today”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はきょうtoday diff --git a/html-ruby-extensions/reference/html-ruby-501-b-ref.html b/html-ruby-extensions/reference/html-ruby-501-b-ref.html new file mode 100644 index 00000000000000..5ee5b6f259a423 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-501-b-ref.html @@ -0,0 +1,21 @@ + + + +test reference + + +

The example below consists of 2 base characters (“今日”), jointly annotated with two levels of annotations: “きょう” and “today”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は今日きょうtoday diff --git a/html-ruby-extensions/reference/html-ruby-501-c-ref.html b/html-ruby-extensions/reference/html-ruby-501-c-ref.html new file mode 100644 index 00000000000000..971f8163323cc0 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-501-c-ref.html @@ -0,0 +1,24 @@ + + + +test reference + + + +

The example below consists of 2 base characters (“今日”), jointly annotated with two levels of annotations: “きょう” and “today”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はきょうtoday diff --git a/html-ruby-extensions/reference/html-ruby-501-d-ref.html b/html-ruby-extensions/reference/html-ruby-501-d-ref.html new file mode 100644 index 00000000000000..df31440e960659 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-501-d-ref.html @@ -0,0 +1,24 @@ + + + +test reference + + + +

The example below consists of 2 base characters (“今日”), jointly annotated with two levels of annotations: “きょう” and “today”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は今日きょうtoday diff --git a/html-ruby-extensions/reference/html-ruby-501-e-ref.html b/html-ruby-extensions/reference/html-ruby-501-e-ref.html new file mode 100644 index 00000000000000..3aa45725ee016d --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-501-e-ref.html @@ -0,0 +1,21 @@ + + + +test reference + + +

The example below consists of 2 base characters (“今日”), jointly annotated with two levels of annotations: “きょう” and “today”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はきょうtoday diff --git a/html-ruby-extensions/reference/html-ruby-501-y-ref.html b/html-ruby-extensions/reference/html-ruby-501-y-ref.html new file mode 100644 index 00000000000000..ed0d2ea42c8ae8 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-501-y-ref.html @@ -0,0 +1,21 @@ + + + +test reference + + +

The example below consists of 2 base characters (“今日”), jointly annotated with two levels of annotations: “きょう” and “today”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は今日 diff --git a/html-ruby-extensions/reference/html-ruby-501-z-ref.html b/html-ruby-extensions/reference/html-ruby-501-z-ref.html new file mode 100644 index 00000000000000..d9468d3d9c0458 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-501-z-ref.html @@ -0,0 +1,21 @@ + + + +test reference + + +

The example below consists of 2 base characters (“今日”), jointly annotated with two levels of annotations: “きょう” and “today”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-502-a-ref.html b/html-ruby-extensions/reference/html-ruby-502-a-ref.html new file mode 100644 index 00000000000000..1934d88873dc3c --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-502-a-ref.html @@ -0,0 +1,31 @@ + + + +test reference + + + +

The example below consists of 2 base characters, each annotated twice with its pronunciation (once in the latin alphabet, once in kana) +“” is annotated by “きょう” and “kyo”. +“” is annotated by “” and “to”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はきょうkyoto diff --git a/html-ruby-extensions/reference/html-ruby-502-b-ref.html b/html-ruby-extensions/reference/html-ruby-502-b-ref.html new file mode 100644 index 00000000000000..8230f53b6728dd --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-502-b-ref.html @@ -0,0 +1,32 @@ + + + +test reference + + + +

The example below consists of 2 base characters, each annotated twice with its pronunciation (once in the latin alphabet, once in kana) +“” is annotated by “きょう” and “kyo”. +“” is annotated by “” and “to”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はきょうkyoto diff --git a/html-ruby-extensions/reference/html-ruby-502-c-ref.html b/html-ruby-extensions/reference/html-ruby-502-c-ref.html new file mode 100644 index 00000000000000..6d8d1908de26ec --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-502-c-ref.html @@ -0,0 +1,31 @@ + + + +test reference + + + +

The example below consists of 2 base characters, each annotated twice with its pronunciation (once in the latin alphabet, once in kana) +“” is annotated by “きょう” and “kyo”. +“” is annotated by “” and “to”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はきょうkyoto diff --git a/html-ruby-extensions/reference/html-ruby-502-d-ref.html b/html-ruby-extensions/reference/html-ruby-502-d-ref.html new file mode 100644 index 00000000000000..c97d2997be3497 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-502-d-ref.html @@ -0,0 +1,31 @@ + + + +test reference + + + +

The example below consists of 2 base characters, each annotated twice with its pronunciation (once in the latin alphabet, once in kana) +“” is annotated by “きょう” and “kyo”. +“” is annotated by “” and “to”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はきょうkyoto diff --git a/html-ruby-extensions/reference/html-ruby-502-e-ref.html b/html-ruby-extensions/reference/html-ruby-502-e-ref.html new file mode 100644 index 00000000000000..f0ac29f0397b75 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-502-e-ref.html @@ -0,0 +1,32 @@ + + + +test reference + + + +

The example below consists of 2 base characters, each annotated twice with its pronunciation (once in the latin alphabet, once in kana) +“” is annotated by “きょう” and “kyo”. +“” is annotated by “” and “to”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はきょうkyoto diff --git a/html-ruby-extensions/reference/html-ruby-502-y-ref.html b/html-ruby-extensions/reference/html-ruby-502-y-ref.html new file mode 100644 index 00000000000000..e89eaed007e8f4 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-502-y-ref.html @@ -0,0 +1,31 @@ + + + +test reference + + + +

The example below consists of 2 base characters, each annotated twice with its pronunciation (once in the latin alphabet, once in kana) +“” is annotated by “きょう” and “kyo”. +“” is annotated by “” and “to”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-502-z-ref.html b/html-ruby-extensions/reference/html-ruby-502-z-ref.html new file mode 100644 index 00000000000000..859de8ec7911cf --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-502-z-ref.html @@ -0,0 +1,31 @@ + + + +test reference + + + +

The example below consists of 2 base characters, each annotated twice with its pronunciation (once in the latin alphabet, once in kana) +“” is annotated by “きょう” and “kyo”. +“” is annotated by “” and “to”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-503-a-ref.html b/html-ruby-extensions/reference/html-ruby-503-a-ref.html new file mode 100644 index 00000000000000..f09ba546ca0a40 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-503-a-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated twice, and then all jointly annotated once more. +“” is annotated by “1” and “a”. +“” is annotated by “2” and “b”. +“” is annotated by “3” and “c”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はabcaltogether123 diff --git a/html-ruby-extensions/reference/html-ruby-503-b-ref.html b/html-ruby-extensions/reference/html-ruby-503-b-ref.html new file mode 100644 index 00000000000000..22f78e5455163c --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-503-b-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated twice, and then all jointly annotated once more. +“” is annotated by “1” and “a”. +“” is annotated by “2” and “b”. +“” is annotated by “3” and “c”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はabcaltogether123 diff --git a/html-ruby-extensions/reference/html-ruby-503-c-ref.html b/html-ruby-extensions/reference/html-ruby-503-c-ref.html new file mode 100644 index 00000000000000..b9572ae1132863 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-503-c-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated twice, and then all jointly annotated once more. +“” is annotated by “1” and “a”. +“” is annotated by “2” and “b”. +“” is annotated by “3” and “c”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はabcaltogether123 diff --git a/html-ruby-extensions/reference/html-ruby-503-d-ref.html b/html-ruby-extensions/reference/html-ruby-503-d-ref.html new file mode 100644 index 00000000000000..f032960584e579 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-503-d-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated twice, and then all jointly annotated once more. +“” is annotated by “1” and “a”. +“” is annotated by “2” and “b”. +“” is annotated by “3” and “c”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はabcaltogether123 diff --git a/html-ruby-extensions/reference/html-ruby-503-e-ref.html b/html-ruby-extensions/reference/html-ruby-503-e-ref.html new file mode 100644 index 00000000000000..9652f7c6703a7d --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-503-e-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated twice, and then all jointly annotated once more. +“” is annotated by “1” and “a”. +“” is annotated by “2” and “b”. +“” is annotated by “3” and “c”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はabcaltogether123 diff --git a/html-ruby-extensions/reference/html-ruby-503-y-ref.html b/html-ruby-extensions/reference/html-ruby-503-y-ref.html new file mode 100644 index 00000000000000..0b8b9316a3f4af --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-503-y-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated twice, and then all jointly annotated once more. +“” is annotated by “1” and “a”. +“” is annotated by “2” and “b”. +“” is annotated by “3” and “c”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-503-z-ref.html b/html-ruby-extensions/reference/html-ruby-503-z-ref.html new file mode 100644 index 00000000000000..e7f64624185ffd --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-503-z-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated twice, and then all jointly annotated once more. +“” is annotated by “1” and “a”. +“” is annotated by “2” and “b”. +“” is annotated by “3” and “c”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-504-a-ref.html b/html-ruby-extensions/reference/html-ruby-504-a-ref.html new file mode 100644 index 00000000000000..961f2e94709eab --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-504-a-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated individually, and also all jointly annotated. +“” is annotated by “1”. +“” is annotated by “2”. +“” is annotated by “3”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はaltogether123 diff --git a/html-ruby-extensions/reference/html-ruby-504-b-ref.html b/html-ruby-extensions/reference/html-ruby-504-b-ref.html new file mode 100644 index 00000000000000..e097ec4b6c1fee --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-504-b-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated individually, and also all jointly annotated. +“” is annotated by “1”. +“” is annotated by “2”. +“” is annotated by “3”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はaltogether123 diff --git a/html-ruby-extensions/reference/html-ruby-504-c-ref.html b/html-ruby-extensions/reference/html-ruby-504-c-ref.html new file mode 100644 index 00000000000000..65f8e7e79b3533 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-504-c-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated individually, and also all jointly annotated. +“” is annotated by “1”. +“” is annotated by “2”. +“” is annotated by “3”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はaltogether123 diff --git a/html-ruby-extensions/reference/html-ruby-504-d-ref.html b/html-ruby-extensions/reference/html-ruby-504-d-ref.html new file mode 100644 index 00000000000000..3e62f6fd5b49bc --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-504-d-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated individually, and also all jointly annotated. +“” is annotated by “1”. +“” is annotated by “2”. +“” is annotated by “3”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はaltogether123 diff --git a/html-ruby-extensions/reference/html-ruby-504-e-ref.html b/html-ruby-extensions/reference/html-ruby-504-e-ref.html new file mode 100644 index 00000000000000..68ae33f00f1319 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-504-e-ref.html @@ -0,0 +1,36 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated individually, and also all jointly annotated. +“” is annotated by “1”. +“” is annotated by “2”. +“” is annotated by “3”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文はaltogether123 diff --git a/html-ruby-extensions/reference/html-ruby-504-y-ref.html b/html-ruby-extensions/reference/html-ruby-504-y-ref.html new file mode 100644 index 00000000000000..da6233559e9951 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-504-y-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated individually, and also all jointly annotated. +“” is annotated by “1”. +“” is annotated by “2”. +“” is annotated by “3”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-504-z-ref.html b/html-ruby-extensions/reference/html-ruby-504-z-ref.html new file mode 100644 index 00000000000000..7e2aef7e08c282 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-504-z-ref.html @@ -0,0 +1,35 @@ + + + +test reference + + + +

The example below consists of 3 base characters, each annotated individually, and also all jointly annotated. +“” is annotated by “1”. +“” is annotated by “2”. +“” is annotated by “3”. +The whole is annotated with “altogether”. +For ease of comparison, it is preceded by some context text: “例文は”. +This test passes if: +

+ +

Note: The colors are not part of the test, +they are merely provided as help to the person running the test, +to make it easier to recognize the various parts of the text. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


+例文は diff --git a/html-ruby-extensions/reference/html-ruby-701-ref.html b/html-ruby-extensions/reference/html-ruby-701-ref.html new file mode 100644 index 00000000000000..79106a2b0e736c --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-701-ref.html @@ -0,0 +1,14 @@ + + + +test reference + + +

+This test passes if the word "PASS" appears below. + +

Note: This is not a layout or rendering test. +The precise appearance is not specified, +and implementations may therefore validly vary. + +


diff --git a/html-ruby-extensions/reference/html-ruby-704-ref.html b/html-ruby-extensions/reference/html-ruby-704-ref.html new file mode 100644 index 00000000000000..5a5c2ab9f79636 --- /dev/null +++ b/html-ruby-extensions/reference/html-ruby-704-ref.html @@ -0,0 +1,10 @@ + + + +Ruby Markup Content Model + + +

+This test passes if the word "FAIL" does not appear below. + +