(tagName)
| 1455 | } |
| 1456 | |
| 1457 | createElement(tagName) { |
| 1458 | const el = new LayoutNode(new Node(tagName, this.document), this.renderer); |
| 1459 | return el; |
| 1460 | } |
| 1461 | |
| 1462 | createTextNode(str) { |
| 1463 | const el = new LayoutNode(new Node('#text', this.document), this.renderer); |
no outgoing calls
no test coverage detected