()
| 73 | } |
| 74 | |
| 75 | get cssText() { |
| 76 | const rules = this.cssRules._list.map(r => r.cssText).join(" "); |
| 77 | const name = serializeCustomIdent(this.name, keyframesExclusions); |
| 78 | return `@keyframes ${name} { ${rules} }`; |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | exports.implementation = CSSKeyframesRuleImpl; |
nothing calls this directly
no test coverage detected