From 1c069c5e62fb70a64f3305fcafed2c12073608b8 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Tue, 29 Oct 2024 15:48:13 +0100 Subject: [PATCH] Add support for `mix-blend-mode: plus-lighter` (#86) --- style/properties/longhands/effects.mako.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style/properties/longhands/effects.mako.rs b/style/properties/longhands/effects.mako.rs index 6d9afa259..43404e6d2 100644 --- a/style/properties/longhands/effects.mako.rs +++ b/style/properties/longhands/effects.mako.rs @@ -74,7 +74,7 @@ ${helpers.single_keyword( "mix-blend-mode", """normal multiply screen overlay darken lighten color-dodge color-burn hard-light soft-light difference exclusion hue - saturation color luminosity""" + ("plus-lighter" if engine == 'gecko' else ""), + saturation color luminosity plus-lighter""", engines="gecko servo", gecko_enum_prefix="StyleBlend", animation_type="discrete",