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

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: Rebasing patch Created 5 years, 11 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 <html>
3 <head>
4 <style>
5 @font-face {
6 font-family: DroidSansSubset;
7 src: url(../../third_party/DroidSans/DroidSans.ttf.subset-U002E-U0041-42.ttf) format("truetype");
8 }
9
10
11 #div {
12 font-family: DroidSansSubset;
13 white-space: nowrap;
14 text-overflow: ellipsis;
15 width: 2em;
16 overflow: hidden;
17 border: 1px solid #000000;
18 font-size:24px;
19 }
20
21 </style>
22 </head>
23 <body>
24
25 <!--
Dominik Röttsches 2015/01/08 13:02:25 Please do not submit unused/commented-out code.
26 <div id="div">A,,,B</div>
27 -->
28 <div id="div">ABAB</div>
Dominik Röttsches 2015/01/08 13:02:25 Can the test case be extended to cover the firstli
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698