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

Unified Diff: third_party/WebKit/Source/core/css/resolver/CSSPropertyPriority.h

Issue 2620233002: Add 'priority' key to CSSProperties.in (Closed)
Patch Set: Created 3 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: third_party/WebKit/Source/core/css/resolver/CSSPropertyPriority.h
diff --git a/third_party/WebKit/Source/core/css/resolver/CSSPropertyPriority.h b/third_party/WebKit/Source/core/css/resolver/CSSPropertyPriority.h
index c8df1616d970f1aa01bf748e99a6e400aaa4f62b..f18886d1d3c572e8b0134d3e89c49478a40c43f6 100644
--- a/third_party/WebKit/Source/core/css/resolver/CSSPropertyPriority.h
+++ b/third_party/WebKit/Source/core/css/resolver/CSSPropertyPriority.h
@@ -82,9 +82,9 @@ inline CSSPropertyID CSSPropertyPriorityData<HighPropertyPriority>::last() {
static_assert(
CSSPropertyZoom == CSSPropertyColor + 21,
"CSSPropertyZoom should be the end of the high priority property range");
- static_assert(
- CSSPropertyTextRendering == CSSPropertyZoom - 1,
- "CSSPropertyTextRendering should be immediately before CSSPropertyZoom");
+ static_assert(CSSPropertyWebkitWritingMode == CSSPropertyZoom - 1,
+ "CSSPropertyWebkitWritingMode should be immediately before "
+ "CSSPropertyZoom");
return CSSPropertyZoom;
}

Powered by Google App Engine
This is Rietveld 408576698