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

Unified Diff: LayoutTests/fast/css3-text/css3-text-align-last/text-align-last-start.html

Issue 19471004: Rendering the property, text-align-last. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 1st patch for review 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-align-last/text-align-last-start.html
diff --git a/LayoutTests/fast/css3-text/css3-text-align-last/text-align-last-start.html b/LayoutTests/fast/css3-text/css3-text-align-last/text-align-last-start.html
new file mode 100644
index 0000000000000000000000000000000000000000..f694147e53c2d71fcfaed9a29032dccfc55dba51
--- /dev/null
+++ b/LayoutTests/fast/css3-text/css3-text-align-last/text-align-last-start.html
@@ -0,0 +1,19 @@
+<!DOCTYPE HTML>
+<html lang="en">
Julien - ping for review 2013/10/22 15:06:06 Let's remove the lang attribute.
dw.im 2013/10/23 02:40:58 will remove it.
+<head>
+ <link href="text-align-last.css" rel="stylesheet" type="text/css">
+ <style type="text/css"> div {text-align-last:start} </style>
Julien - ping for review 2013/10/22 15:06:06 Again a super broad selector which makes the test
dw.im 2013/10/23 02:40:58 I want to test text-align-last:start works properl
+</head>
+<body>
+ <title>Test Case for text-align-last:start</title>
+ <h1 style="font-size: 1em;">text-align-last: start</h1>
+
Julien - ping for review 2013/10/22 15:06:06 What's expected? How can someone unfamiliar with t
dw.im 2013/10/23 02:40:58 There is *-expected.html file, but still I can up
Julien - ping for review 2013/10/23 15:41:51 Yes, we don't want pixel tests but you missed the
+ <div dir="ltr" style="text-align:start;">1 LTR align is start align-last is start. </div>
+ <div dir="ltr" style="text-align:end;">2 LTR align is end align-last is start. </div>
+ <div dir="ltr" style="text-align:left;">3 LTR align is left align-last is start. </div>
+ <div dir="ltr" style="text-align:right;">4 LTR align is right align-last is start. </div>
+
+ <div dir="rtl" style="text-align:start;">5 RTL align is start align-last is start. </div>
+ <div dir="rtl" style="text-align:end;">6 RTL align is end align-last is start. </div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698