(css)
| 7160 | } |
| 7161 | }; |
| 7162 | function _cssPropertyNames(css) { |
| 7163 | return css.split(";").map(function(p) { |
| 7164 | return p.split(":")[0].trim(); |
| 7165 | }).filter(Boolean); |
| 7166 | } |
| 7167 | function _removeCssProperties(elt, propNames) { |
| 7168 | for (var i = 0; i < propNames.length; i++) elt.style.removeProperty(propNames[i]); |
| 7169 | } |