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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/text/hyphens/midword-break-priority-expected.html

Issue 2560453002: Prioritize hyphenations over break-word/break-all (Closed)
Patch Set: Rebase with a static helper function 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 <style>
3 dt {
4 float: left;
5 width: 19ch;
6 }
7 dd {
8 margin-left: 20ch;
9 }
10 div {
11 border: thick solid blue;
12 width: 8ch;
13 font-family: 'Courier New';
14 }
15 .ahem {
16 font-family: ahem;
17 }
18 </style>
19 <body lang="en-us">
20 <dl>
21 <dt>hyphens
22 <dd><div>hyphen-<br>ation is</div>
23 <dd><div>hyphen-<br>ation</div>
24 <dt>hyphens break-word
25 <dd><div>hyphen-<br>ation is</div>
26 <dd><div>hyphen-<br>ation</div>
27 <dt>hyphens break-all
28 <dd><div>hyphen-<br>ation is</div>
29 <dd><div>hyphen-<br>ation</div>
30 <dt>hyphens break-all break-word
31 <dd><div>hyphen-<br>ation is</div>
32 <dd><div>hyphen-<br>ation</div>
33 <dt>break-word
34 <dd><div class="ahem">XXXXXXXX<br>)</div>
35 <dt>break-all
36 <dd><div class="ahem">XXXXXXX<br>X)</div>
37 <dt>break-all break-word
38 <dd><div class="ahem">XXXXXXX<br>X)</div>
39 </dl>
40 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698