Lines Matching refs:styleContent
695 function preprocessSystemResourceReference(styleContent, cssStyle) { argument
696 if (styleContent.length !== 2) {
699 const key = styleContent[0].trim().replace(/-([a-z])/g, function(s, m) { return m.toUpperCase() })
700 let value = styleContent[1].trim()
777 let styleContent = cssArray[i].trim().split(':')
778 if (preprocessSystemResourceReference(styleContent, cssStyle)) {
781 if (styleContent.length === 2) {
782 … const key = styleContent[0].trim().replace(/-([a-z])/g, function(s, m) { return m.toUpperCase() })
783 let value = bind(styleContent[1].trim(), undefined, true, out, nodeLoc)
784 const contentValue = styleContent[1].trim().toString();
803 if (styleContent.length > 2) {
804 styleContent[1] = styleContent.slice(1).join(':')
805 styleContent = styleContent.slice(0, 2)
806 if (REG_DATA_BINDING.test(styleContent[1])) {
807 …styleContent[0] = styleContent[0].trim().replace(/-([a-z])/g, function(s, m) { return m.toUpperCas…
808 cssStyle[styleContent[0]] = bind(styleContent[1], undefined, true, out, nodeLoc)
811 … const key = styleContent[0].trim().replace(/-([a-z])/g, function(s, m) { return m.toUpperCase() })
813 let value = styleContent[1].trim()