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

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

Issue 826893002: [CSS Grid Layout] Remove stack from grid-auto-flow syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased patch Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
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 24816e00e12734063f9e9e182ba279acd1beb283..d714a624bbab0382db61055536db860e6716f38d 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
@@ -6,15 +6,11 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
Test getting grid-auto-flow set through CSS
PASS window.getComputedStyle(gridAutoFlowColumnSparse, '').getPropertyValue('grid-auto-flow') is 'column'
PASS window.getComputedStyle(gridAutoFlowRowSparse, '').getPropertyValue('grid-auto-flow') is 'row'
+PASS window.getComputedStyle(gridAutoFlowDense, '').getPropertyValue('grid-auto-flow') is 'row dense'
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(gridAutoFlowInherit, '').getPropertyValue('grid-auto-flow') is 'column'
PASS window.getComputedStyle(gridAutoFlowNoInherit, '').getPropertyValue('grid-auto-flow') is 'row'
@@ -22,12 +18,12 @@ Test getting grid-auto-flow bad values set through CSS
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(gridAutoFlowColumnFoo, '').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(gridAutoFlowStackRow, '').getPropertyValue('grid-auto-flow') is 'row'
+PASS window.getComputedStyle(gridAutoFlowColumnStack, '').getPropertyValue('grid-auto-flow') is 'row'
+PASS window.getComputedStyle(gridAutoFlowDenseColumnDense, '').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'
Test the initial value
PASS element.style.gridAutoFlow is ''
@@ -45,16 +41,6 @@ PASS element.style.gridAutoFlow is 'dense row'
PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row dense'
PASS element.style.gridAutoFlow is 'row'
PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
-PASS element.style.gridAutoFlow is 'stack'
-PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'stack row'
-PASS element.style.gridAutoFlow is 'stack column'
-PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'stack column'
-PASS element.style.gridAutoFlow is 'stack row'
-PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'stack row'
-PASS element.style.gridAutoFlow is 'column stack'
-PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'stack column'
-PASS element.style.gridAutoFlow is 'row stack'
-PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'stack row'
Test getting and setting bad values for grid-auto-flow through JS
PASS element.style.gridAutoFlow is ''
@@ -69,6 +55,8 @@ PASS element.style.gridAutoFlow is ''
PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
PASS element.style.gridAutoFlow is ''
PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
+PASS element.style.gridAutoFlow is ''
+PASS window.getComputedStyle(element, '').getPropertyValue('grid-auto-flow') is 'row'
Test setting grid-auto-flow to 'initial' through JS
PASS element.style.gridAutoFlow is 'initial'

Powered by Google App Engine
This is Rietveld 408576698