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

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

Issue 146773002: [CSS Grid Layout] Rename grid-definition-{columns|rows} to match the new syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed renaming issues with some tests. Created 6 years, 10 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 13 matching lines...) Expand all
24 ['-webkit-shape-margin', '10px'], 24 ['-webkit-shape-margin', '10px'],
25 ['-webkit-shape-padding', '10px'], 25 ['-webkit-shape-padding', '10px'],
26 ['-webkit-shape-inside', 'circle(10px, 10px, 10px)'], 26 ['-webkit-shape-inside', 'circle(10px, 10px, 10px)'],
27 ['-webkit-shape-outside', 'circle(10px, 10px, 10px)'], 27 ['-webkit-shape-outside', 'circle(10px, 10px, 10px)'],
28 28
29 ['-webkit-wrap-flow', 'both'], 29 ['-webkit-wrap-flow', 'both'],
30 ['-webkit-wrap-through', 'none'], 30 ['-webkit-wrap-through', 'none'],
31 31
32 ['grid-auto-columns', 'auto'], 32 ['grid-auto-columns', 'auto'],
33 ['grid-auto-rows', 'auto'], 33 ['grid-auto-rows', 'auto'],
34 ['grid-definition-columns', 'min-content'], 34 ['grid-template-columns', 'min-content'],
35 ['grid-definition-rows', 'max-content'], 35 ['grid-template-rows', 'max-content'],
36 ['grid-column-start', 'auto'], 36 ['grid-column-start', 'auto'],
37 ['grid-column-end', '2'], 37 ['grid-column-end', '2'],
38 ['grid-row-start', '1'], 38 ['grid-row-start', '1'],
39 ['grid-column', 'auto'], 39 ['grid-column', 'auto'],
40 ['grid-row', '1'], 40 ['grid-row', '1'],
41 ['grid-area', '2'], 41 ['grid-area', '2'],
42 ['grid-auto-flow', 'column'], 42 ['grid-auto-flow', 'column'],
43 ['grid-template-areas', '"test"'], 43 ['grid-template-areas', '"test"'],
44 44
45 ['text-align-last', 'start'], 45 ['text-align-last', 'start'],
46 ['text-justify', 'distribute'], 46 ['text-justify', 'distribute'],
47 ]; 47 ];
48 48
49 properties.forEach(function(args) { 49 properties.forEach(function(args) {
50 testStyle(args[0], args[1]); 50 testStyle(args[0], args[1]);
51 }); 51 });
52 52
53 </script> 53 </script>
54 </body> 54 </body>
55 </html> 55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698