Index: Source/build/scripts/templates/CSSPropertyMetadata.cpp.tmpl |
diff --git a/Source/build/scripts/templates/CSSPropertyMetadata.cpp.tmpl b/Source/build/scripts/templates/CSSPropertyMetadata.cpp.tmpl |
index 50c2650c17361432253ba98846f07e9db4d6377c..9c822ae008617f43447a23f28d4ef0ee8cca0fb1 100644 |
--- a/Source/build/scripts/templates/CSSPropertyMetadata.cpp.tmpl |
+++ b/Source/build/scripts/templates/CSSPropertyMetadata.cpp.tmpl |
@@ -26,8 +26,9 @@ bool CSSPropertyMetadata::{{function_name}}(CSSPropertyID property) |
} |
{% endfor %} |
-bool CSSPropertyMetadata::isEnabledProperty(CSSPropertyID property) |
+bool CSSPropertyMetadata::isEnabledProperty(CSSPropertyID unresolvedProperty) |
{ |
+ CSSPropertyID property = resolveCSSPropertyID(unresolvedProperty); |
static BitArray<numCSSProperties>* enabledProperties = 0; |
if (!enabledProperties) { |
enabledProperties = new BitArray<numCSSProperties>(true); // All bits sets to 1. |