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

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

Issue 333563003: [CSS Grid Layout] Update grid-auto-flow to the new syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Small fix in add/removeChild to avoid dirtying the grid in stack 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(gridAutoFlowNone, '').getPropertyValue('grid-auto-f low') is 'none'
8 PASS window.getComputedStyle(gridAutoFlowColumn, '').getPropertyValue('grid-auto -flow') is 'column' 7 PASS window.getComputedStyle(gridAutoFlowColumn, '').getPropertyValue('grid-auto -flow') is 'column'
9 PASS window.getComputedStyle(gridAutoFlowRow, '').getPropertyValue('grid-auto-fl ow') is 'row' 8 PASS window.getComputedStyle(gridAutoFlowRow, '').getPropertyValue('grid-auto-fl ow') is 'row'
10 PASS window.getComputedStyle(gridAutoFlowColumns, '').getPropertyValue('grid-aut o-flow') is 'none' 9 PASS window.getComputedStyle(gridAutoFlowColumnDense, '').getPropertyValue('grid -auto-flow') is 'column dense'
11 PASS window.getComputedStyle(gridAutoFlowRows, '').getPropertyValue('grid-auto-f low') is 'none' 10 PASS window.getComputedStyle(gridAutoFlowRowDense, '').getPropertyValue('grid-au to-flow') is 'row dense'
12 PASS window.getComputedStyle(gridAutoFlowInherit, '').getPropertyValue('grid-aut o-flow') is 'column' 11 PASS window.getComputedStyle(gridAutoFlowDenseColumn, '').getPropertyValue('grid -auto-flow') is 'column dense'
13 PASS window.getComputedStyle(gridAutoFlowNoInherit, '').getPropertyValue('grid-a uto-flow') is 'none' 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'
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'
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'
18 PASS window.getComputedStyle(gridAutoFlowNone, '').getPropertyValue('grid-auto-f low') is 'row'
19 PASS window.getComputedStyle(gridAutoFlowColumns, '').getPropertyValue('grid-aut o-flow') is 'row'
20 PASS window.getComputedStyle(gridAutoFlowRows, '').getPropertyValue('grid-auto-f low') is 'row'
21 PASS window.getComputedStyle(gridAutoFlowDense, '').getPropertyValue('grid-auto- flow') is 'row'
22 PASS window.getComputedStyle(gridAutoFlowColumnColumn, '').getPropertyValue('gri d-auto-flow') is 'row'
23 PASS window.getComputedStyle(gridAutoFlowDenseColumnStack, '').getPropertyValue( 'grid-auto-flow') is 'row'
24 PASS window.getComputedStyle(gridAutoFlowDenseRowStack, '').getPropertyValue('gr id-auto-flow') is 'row'
25 PASS window.getComputedStyle(gridAutoFlowStackRowRow, '').getPropertyValue('grid -auto-flow') is 'row'
26 PASS window.getComputedStyle(gridAutoFlowInherit, '').getPropertyValue('grid-aut o-flow') is 'row'
27 PASS window.getComputedStyle(gridAutoFlowNoInherit, '').getPropertyValue('grid-a uto-flow') is 'row'
14 28
15 Test the initial value 29 Test the initial value
16 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'none' 30 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
17 31
18 Test getting and setting grid-auto-flow through JS 32 Test getting and setting grid-auto-flow through JS
19 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'column' 33 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'column'
34 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'column dense'
35 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row dense'
36 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'column dense'
37 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row dense'
20 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' 38 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
39 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'stack row'
40 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'stack column'
41 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'stack row'
42 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'stack column'
43 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'stack row'
21 44
22 Test getting and setting bad values for grid-auto-flow through JS 45 Test getting and setting bad values for grid-auto-flow through JS
23 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' 46 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
47 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
48 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
49 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
50 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
51 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
24 52
25 Test setting grid-auto-flow to 'initial' through JS 53 Test setting grid-auto-flow to 'initial' through JS
26 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'none' 54 PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
27 PASS successfullyParsed is true 55 PASS successfullyParsed is true
28 56
29 TEST COMPLETE 57 TEST COMPLETE
30 58
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698