From 67630c341876ed5582d1e0ba2cad81ab1056576f Mon Sep 17 00:00:00 2001 From: Aniruddh Agarwal Date: Sun, 9 Oct 2016 16:25:42 -0400 Subject: [PATCH] Implement -moz-text-align-last property --- .../style/properties/longhand/inherited_text.mako.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/components/style/properties/longhand/inherited_text.mako.rs b/components/style/properties/longhand/inherited_text.mako.rs index 4536b89d050..33453f95efa 100644 --- a/components/style/properties/longhand/inherited_text.mako.rs +++ b/components/style/properties/longhand/inherited_text.mako.rs @@ -395,6 +395,13 @@ ${helpers.single_keyword("text-justify", products="servo", animatable=False)} +${helpers.single_keyword("-moz-text-align-last", + "auto start end left right center justify", + products="gecko", + gecko_constant_prefix="NS_STYLE_TEXT_ALIGN", + gecko_ffi_name="mTextAlignLast", + animatable=False)} + <%helpers:longhand name="-servo-text-decorations-in-effect" derived_from="display text-decoration" need_clone="True" products="servo"