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

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

Issue 2577363002: Implement CSS Logical Properties: inline/block size (Closed)
Patch Set: Fix webexposed test Created 4 years 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 8bded686186fd2fbe1b8b4ce931fd63b0a22856b..5056988118acfde84fc77e5c234131fbd425d076 100644
--- a/third_party/WebKit/Source/core/frame/UseCounter.cpp
+++ b/third_party/WebKit/Source/core/frame/UseCounter.cpp
@@ -45,7 +45,7 @@ int totalPagesMeasuredCSSSampleId() {
}
// Make sure update_use_counter_css.py was run which updates histograms.xml.
-constexpr int kMaximumCSSSampleId = 549;
+constexpr int kMaximumCSSSampleId = 555;
} // namespace
@@ -1066,6 +1066,18 @@ int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(
return 548;
case CSSPropertyFontVariationSettings:
return 549;
+ case CSSPropertyInlineSize:
+ return 550;
+ case CSSPropertyBlockSize:
+ return 551;
+ case CSSPropertyMinInlineSize:
+ return 552;
+ case CSSPropertyMinBlockSize:
+ return 553;
+ case CSSPropertyMaxInlineSize:
+ return 554;
+ case CSSPropertyMaxBlockSize:
+ return 555;
// 1. Add new features above this line (don't change the assigned numbers of
// the existing items).
// 2. Update kMaximumCSSSampleId with the new maximum value.

Powered by Google App Engine
This is Rietveld 408576698