(tagName: string)
| 359 | contentWindow: RRWindow = new RRWindow(); |
| 360 | |
| 361 | constructor(tagName: string) { |
| 362 | super(tagName); |
| 363 | const htmlElement = this.contentDocument.createElement('HTML'); |
| 364 | this.contentDocument.appendChild(htmlElement); |
| 365 | htmlElement.appendChild(this.contentDocument.createElement('HEAD')); |
| 366 | htmlElement.appendChild(this.contentDocument.createElement('BODY')); |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | export class RRText extends BaseRRText { |
nothing calls this directly
no test coverage detected