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

Unified 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, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/css3-text/css3-text-justify/text-justify-8bits.html
diff --git a/LayoutTests/fast/css3-text/css3-text-justify/text-justify-8bits.html b/LayoutTests/fast/css3-text/css3-text-justify/text-justify-8bits.html
new file mode 100644
index 0000000000000000000000000000000000000000..e26d602e6ad132d7433f404a787d7badec20cfd7
--- /dev/null
+++ b/LayoutTests/fast/css3-text/css3-text-justify/text-justify-8bits.html
@@ -0,0 +1,35 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <link href="resources/text-justify.css" rel="stylesheet" type="text/css">
+</head>
+<body>
+<div>
+Test all of the values of text-justify for 8bits characters<br/>
+This test checks that all of the values for text-justify property works properly for 8bits characters.<br/>
+Every block has been set as 'text-align: justify' and 'text-align-last: start'.
+</div>
+<br/>
+
+<b>text-justify: auto</b><br/>
+<div class='testDiv alignJustify alignLastStart justifyAuto'>
+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
+</div><br/>
+
+<b>text-justify: none</b><br/>
+<div class='testDiv alignJustify alignLastStart justifyNone'>
+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
+</div><br/>
+
+<b>text-justify: inter-word</b><br/>
+<div class='testDiv alignJustify alignLastStart justifyInterWord'>
+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
+</div><br/>
+
+<b>text-justify: distribute</b><br/>
+<div class='testDiv alignJustify alignLastStart justifyDistribute'>
+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
+</div><br/>
+
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698