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: third_party/WebKit/LayoutTests/fast/text/hyphens/hyphens-orphaned-word.html

Issue 2560383002: Merge 2924: Apply hyphenation when there is only one word in a paragraph (Closed)
Patch Set: Created 4 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 <script>
3 if (window.internals)
4 internals.setMockHyphenation('en-us');
5 </script>
6 <style>
7 div {
8 border: thin solid black;
9 font-family: 'Courier New';
10 -webkit-hyphens: auto;
11 hyphens: auto;
12 }
13 </style>
14 <body lang="en-us">
15 <p>Do not hyphenate the last word in a paragraph.</p>
16 <div style="width: 15ch">This is hyphenation</div>
17 <div style="width: 15ch">This is hyphenation
18 </div>
19
20 <p>Do hyphenate single word.</p>
21 <div style="width: 8ch">hyphenation</div>
22 <div style="width: 8ch">hyphenation
23 </div>
24 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698