(css)
| 7566 | } |
| 7567 | }; |
| 7568 | function _cssPropertyNames(css) { |
| 7569 | return css.split(";").map(function(p) { |
| 7570 | return p.split(":")[0].trim(); |
| 7571 | }).filter(Boolean); |
| 7572 | } |
| 7573 | function _removeCssProperties(elt, propNames) { |
| 7574 | for (var i = 0; i < propNames.length; i++) elt.style.removeProperty(propNames[i]); |
| 7575 | } |