From 36392534a8d589e1bc33f11a946809d83eee9959 Mon Sep 17 00:00:00 2001 From: rofrischmann Date: Tue, 8 Mar 2016 11:52:47 +0100 Subject: [PATCH] added border-image-outset CSS property to unitless properties MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit According to https://drafts.csswg.org/css-backgrounds-3/#border-image-outset it supports both number and length values. Always applying ‘px’ might in that case perhaps return unwanted behavior. --- src/renderers/dom/shared/CSSProperty.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/renderers/dom/shared/CSSProperty.js b/src/renderers/dom/shared/CSSProperty.js index 16c23c0135971..c398ff6435e75 100644 --- a/src/renderers/dom/shared/CSSProperty.js +++ b/src/renderers/dom/shared/CSSProperty.js @@ -16,6 +16,7 @@ */ var isUnitlessNumber = { animationIterationCount: true, + borderImageOutset: true, boxFlex: true, boxFlexGroup: true, boxOrdinalGroup: true,