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

Side by Side Diff: LayoutTests/webexposed/nonstable-css-properties.html

Issue 873963002: Enable text-align-last property, by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 5 years, 3 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <div id='el'></div> 4 <div id='el'></div>
5 5
6 <script src="../resources/js-test.js"></script> 6 <script src="../resources/js-test.js"></script>
7 <script> 7 <script>
8 8
9 description("Test getting and setting nonstable css properties to non-default va lues"); 9 description("Test getting and setting nonstable css properties to non-default va lues");
10 10
(...skipping 19 matching lines...) Expand all
30 ['grid-template-rows', 'max-content'], 30 ['grid-template-rows', 'max-content'],
31 ['grid-column-start', 'auto'], 31 ['grid-column-start', 'auto'],
32 ['grid-column-end', '2'], 32 ['grid-column-end', '2'],
33 ['grid-row-start', '1'], 33 ['grid-row-start', '1'],
34 ['grid-column', 'auto'], 34 ['grid-column', 'auto'],
35 ['grid-row', '1'], 35 ['grid-row', '1'],
36 ['grid-area', '2'], 36 ['grid-area', '2'],
37 ['grid-auto-flow', 'column'], 37 ['grid-auto-flow', 'column'],
38 ['grid-template-areas', '"test"'], 38 ['grid-template-areas', '"test"'],
39 39
40 ['text-align-last', 'start'],
41 ['text-justify', 'distribute'], 40 ['text-justify', 'distribute'],
42 ]; 41 ];
43 42
44 properties.forEach(function(args) { 43 properties.forEach(function(args) {
45 testStyle(args[0], args[1]); 44 testStyle(args[0], args[1]);
46 }); 45 });
47 46
48 </script> 47 </script>
49 </body> 48 </body>
50 </html> 49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698