Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE HTML> | |
| 2 <html> | |
| 3 <head> | |
| 4 <style> | |
| 5 .testDiv { | |
| 6 width: 208px; | |
| 7 border: 1px solid #000000; | |
| 8 font-family: Ahem, monospace; | |
| 9 font-size: 1em; | |
| 10 } | |
| 11 </style> | |
| 12 </head> | |
| 13 <body> | |
| 14 <div> | |
| 15 text-align is not justify, even though each line has value for text-align-last<b r> | |
| 16 This test checks that text-align-last property works properly. | |
| 17 </div> | |
| 18 | |
| 19 <div class='testDiv' style='text-align:start; text-align-last:end'>start end</di v> | |
|
leviw_travelin_and_unemployed
2014/06/23 15:26:11
This test doesn't actually validate that this only
| |
| 20 | |
| 21 <div class='testDiv' style='text-align:end; text-align-last:start'>end start</di v> | |
| 22 | |
| 23 <div class='testDiv' style='text-align:left; text-align-last:right'>left right</ div> | |
| 24 | |
| 25 <div class='testDiv' style='text-align:right; text-align-last:left'>right left</ div> | |
| 26 | |
| 27 <div class='testDiv' style='text-align:center; text-align-last:left'>center left </div> | |
| 28 | |
| 29 </body> | |
| 30 </html> | |
| 31 | |
| OLD | NEW |