()
| 1370 | } |
| 1371 | |
| 1372 | get innerHTML() { |
| 1373 | // perf todo: |
| 1374 | // - cache this, invalidate on self/child change |
| 1375 | |
| 1376 | if (this.voidElement) return ''; |
| 1377 | |
| 1378 | let s = ''; |
| 1379 | |
| 1380 | for (const child of this.children) { |
| 1381 | s += child.serialize(); |
| 1382 | } |
| 1383 | |
| 1384 | return s; |
| 1385 | } |
| 1386 | |
| 1387 | set innerHTML(value) { |
| 1388 | // perf todo: |
nothing calls this directly
no test coverage detected