diff options
-rw-r--r-- | components/style/properties/longhands/background.mako.rs | 2 | ||||
-rw-r--r-- | components/style/properties/longhands/box.mako.rs | 1 | ||||
-rw-r--r-- | components/style/properties/longhands/effects.mako.rs | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/components/style/properties/longhands/background.mako.rs b/components/style/properties/longhands/background.mako.rs index 08bfd0bdc55..1cbf601ad5d 100644 --- a/components/style/properties/longhands/background.mako.rs +++ b/components/style/properties/longhands/background.mako.rs @@ -107,7 +107,7 @@ ${helpers.single_keyword( """normal multiply screen overlay darken lighten color-dodge color-burn hard-light soft-light difference exclusion hue saturation color luminosity""", - gecko_constant_prefix="NS_STYLE_BLEND", + gecko_enum_prefix="StyleBlend", vector=True, engines="gecko", animation_value_type="discrete", diff --git a/components/style/properties/longhands/box.mako.rs b/components/style/properties/longhands/box.mako.rs index 3a8690e8604..a4f2cc670f5 100644 --- a/components/style/properties/longhands/box.mako.rs +++ b/components/style/properties/longhands/box.mako.rs @@ -573,6 +573,7 @@ ${helpers.single_keyword( "backface-visibility", "visible hidden", engines="gecko servo-2013 servo-2020", + gecko_enum_prefix="StyleBackfaceVisibility", spec="https://drafts.csswg.org/css-transforms/#backface-visibility-property", extra_prefixes=transform_extra_prefixes, animation_value_type="discrete", diff --git a/components/style/properties/longhands/effects.mako.rs b/components/style/properties/longhands/effects.mako.rs index d34f13a4a76..f9cef1a34e2 100644 --- a/components/style/properties/longhands/effects.mako.rs +++ b/components/style/properties/longhands/effects.mako.rs @@ -83,7 +83,7 @@ ${helpers.single_keyword( color-burn hard-light soft-light difference exclusion hue saturation color luminosity""", engines="gecko servo-2013 servo-2020", - gecko_constant_prefix="NS_STYLE_BLEND", + gecko_enum_prefix="StyleBlend", animation_value_type="discrete", flags="CREATES_STACKING_CONTEXT", spec="https://drafts.fxtf.org/compositing/#propdef-mix-blend-mode", |