Skip to content

Commit

Permalink
Updated CSS Grid Layout Module Level 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Zefling committed Jul 26, 2024
1 parent 40880ef commit 8b8404b
Showing 1 changed file with 14 additions and 45 deletions.
59 changes: 14 additions & 45 deletions tests/css-grid-3.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,29 @@ export default {
stability: 'experimental',
},
properties: {
grid: {
links: {
dev: '#masonry-layout',
},
tests: [
'masonry / masonry',
'masonry / repeat(4, 2ch)',
'repeat(4, 2ch) / masonry',
'masonry / repeat(auto-fit, minmax(25ch, 1fr))',
'repeat(auto-fit, minmax(25ch, 1fr)) / masonry',
],
},
'grid-template-columns': {
links: {
dev: '#masonry-layout',
},
tests: ['masonry'],
tests: ['masonry', 'repeat(auto-fit, minmax(25ch, 1fr))'],
},
'grid-template-rows': {
links: {
dev: '#masonry-layout',
},
tests: ['masonry '],
tests: ['masonry ', 'repeat(auto-fit, minmax(25ch, 1fr))'],
},
'masonry-auto-flow': {
links: {
Expand All @@ -35,48 +47,5 @@ export default {
'ordered pack',
],
},
'align-tracks': {
links: {
dev: '#tracks-alignment',
},
tests: [
'normal',
'baseline',
'first baseline',
'last baseline',
'space-between',
'space-around',
'space-evenly',
'stretch',
'center',
'start',
'end',
'flex-start',
'flex-end',
'unsafe center',
'safe start',
],
},
'justify-tracks': {
links: {
dev: '#tracks-alignment',
},
tests: [
'normal',
'space-between',
'space-around',
'space-evenly',
'stretch',
'center',
'start',
'end',
'flex-start',
'flex-end',
'left',
'right',
'unsafe center',
'safe start',
],
},
},
};

0 comments on commit 8b8404b

Please sign in to comment.