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

Unified Diff: LayoutTests/fast/css3-text/css3-text-justify/resources/text-justify.css

Issue 50413008: Rendering text-justify:none (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/css3-text/css3-text-justify/resources/text-justify.css
diff --git a/LayoutTests/fast/css3-text/css3-text-justify/resources/text-justify.css b/LayoutTests/fast/css3-text/css3-text-justify/resources/text-justify.css
new file mode 100644
index 0000000000000000000000000000000000000000..383c038d8b95de703038b1b7aad75cac68c1aaeb
--- /dev/null
+++ b/LayoutTests/fast/css3-text/css3-text-justify/resources/text-justify.css
@@ -0,0 +1,18 @@
+.testDiv {
+ width: 300px;
+ border: 1px solid #000000;
+ font-family: "Courier New", Courier, monospace;
+ font-size: 12px;
+}
+
+.alignStart {
+ text-align: start;
+}
+
+.alignJustify {
+ text-align: justify;
+}
+
+.justifyNone {
+ text-justify: none;
+}

Powered by Google App Engine
This is Rietveld 408576698