OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE HTML> | |
2 <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.
| |
3 <head> | |
4 <link href="text-align-last.css" rel="stylesheet" type="text/css"> | |
5 <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
| |
6 </head> | |
7 <body> | |
8 <title>Test Case for text-align-last:start</title> | |
9 <h1 style="font-size: 1em;">text-align-last: start</h1> | |
10 | |
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
| |
11 <div dir="ltr" style="text-align:start;">1 LTR align is start align-last is start. </div> | |
12 <div dir="ltr" style="text-align:end;">2 LTR align is end align-last is star t. </div> | |
13 <div dir="ltr" style="text-align:left;">3 LTR align is left align-last is st art. </div> | |
14 <div dir="ltr" style="text-align:right;">4 LTR align is right align-last is start. </div> | |
15 | |
16 <div dir="rtl" style="text-align:start;">5 RTL align is start align-last is start. </div> | |
17 <div dir="rtl" style="text-align:end;">6 RTL align is end align-last is star t. </div> | |
18 </body> | |
19 </html> | |
OLD | NEW |