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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/text/place-ellipsis-in-inline-block-adjacent-float.html

Issue 2880653002: Display ellipsis correctly in inline blocks adjacent to floats (Closed)
Patch Set: bug 720377 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/text/place-ellipsis-in-inline-block-adjacent-float-2.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <meta charset='utf-8'>
3 <style>
4 .container {
5 overflow: hidden;
6 text-overflow: ellipsis;
7 white-space: nowrap;
8 width: 100px;
9 height: 50px;
10 }
11 .rtl {
12 direction: rtl;
13 }
14 .float {
15 float: right;
16 width: 100px;
17 height: 50px;
18 }
19 span {
20 display: inline-block;
21 }
22 </style>
23 <p>crbug.com/720377: The text below should have an ellipsis.</p>
24 <p>You should see something like 'This text sho...' below.</p>
25 <div class="container">
26 <div class="float"></div>
27 <span>This text should have an ellipsis.</span>
28 </div>
29 <p>You should see something like '...ave an ellipsis' below.</p>
30 <div class="container rtl">
31 <span>This text should have an ellipsis.</span>
32 <div class="float" style="float:left;"></div>
33 </div>
34 <p>You should see hebrew characters followed by an ellipsis.</p>
35 <div class="container">
36 <div class="float"></div>
37 <span>בגדהוזחטיכךל בגדהוזחטיכךל</span>
38 </div>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/text/place-ellipsis-in-inline-block-adjacent-float-2.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698