diff --git a/src/renderers/dom/shared/CSSProperty.js b/src/renderers/dom/shared/CSSProperty.js index 143b641cf9f..5e797b15db2 100644 --- a/src/renderers/dom/shared/CSSProperty.js +++ b/src/renderers/dom/shared/CSSProperty.js @@ -80,10 +80,16 @@ Object.keys(isUnitlessNumber).forEach(function(prop) { */ var shorthandPropertyExpansions = { background: { + backgroundAttachment: true, + backgroundColor: true, backgroundImage: true, - backgroundPosition: true, + backgroundPositionX: true, + backgroundPositionY: true, backgroundRepeat: true, - backgroundColor: true, + }, + backgroundPosition: { + backgroundPositionX: true, + backgroundPositionY: true, }, border: { borderWidth: true, @@ -118,6 +124,11 @@ var shorthandPropertyExpansions = { lineHeight: true, fontFamily: true, }, + outline: { + outlineWidth: true, + outlineStyle: true, + outlineColor: true, + }, }; var CSSProperty = {