From 087ac72f73850ba9016429ee3201d293badd060e Mon Sep 17 00:00:00 2001 From: Ting-Yu Lin Date: Sat, 27 Oct 2018 06:14:13 +0000 Subject: [PATCH] style: Enable CSS column-span in UA stylesheet, and update test expectations. We use "column-span: all" in ua.css in Part 3. To be able to flip the pref in individual wpt tests, we need column-span to be always enabled in UA stylesheets. Differential Revision: https://phabricator.services.mozilla.com/D5212 --- components/style/properties/longhands/column.mako.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/style/properties/longhands/column.mako.rs b/components/style/properties/longhands/column.mako.rs index 4f223ceb8560..d4bae90c96b7 100644 --- a/components/style/properties/longhands/column.mako.rs +++ b/components/style/properties/longhands/column.mako.rs @@ -65,6 +65,7 @@ ${helpers.predefined_type( spec="https://drafts.csswg.org/css-multicol/#propdef-column-rule-color", )} +// FIXME: Remove enabled_in="ua" once column-span is enabled on nightly (bug 1423383). ${helpers.single_keyword( "column-span", "none all", @@ -72,6 +73,7 @@ ${helpers.single_keyword( animation_value_type="discrete", gecko_enum_prefix="StyleColumnSpan", gecko_pref="layout.css.column-span.enabled", + enabled_in="ua", spec="https://drafts.csswg.org/css-multicol/#propdef-column-span", extra_prefixes="moz:layout.css.column-span.enabled", )}