Index: LayoutTests/fast/css-grid-layout/grid-auto-flow-get-set-expected.txt |
diff --git a/LayoutTests/fast/css-grid-layout/grid-auto-flow-get-set-expected.txt b/LayoutTests/fast/css-grid-layout/grid-auto-flow-get-set-expected.txt |
index e29d2792bde5b9462d8e1d3fd0d4a88b5356d580..82c46a45e39445a38d31892b6ab5581e03b3c732 100644 |
--- a/LayoutTests/fast/css-grid-layout/grid-auto-flow-get-set-expected.txt |
+++ b/LayoutTests/fast/css-grid-layout/grid-auto-flow-get-set-expected.txt |
@@ -4,26 +4,54 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE |
Test getting auto-flow set through CSS |
-PASS window.getComputedStyle(gridAutoFlowNone, '').getPropertyValue('grid-auto-flow') is 'none' |
PASS window.getComputedStyle(gridAutoFlowColumn, '').getPropertyValue('grid-auto-flow') is 'column' |
PASS window.getComputedStyle(gridAutoFlowRow, '').getPropertyValue('grid-auto-flow') is 'row' |
-PASS window.getComputedStyle(gridAutoFlowColumns, '').getPropertyValue('grid-auto-flow') is 'none' |
-PASS window.getComputedStyle(gridAutoFlowRows, '').getPropertyValue('grid-auto-flow') is 'none' |
-PASS window.getComputedStyle(gridAutoFlowInherit, '').getPropertyValue('grid-auto-flow') is 'column' |
-PASS window.getComputedStyle(gridAutoFlowNoInherit, '').getPropertyValue('grid-auto-flow') is 'none' |
+PASS window.getComputedStyle(gridAutoFlowColumnDense, '').getPropertyValue('grid-auto-flow') is 'column dense' |
+PASS window.getComputedStyle(gridAutoFlowRowDense, '').getPropertyValue('grid-auto-flow') is 'row dense' |
+PASS window.getComputedStyle(gridAutoFlowDenseColumn, '').getPropertyValue('grid-auto-flow') is 'column dense' |
+PASS window.getComputedStyle(gridAutoFlowDenseRow, '').getPropertyValue('grid-auto-flow') is 'row dense' |
+PASS window.getComputedStyle(gridAutoFlowStack, '').getPropertyValue('grid-auto-flow') is 'stack row' |
+PASS window.getComputedStyle(gridAutoFlowStackColumn, '').getPropertyValue('grid-auto-flow') is 'stack column' |
+PASS window.getComputedStyle(gridAutoFlowStackRow, '').getPropertyValue('grid-auto-flow') is 'stack row' |
+PASS window.getComputedStyle(gridAutoFlowColumnStack, '').getPropertyValue('grid-auto-flow') is 'stack column' |
+PASS window.getComputedStyle(gridAutoFlowRowStack, '').getPropertyValue('grid-auto-flow') is 'stack row' |
+PASS window.getComputedStyle(gridAutoFlowNone, '').getPropertyValue('grid-auto-flow') is 'row' |
+PASS window.getComputedStyle(gridAutoFlowColumns, '').getPropertyValue('grid-auto-flow') is 'row' |
+PASS window.getComputedStyle(gridAutoFlowRows, '').getPropertyValue('grid-auto-flow') is 'row' |
+PASS window.getComputedStyle(gridAutoFlowDense, '').getPropertyValue('grid-auto-flow') is 'row' |
+PASS window.getComputedStyle(gridAutoFlowColumnColumn, '').getPropertyValue('grid-auto-flow') is 'row' |
+PASS window.getComputedStyle(gridAutoFlowDenseColumnStack, '').getPropertyValue('grid-auto-flow') is 'row' |
+PASS window.getComputedStyle(gridAutoFlowDenseRowStack, '').getPropertyValue('grid-auto-flow') is 'row' |
+PASS window.getComputedStyle(gridAutoFlowStackRowRow, '').getPropertyValue('grid-auto-flow') is 'row' |
+PASS window.getComputedStyle(gridAutoFlowInherit, '').getPropertyValue('grid-auto-flow') is 'row' |
+PASS window.getComputedStyle(gridAutoFlowNoInherit, '').getPropertyValue('grid-auto-flow') is 'row' |
Test the initial value |
-PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'none' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' |
Test getting and setting grid-auto-flow through JS |
PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'column' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'column dense' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row dense' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'column dense' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row dense' |
PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'stack row' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'stack column' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'stack row' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'stack column' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'stack row' |
Test getting and setting bad values for grid-auto-flow through JS |
PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' |
Test setting grid-auto-flow to 'initial' through JS |
-PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'none' |
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row' |
PASS successfullyParsed is true |
TEST COMPLETE |