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

Side by Side Diff: LayoutTests/fast/css3-text/css3-word-break/css3-word-break-keep-all.html

Issue 1094863007: Implement "word-break: keep-all" in CSS3 Text (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Replace custom SA charset detecting function to already existing one Created 5 years, 8 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
« no previous file with comments | « no previous file | LayoutTests/fast/css3-text/css3-word-break/css3-word-break-keep-all-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 div { width: 70px; margin-bottom: 20px; border: solid thin black; wo rd-break: keep-all; }
6 </style>
7 </head>
8 <body>
9 <!-- latin works as it was -->
10 <div>
11 MMMMMMMMMMMMMMMMM
12 </div>
13 <div>
14 MMMMMMM 123MMMMMMM
15 </div>
16 <div>
17 MM MMMM MM 123 MMM
18 </div>
19
20 <!-- disable soft wrap between cjk letters -->
21 <div>
22 &#x6f22;&#x6f22;&#x6f22;&#x6f22;&#x6f22;&#x6f22;&#x6f22;&#x6f22;
23 </div>
24 <div>
25 &#xac00;&#xac00;&#xac00;&#xac00;&#xac00;&#xac00;&#xac00;&#xac00;
26 </div>
27 <div>
28 &#x3042;&#x3042;&#x3042;&#x3042;&#x3042;&#x3042;&#x3042;&#x3042;
29 </div>
30 <div>
31 2015&#x5e74;4&#x6708;17&#x65e5;12&#x6642;30&#x5206;4&#x79d2;
32 </div>
33
34 <!-- no break between non-BMP -->
35 <div> <!-- old italic -->
36 &#x10307;&#x10304;&#x1030b;&#x1030b;&#x1030f;&#x10301;&#x1030b;&#x10 309;&#x1030d;&#x1030a;
37 </div>
38 <div> <!-- old turkic -->
39 &#x10c00;&#x10c01;&#x10c00;&#x10c01;&#x10c00;&#x10c01;&#x10c00;&#x10 c01;&#x10c00;&#x10c01;&#x10c00;&#x10c01;&#x10c00;&#x10c01;&#x10c00;&#x10c01;
40 </div>
41
42 <!-- CL breaks after -->
43 <div> <!--U+FF0C fullwidth comma -->
44 &#x767e;&#x5ea6;&#x4e00;&#x4e0b;&#xff0c;&#x4f60;&#x5c31;&#x77e5;&#x9053;
45 </div>
46 <div> <!-- U+FF0E fullwidth full stop -->
47 &#x306a;&#x3069;&#x3067;&#x306f;&#x7701;&#x3044;&#x3067;&#x3082;&#x3088;&#x3044; &#xff0e;&#x3057;&#x304b;&#x3057;
48 </div>
49 <div> <!--U+3002 ideographics full stop -->
50 &#x30de;&#x30a4;&#x30ca;&#x30b9;&#x306b;&#x306a;&#x308b;&#x3002;&#x6765;&#x5e74; &#x5ea6;&#x306f;
51 </div>
52 <div> <!-- U+3001 ideographics comma -->
53 &#x653f;&#x5e9c;&#x306f;&#xff11;&#xff12;&#x65e5;&#x3001;&#x4eca;&#x5e74;&#x5ea6; &#x3068;
54 </div>
55 </body>
56 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css3-text/css3-word-break/css3-word-break-keep-all-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698