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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/text/ellipsis-ltr-text-in-rtl-flow-leading-space.html

Issue 2529243002: Skip leading space in ltr text in rtl flow when placing ellipsis (Closed)
Patch Set: bug 667128 Created 4 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .container {
4 width: 6em;
5 }
6 .container > div {
7 overflow: hidden;
8 }
9 .ellipsis {
10 text-overflow: ellipsis;
11 direction: rtl;
12 }
13 </style>
14 <p>crbug.com/667128: Ignore leading space when handling ellipsis on ltr text in an rtl flow.</p>
15 <p>The ellipsis should not overlap the text.</p>
16 <div class="container">
17 <div class="ellipsis">
18 ButtonWithAReallyLongNameButtonWithAReallyLongName
19 </div>
20 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698