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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/text/place-mixed-ellipsis-in-inline-blocks-align-right-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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <meta charset='utf-8'>
3 <style>
4 div {
5 width: 95px;
6 font: 12px;
7 overflow: hidden;
8 text-overflow: ellipsis;
9 white-space: nowrap;
10 text-align: right;
11 }
12 .rtl {
13 direction: rtl;
14 }
15 span {
16 display: inline-block;
17 }
18 </style>
19 <p>crbug.com/133700: Ellipsis placed correctly in rtl text in an inline-block wt h an rtl flow.</p>
20
21 <p>You should see text followed by ellipsis below.</p>
22 <div>
23 <span>אבx</span> <span>דהx</span> <span>זחx</span>
24 <span>אבx</span> <span>דהx</span> <span>זחx</span>
25 </div>
26
27 <p>You should see ellipsis followed by text below.</p>
28 <div class="rtl">
29 <span>אבx</span> <span>דהx</span> <span>זחx</span>
30 <span>אבx</span> <span>דהx</span> <span>זחx</span>
31 </div>
32
33 <p>You should see text followed by ellipsis below.</p>
34 <div>
35 <span>אבגדהוזabcdefg<br>אבגדהוabcdefg</span> <span>זחa</span> <span>יכa</s pan>
36 </div>
37
38 <p>You should see ellipsis followed by text below.</p>
39 <div class="rtl">
40 <span>אבגדהוזabcdefg<br>אבגדהוabcdefg</span> <span>זחa</span> <span>יכa</s pan>
41 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698