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

Unified Diff: LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt

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/virtual/stable/webexposed/nonstable-css-properties-expected.txt
diff --git a/LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt b/LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt
index 6df9f3b68c8d041d31406747ba1cf767d68aed83..6a887ad9b2e70d78c1e96d6a694a1fb042bded3a 100644
--- a/LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt
+++ b/LayoutTests/virtual/stable/webexposed/nonstable-css-properties-expected.txt
@@ -35,13 +35,13 @@ el.style.setProperty('grid-auto-rows', 'auto')
el.style.getPropertyValue('grid-auto-rows') is null
getComputedStyle(el).getPropertyValue('grid-auto-rows') is null
-el.style.setProperty('grid-definition-columns', 'min-content')
-el.style.getPropertyValue('grid-definition-columns') is null
-getComputedStyle(el).getPropertyValue('grid-definition-columns') is null
+el.style.setProperty('grid-template-columns', 'min-content')
+el.style.getPropertyValue('grid-template-columns') is null
+getComputedStyle(el).getPropertyValue('grid-template-columns') is null
-el.style.setProperty('grid-definition-rows', 'max-content')
-el.style.getPropertyValue('grid-definition-rows') is null
-getComputedStyle(el).getPropertyValue('grid-definition-rows') is null
+el.style.setProperty('grid-template-rows', 'max-content')
+el.style.getPropertyValue('grid-template-rows') is null
+getComputedStyle(el).getPropertyValue('grid-template-rows') is null
el.style.setProperty('grid-column-start', 'auto')
el.style.getPropertyValue('grid-column-start') is null

Powered by Google App Engine
This is Rietveld 408576698