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

Unified Diff: LayoutTests/fast/css-grid-layout/grid-item-named-grid-line-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-named-grid-line-resolution.html
diff --git a/LayoutTests/fast/css-grid-layout/grid-item-named-grid-line-resolution.html b/LayoutTests/fast/css-grid-layout/grid-item-named-grid-line-resolution.html
index d8cdac4457655c78c7806a2c3c657974c5a1a7be..d4741ab593f62c9c3dedec63c42834fb340bb1ad 100644
--- a/LayoutTests/fast/css-grid-layout/grid-item-named-grid-line-resolution.html
+++ b/LayoutTests/fast/css-grid-layout/grid-item-named-grid-line-resolution.html
@@ -8,13 +8,13 @@ if (window.testRunner)
<link href="resources/grid.css" rel="stylesheet">
<style>
.gridWithoutRepeat {
- grid-definition-columns: (a) 50px (b) 100px (c) 200px (d);
- grid-definition-rows: (e) 50px (f) 100px (g) 200px (h);
+ grid-template-columns: (a) 50px (b) 100px (c) 200px (d);
+ grid-template-rows: (e) 50px (f) 100px (g) 200px (h);
}
.gridWithRepeat {
- grid-definition-columns: (b) 50px (b) 100px (b) 200px (b);
- grid-definition-rows: (g) 50px (g) 100px (g) 200px (g);
+ grid-template-columns: (b) 50px (b) 100px (b) 200px (b);
+ grid-template-rows: (g) 50px (g) 100px (g) 200px (g);
}
.gridItemBToD {

Powered by Google App Engine
This is Rietveld 408576698