diff options
Diffstat (limited to 'components/style/properties/data.py')
-rw-r--r-- | components/style/properties/data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/properties/data.py b/components/style/properties/data.py index 1219600a5d3..0b2debb233d 100644 --- a/components/style/properties/data.py +++ b/components/style/properties/data.py @@ -67,7 +67,7 @@ class Keyword(object): raise Exception("Bad product: " + product) def gecko_constant(self, value): - moz_stripped = value.replace("-moz-", '') if self.gecko_strip_moz_prefix else value + moz_stripped = value.replace("-moz-", '') if self.gecko_strip_moz_prefix else value.replace("-moz-", 'moz-') mapped = self.consts_map.get(value) if self.gecko_enum_prefix: parts = moz_stripped.split('-') |