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

Side by Side Diff: LayoutTests/fast/text/ellipsis-platform-font-change.html

Issue 781003003: Using fullstop Unicode if horizontal ellipsis not present (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@diff_font_render
Patch Set: Created 6 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 <html>
3 <head>
4 <style>
5 @font-face {
6 font-family: AndroidEmoji;
7 src: url(../../third_party/AndroidEmojiMonospace/AndroidEmoji.ttf.subset-uni20 3C.ttf) format("truetype");
Dominik Röttsches 2014/12/15 09:37:41 See comment on README.Chromium file. Could you exp
h.joshi 2014/12/24 06:30:59 Pls refer to comment in README.Chromium
8 }
9
10
11 #div {
12 font-family: AndroidEmoji;
13 white-space: nowrap;
14 text-overflow: ellipsis;
15 width: 2em;
16 overflow: hidden;
17 border: 1px solid #000000;
18 font-size:20px;
19 }
20
21 </style>
22 </head>
23 <body>
24
25 <div id="div">A,,,B</div>
26
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698