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

Unified Diff: Source/core/page/UseCounter.cpp

Issue 17601010: [CSS Grid Layout] Rename grid placement properties (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 6 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: Source/core/page/UseCounter.cpp
diff --git a/Source/core/page/UseCounter.cpp b/Source/core/page/UseCounter.cpp
index 245e2fc3509ad218015a186d8c5d95bd88d81c9c..f31aef7e05880bb47e89a026b24823247f39f737 100644
--- a/Source/core/page/UseCounter.cpp
+++ b/Source/core/page/UseCounter.cpp
@@ -296,10 +296,10 @@ static int mapCSSPropertyIdToCSSSampleId(int id)
case CSSPropertyWebkitFontSizeDelta: return 241;
case CSSPropertyGridColumns: return 242;
case CSSPropertyGridRows: return 243;
- case CSSPropertyGridStart: return 244;
- case CSSPropertyGridEnd: return 245;
- case CSSPropertyGridBefore: return 246;
- case CSSPropertyGridAfter: return 247;
+ case CSSPropertyGridColumnStart: return 244;
+ case CSSPropertyGridColumnEnd: return 245;
+ case CSSPropertyGridRowStart: return 246;
+ case CSSPropertyGridRowEnd: return 247;
case CSSPropertyGridColumn: return 248;
case CSSPropertyGridRow: return 249;
case CSSPropertyGridAutoFlow: return 250;

Powered by Google App Engine
This is Rietveld 408576698