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

Unified Diff: LayoutTests/fast/css-grid-layout/grid-item-negative-integer-explicit-grid-resolution.html

Issue 146773002: [CSS Grid Layout] Rename grid-definition-{columns|rows} to match the new syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed renaming issues with some tests. Created 6 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-item-negative-integer-explicit-grid-resolution.html
diff --git a/LayoutTests/fast/css-grid-layout/grid-item-negative-integer-explicit-grid-resolution.html b/LayoutTests/fast/css-grid-layout/grid-item-negative-integer-explicit-grid-resolution.html
index 3f4e105d380698b3a9b38e06436783062e28b356..74c5291eaf5ac987e1d1f98e9bd65af9d3cbd1fc 100644
--- a/LayoutTests/fast/css-grid-layout/grid-item-negative-integer-explicit-grid-resolution.html
+++ b/LayoutTests/fast/css-grid-layout/grid-item-negative-integer-explicit-grid-resolution.html
@@ -7,14 +7,14 @@ if (window.testRunner)
<link href="resources/grid.css" rel="stylesheet">
<style>
.columnGrid {
- grid-definition-columns: 50px 100px;
- /* grid-definition-rows is left unset so that the grid items' row is implicit. */
+ grid-template-columns: 50px 100px;
+ /* grid-template-rows is left unset so that the grid items' row is implicit. */
font: 10px/1 Ahem;
}
.rowGrid {
- grid-definition-rows: 50px 100px;
- /* grid-definition-columns is left unset so that the grid items' column is implicit. */
+ grid-template-rows: 50px 100px;
+ /* grid-template-columns is left unset so that the grid items' column is implicit. */
font: 10px/1 Ahem;
}
</style>

Powered by Google App Engine
This is Rietveld 408576698