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

Unified Diff: LayoutTests/fast/css-grid-layout/grid-shorthand-get-set.html

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-shorthand-get-set.html
diff --git a/LayoutTests/fast/css-grid-layout/grid-shorthand-get-set.html b/LayoutTests/fast/css-grid-layout/grid-shorthand-get-set.html
index 307c420904c93a25772d84900ac48e18b66301f1..b55df9e38e442a2e1437bb4b6419ddab4542771b 100644
--- a/LayoutTests/fast/css-grid-layout/grid-shorthand-get-set.html
+++ b/LayoutTests/fast/css-grid-layout/grid-shorthand-get-set.html
@@ -24,12 +24,6 @@
#gridWithAutoFlowDenseRow {
grid: dense row 10px;
}
-#gridWithAutoFlowStackColumn {
- grid: stack column 10px;
-}
-#gridWithAutoFlowRowStack {
- grid: row stack 10px;
-}
#gridWithAutoFlowAndColumnsAndRows {
grid: column 10px / 20px;
}
@@ -48,9 +42,6 @@
#gridWithMisplacedDense {
grid: dense column dense;
}
-#gridWithMisplacedStack {
- grid: stack row stack;
-}
</style>
<script src="../../resources/js-test.js"></script>
</head>
@@ -67,14 +58,11 @@
<div class="grid" id="gridWithAutoFlowNone"></div>
<div class="grid" id="gridWithAutoFlowColumnDense"></div>
<div class="grid" id="gridWithAutoFlowDenseRow"></div>
-<div class="grid" id="gridWithAutoFlowStackColumn"></div>
-<div class="grid" id="gridWithAutoFlowRowStack"></div>
<div class="grid" id="gridWithAutoFlowAndColumnsAndRows"></div>
<div class="grid" id="gridWithExplicitAndImplicit"></div>
<div class="grid" id="gridWithMisplacedNone1"></div>
<div class="grid" id="gridWithMisplacedNone2"></div>
<div class="grid" id="gridWithMisplacedDense"></div>
-<div class="grid" id="gridWithMisplacedStack"></div>
<script src="resources/grid-shorthand-parsing-utils.js"></script>
<script>
description("This test checks that the 'grid' shorthand is properly parsed and the longhand properties correctly assigned.");
@@ -88,8 +76,6 @@
testGridDefinitionsValues(document.getElementById("gridWithAutoFlowNone"), "none", "none", "none", "row", "auto", "auto");
testGridDefinitionsValues(document.getElementById("gridWithAutoFlowColumnDense"), "none", "none", "none", "column dense", "10px", "10px");
testGridDefinitionsValues(document.getElementById("gridWithAutoFlowDenseRow"), "none", "none", "none", "row dense", "10px", "10px");
- testGridDefinitionsValues(document.getElementById("gridWithAutoFlowStackColumn"), "none", "none", "none", "stack column", "10px", "10px");
- testGridDefinitionsValues(document.getElementById("gridWithAutoFlowRowStack"), "none", "none", "none", "stack row", "10px", "10px");
testGridDefinitionsValues(document.getElementById("gridWithAutoFlowAndColumnsAndRows"), "none", "none", "none", "column", "10px", "20px");
debug("");
@@ -98,7 +84,6 @@
testGridDefinitionsValues(document.getElementById("gridWithMisplacedNone1"), "none", "none", "none", "row", "auto", "auto");
testGridDefinitionsValues(document.getElementById("gridWithMisplacedNone2"), "none", "none", "none", "row", "auto", "auto");
testGridDefinitionsValues(document.getElementById("gridWithMisplacedDense"), "none", "none", "none", "row", "auto", "auto");
- testGridDefinitionsValues(document.getElementById("gridWithMisplacedStack"), "none", "none", "none", "row", "auto", "auto");
debug("");
debug("Test getting and setting 'grid' shorthand through JS");

Powered by Google App Engine
This is Rietveld 408576698