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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-auto-flow-get-set-expected.txt

Issue 401473003: [CSS Grid Layout] Rename gridAutoFlow[Row|Column] to gridAutoFlow[Row|Column]Sparse (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Keep separation between sparse and dense in the tests Created 6 years, 5 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 Test that setting and getting grid-auto-flow works as expected 1 Test that setting and getting grid-auto-flow works as expected
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 Test getting auto-flow set through CSS 6 Test getting auto-flow set through CSS
7 PASS window.getComputedStyle(gridAutoFlowColumn, '').getPropertyValue('grid-auto -flow') is 'column' 7 PASS window.getComputedStyle(gridAutoFlowColumnSparse, '').getPropertyValue('gri d-auto-flow') is 'column'
8 PASS window.getComputedStyle(gridAutoFlowRow, '').getPropertyValue('grid-auto-fl ow') is 'row' 8 PASS window.getComputedStyle(gridAutoFlowRowSparse, '').getPropertyValue('grid-a uto-flow') is 'row'
9 PASS window.getComputedStyle(gridAutoFlowColumnDense, '').getPropertyValue('grid -auto-flow') is 'column dense' 9 PASS window.getComputedStyle(gridAutoFlowColumnDense, '').getPropertyValue('grid -auto-flow') is 'column dense'
10 PASS window.getComputedStyle(gridAutoFlowRowDense, '').getPropertyValue('grid-au to-flow') is 'row dense' 10 PASS window.getComputedStyle(gridAutoFlowRowDense, '').getPropertyValue('grid-au to-flow') is 'row dense'
11 PASS window.getComputedStyle(gridAutoFlowDenseColumn, '').getPropertyValue('grid -auto-flow') is 'column dense' 11 PASS window.getComputedStyle(gridAutoFlowDenseColumn, '').getPropertyValue('grid -auto-flow') is 'column dense'
12 PASS window.getComputedStyle(gridAutoFlowDenseRow, '').getPropertyValue('grid-au to-flow') is 'row dense' 12 PASS window.getComputedStyle(gridAutoFlowDenseRow, '').getPropertyValue('grid-au to-flow') is 'row dense'
13 PASS window.getComputedStyle(gridAutoFlowStack, '').getPropertyValue('grid-auto- flow') is 'stack row' 13 PASS window.getComputedStyle(gridAutoFlowStack, '').getPropertyValue('grid-auto- flow') is 'stack row'
14 PASS window.getComputedStyle(gridAutoFlowStackColumn, '').getPropertyValue('grid -auto-flow') is 'stack column' 14 PASS window.getComputedStyle(gridAutoFlowStackColumn, '').getPropertyValue('grid -auto-flow') is 'stack column'
15 PASS window.getComputedStyle(gridAutoFlowStackRow, '').getPropertyValue('grid-au to-flow') is 'stack row' 15 PASS window.getComputedStyle(gridAutoFlowStackRow, '').getPropertyValue('grid-au to-flow') is 'stack row'
16 PASS window.getComputedStyle(gridAutoFlowColumnStack, '').getPropertyValue('grid -auto-flow') is 'stack column' 16 PASS window.getComputedStyle(gridAutoFlowColumnStack, '').getPropertyValue('grid -auto-flow') is 'stack column'
17 PASS window.getComputedStyle(gridAutoFlowRowStack, '').getPropertyValue('grid-au to-flow') is 'stack row' 17 PASS window.getComputedStyle(gridAutoFlowRowStack, '').getPropertyValue('grid-au to-flow') is 'stack row'
18 PASS window.getComputedStyle(gridAutoFlowNone, '').getPropertyValue('grid-auto-f low') is 'row' 18 PASS window.getComputedStyle(gridAutoFlowNone, '').getPropertyValue('grid-auto-f low') is 'row'
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 PASS element.style.gridAutoFlow is '' 68 PASS element.style.gridAutoFlow is ''
69 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' 69 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
70 70
71 Test setting grid-auto-flow to 'initial' through JS 71 Test setting grid-auto-flow to 'initial' through JS
72 PASS element.style.gridAutoFlow is 'initial' 72 PASS element.style.gridAutoFlow is 'initial'
73 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' 73 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
74 PASS successfullyParsed is true 74 PASS successfullyParsed is true
75 75
76 TEST COMPLETE 76 TEST COMPLETE
77 77
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698