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

Side by Side Diff: LayoutTests/fast/text/soft-hyphen-simple-text-expected.html

Issue 648293003: Handle missing glyphs when adjusting spacing in SimpleShaper (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 <title>Soft Hyphen Test</title>
5 <style>
6 p {
7 text-align: justify;
8 width: 250px;
9 height: 250px;
10 position: relative;
11 padding: 1px;
12 }
13 p > #cover {
14 position: absolute;
15 top: 0;
16 left: 0;
17 right: 0;
18 bottom: 0;
19 background: green;
20 display: block;
21 }
22 </style>
23 </head>
24 <body>
25 <p>
26 &nbsp;
27 <span id="cover">&nbsp;</span>
28 </p>
29 <p>
30 A green square and no text should appear above.
31 </p>
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698