(context: CanvasRenderingContext2D)
| 511 | } |
| 512 | |
| 513 | protected override applyText(context: CanvasRenderingContext2D) { |
| 514 | super.applyText(context); |
| 515 | context.font = this.styles.font; |
| 516 | context.textBaseline = 'top'; |
| 517 | if ('letterSpacing' in context) { |
| 518 | context.letterSpacing = this.styles.letterSpacing; |
| 519 | } |
| 520 | } |
| 521 | |
| 522 | protected override collectAsyncResources(): void { |
| 523 | super.collectAsyncResources(); |
no outgoing calls
no test coverage detected