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

Unified Diff: third_party/WebKit/Source/core/frame/UseCounter.cpp

Issue 2352273002: CSS Motion Path: offset-anchor and offset-position (Closed)
Patch Set: rebase Created 4 years, 3 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: third_party/WebKit/Source/core/frame/UseCounter.cpp
diff --git a/third_party/WebKit/Source/core/frame/UseCounter.cpp b/third_party/WebKit/Source/core/frame/UseCounter.cpp
index 6f6110a9817ddb0874ecc58c8ab169d3ec29ed12..914424a035b9ea29bc641452f3aab0e6cf10965e 100644
--- a/third_party/WebKit/Source/core/frame/UseCounter.cpp
+++ b/third_party/WebKit/Source/core/frame/UseCounter.cpp
@@ -43,7 +43,7 @@ namespace {
int totalPagesMeasuredCSSSampleId() { return 1; }
// Make sure update_use_counter_css.py was run which updates histograms.xml.
-int maximumCSSSampleId() { return 543; }
+int maximumCSSSampleId() { return 545; }
} // namespace
@@ -575,6 +575,8 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(CSSPropertyID cssPrope
case CSSPropertyOffsetPath: return 541;
case CSSPropertyOffsetRotation: return 542;
case CSSPropertyOffset: return 543;
+ case CSSPropertyOffsetAnchor: return 544;
+ case CSSPropertyOffsetPosition: return 545;
// 1. Add new features above this line (don't change the assigned numbers of the existing
// items).
// 2. Update maximumCSSSampleId() with the new maximum value.

Powered by Google App Engine
This is Rietveld 408576698