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

Side by Side Diff: LayoutTests/fast/text/ellipsis-stroked-expected.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: Rebase patch Created 5 years, 6 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <style> 3 <style>
4 div { 4 div {
5 font-family: Ahem; 5 font-family: Ahem;
6 color: green; 6 color: green;
7 -webkit-text-stroke: 1px blue; 7 -webkit-text-stroke: 1px blue;
8 height: 1.5em; 8 height: 1.5em;
9 width: 10.5em; 9 width: 10.5em;
10 overflow: hidden; 10 overflow: hidden;
11 white-space: nowrap; 11 white-space: nowrap;
12 } 12 }
13 </style> 13 </style>
14 14
15 <!-- a span surrounding the ellipsis is needed so the stroke draws separately -- > 15 <!-- a span surrounding the ellipsis is needed so the stroke draws separately -- >
16 <!--
16 <div>This text<span>&hellip;</span></div> 17 <div>This text<span>&hellip;</span></div>
18 -->
19 <div>This text<span>&#x002e;&#x002e;&#x002e;</span></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698