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

Unified Diff: third_party/WebKit/LayoutTests/fast/text/place-rtl-ellipsis-in-inline-blocks-2.html

Issue 2888093006: Place ellipsis correctly in inline blocks separated by spaces (Closed)
Patch Set: bug 133700 Created 3 years, 7 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
Index: third_party/WebKit/LayoutTests/fast/text/place-rtl-ellipsis-in-inline-blocks-2.html
diff --git a/third_party/WebKit/LayoutTests/fast/text/place-rtl-ellipsis-in-inline-blocks-2.html b/third_party/WebKit/LayoutTests/fast/text/place-rtl-ellipsis-in-inline-blocks-2.html
new file mode 100644
index 0000000000000000000000000000000000000000..a6bdc98d36fbfc1686b86d7a8ae3391118a0b127
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/text/place-rtl-ellipsis-in-inline-blocks-2.html
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<meta charset='utf-8'>
+<style>
+div {
+ width: 95px;
+ font: 12px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+.rtl {
+ direction: rtl;
+}
+span {
+ display: inline-block;
+}
+</style>
+<p>crbug.com/133700: Ellipsis placed correctly in rtl text in an inline-block wth an rtl flow.</p>
+
+<p>You should see text followed by ellipsis below.</p>
+<div>
+ <span>אבג</span> <span>דהו</span> <span>זחט</span> <span>אבג</span> <span>דהו</span> <span>זחט</span>
+</div>
+
+<p>You should see ellipsis followed by text below.</p>
+<div class="rtl">
+ <span>אבג</span> <span>דהו</span> <span>זחט</span> <span>אבג</span> <span>דהו</span> <span>זחט</span>
+</div>
+
+<p>You should see text followed by ellipsis below.</p>
+<div>
+ <span>אבגדהוזחטיכךל<br>אבגדהוזחטיכךל</span> <span>זחט</span> <span>יכך</span>
+</div>
+
+<p>You should see ellipsis followed by text below.</p>
+<div class="rtl">
+ <span>אבגדהוזחטיכךל<br>אבגדהוזחטיכךל</span> <span>זחט</span> <span>יכך</span>
+</div>

Powered by Google App Engine
This is Rietveld 408576698