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

Side by Side Diff: LayoutTests/fast/css3-text/css3-text-justify/text-justify-8bits.html

Issue 255323004: Rendering text-justify:distribute for 8 bit characters. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: patch for landing 2 Created 6 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 <html>
3 <head>
4 <link href="resources/text-justify.css" rel="stylesheet" type="text/css">
5 </head>
6 <body>
7 <div>
8 Test all of the values of text-justify for 8bits characters<br/>
9 This test checks that all of the values for text-justify property works properly for 8bits characters.<br/>
10 Every block has been set as 'text-align: justify' and 'text-align-last: start'.
11 </div>
12 <br/>
13
14 <b>text-justify: auto</b><br/>
15 <div class='testDiv alignJustify alignLastStart justifyAuto'>
16 Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
17 </div><br/>
18
19 <b>text-justify: none</b><br/>
20 <div class='testDiv alignJustify alignLastStart justifyNone'>
21 Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
22 </div><br/>
23
24 <b>text-justify: inter-word</b><br/>
25 <div class='testDiv alignJustify alignLastStart justifyInterWord'>
26 Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
27 </div><br/>
28
29 <b>text-justify: distribute</b><br/>
30 <div class='testDiv alignJustify alignLastStart justifyDistribute'>
31 Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
32 </div><br/>
33
34 </body>
35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698