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

Side by Side Diff: LayoutTests/css3/flexbox/text-overflow-on-flexbox.html

Issue 23449034: text-overflow on flexbox should have no effect (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/css3/flexbox/text-overflow-on-flexbox-expected.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 <html>
3 <head>
4 <style>
5 div.flex {
6 display: flex;
7 width: 100px;
8 overflow: hidden;
9 text-overflow: ellipsis;
10 }
11 </style>
12 </head>
13 <body>
14 <div class="flex">
15 AAAAAAAAAAAAAAAAAAAA
16 </div>
17 <div class="flex">
18 <b>bbbbbbbbbbbbbbbbbbbb</b>
19 </div>
20 <div class="flex">
21 <div>cccccccccccccccccccc</div>
22 </div>
23 <div class="flex">
24 DDDDDDDDDDDDDDDDDDDD<b>ee</b>FFFFFFFFFFFFFFFFFFFF
25 </div>
26 </body>
27 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/css3/flexbox/text-overflow-on-flexbox-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698