| Index: LayoutTests/fast/ruby/line-break-ruby.html
|
| diff --git a/LayoutTests/fast/ruby/line-break-ruby.html b/LayoutTests/fast/ruby/line-break-ruby.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..bb3db426dd5a92da6bb4b3b25b877fd6a9f5c126
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/ruby/line-break-ruby.html
|
| @@ -0,0 +1,36 @@
|
| +<!DOCTYPE html>
|
| +<meta charset="utf-8">
|
| +<script src="../../resources/testharness.js"></script>
|
| +<script src="../../resources/testharnessreport.js"></script>
|
| +<style>
|
| +#container > div {
|
| + line-height:2;
|
| + margin-bottom:1em;
|
| +}
|
| +</style>
|
| +<div id="container">
|
| + <div title="ruby+ID" style="width:2em;">あいう<ruby>べ<rt>る</rt></ruby>かき</div>
|
| + <div title="ID+ruby" style="width:2em;">あい<ruby>べ<rt>る</rt></ruby>かきく</div>
|
| + <div title="ID+CL" style="width:2em;">あい)か</div>
|
| + <div title="span+CL" style="width:2em;">あ<span>す</span>)かき</div>
|
| + <div title="ruby+CL" style="width:2em;">あ<ruby>べ<rt>る</rt></ruby>)かき</div>
|
| + <div title="OP+ID" style="width:2em;">あ(かきく</div>
|
| + <div title="OP+ruby" style="width:2em;">あ(<ruby>べ<rt>る</rt></ruby>かき</div>
|
| + <div title="OP+ruby+CL 2em" style="width:2em;">あ(<ruby>べ<rt>る</rt></ruby>)かき</div>
|
| + <div title="OP+ruby+CL 3em" style="width:3em;">あ(<ruby>べ<rt>る</rt></ruby>)かきく</div>
|
| +</div>
|
| +<script>
|
| +runTests();
|
| +function runTests() {
|
| + var lineHeight = parseFloat(getComputedStyle(container.firstElementChild).lineHeight);
|
| + Array.prototype.forEach.call(container.children, function (element) {
|
| + test(function () {
|
| + var lineCount = element.offsetHeight / lineHeight;
|
| + assert_equals(lineCount, 3);
|
| + }, element.title);
|
| + });
|
| +
|
| + if (window.testRunner)
|
| + container.style.display = "none";
|
| +}
|
| +</script>
|
|
|