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

Side by Side Diff: sky/tests/layout/ellipsis.sky

Issue 751483002: Fix bug from 3db9471ae80bd492f2a346113d2323ba8eee0c09. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 <sky>
2 <import src="../resources/dump-as-render-tree.sky" />
3 <style>
4 div {
5 width: 50px;
6 text-overflow: ellipsis;
7 overflow: hidden;
8 white-space: nowrap;
9 border: 3px solid blue;
10 }
11 p {
12 width: 50px;
13 display: paragraph;
14 text-overflow: ellipsis;
15 overflow: hidden;
16 white-space: nowrap;
17 border: 3px solid red;
18 }
19 span {
20 display: inline;
21 }
22 </style>
23 <div>These lines <p>should</p> all ellipsize. </div>
24 <p><span>As should this.</span></p>
25 </sky>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698