From 52e8ba4a40bac66d37b44cd33ebc896faf9d6ef4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Wed, 7 Jan 2015 11:27:43 -0800 Subject: [PATCH] Add boxFlex and boxFlexGroup to CSS Unitless Properties Fixes #2812 --- src/browser/ui/dom/CSSProperty.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/browser/ui/dom/CSSProperty.js b/src/browser/ui/dom/CSSProperty.js index b93c093ed1..e2f113faa8 100644 --- a/src/browser/ui/dom/CSSProperty.js +++ b/src/browser/ui/dom/CSSProperty.js @@ -15,6 +15,8 @@ * CSS properties which accept numbers but are not in units of "px". */ var isUnitlessNumber = { + boxFlex: true, + boxFlexGroup: true, columnCount: true, flex: true, flexGrow: true,