style: Use snake_case naming for nsCSSPropertyID of alias as well.

Bug: 1452542
Reviewed-by: emilio
MozReview-Commit-ID: 242ms8wBDIU
This commit is contained in:
Xidorn Quan 2018-04-11 13:44:30 +10:00 committed by Emilio Cobos Álvarez
parent dfa019c884
commit ff9325de5e
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -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):