Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Unified Diff: LayoutTests/fast/ruby/line-break-ruby.html

Issue 1304993003: Fix Japanese line breaking rule before and after ruby (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: mac_chromium_rel_ng bot is stuck, re-upload to see if it fixes Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/TestExpectations ('k') | Source/core/layout/LayoutRubyRun.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..985a0956e2cee01e7405ff21783e86e28b275b6c
--- /dev/null
+++ b/LayoutTests/fast/ruby/line-break-ruby.html
@@ -0,0 +1,34 @@
+<!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="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" style="width:3em;">あ(<ruby>べ<rt>る</rt></ruby>)か</div>
+ <div title="OP+ruby+CL (overflow)" style="width:2em;">あ(<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>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | Source/core/layout/LayoutRubyRun.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698