(selectors)
| 108 | } |
| 109 | |
| 110 | constructor(selectors) { |
| 111 | this.selectorText = selectors.trim(); |
| 112 | this.selectors = CSSRule.parseSelector(selectors); |
| 113 | } |
| 114 | |
| 115 | addProperty(property, value) { |
| 116 | property = property.trim(); |
nothing calls this directly
no test coverage detected