From ff9325de5ecb9a341b48adbe1e3a5a21ee69f335 Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Wed, 11 Apr 2018 13:44:30 +1000 Subject: [PATCH] style: Use snake_case naming for nsCSSPropertyID of alias as well. Bug: 1452542 Reviewed-by: emilio MozReview-Commit-ID: 242ms8wBDIU --- components/style/properties/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/properties/data.py b/components/style/properties/data.py index 938b2c2c2bf..327fab9ffd5 100644 --- a/components/style/properties/data.py +++ b/components/style/properties/data.py @@ -406,7 +406,7 @@ class Alias(object): return self.enabled_in == "content" def nscsspropertyid(self): - return "nsCSSPropertyID::eCSSPropertyAlias_%s" % self.camel_case + return "nsCSSPropertyID::eCSSPropertyAlias_%s" % self.ident class Method(object):