initial support for string in c

This commit is contained in:
Christopher Chedeau
2014-04-28 12:34:04 -07:00
parent 3de44e88c0
commit 6123dbb33b
7 changed files with 1802 additions and 30773 deletions

View File

@@ -208,7 +208,7 @@ var computeLayout = (function() {
var width;
if (isDimDefined(node, CSS_FLEX_DIRECTION_ROW)) {
width = node.style.width;
} else if (node.style.position === CSS_POSITION_ABSOLUTE) {
} else if (getPositionType(node) === CSS_POSITION_ABSOLUTE) {
width = 'shrink';
} else {
width = 'grow';