(children)
| 834 | // HtmlDomNode |
| 835 | // Never used; needed for satisfying interface. |
| 836 | function DocumentFragment(children) { |
| 837 | this.children = void 0; |
| 838 | this.classes = void 0; |
| 839 | this.height = void 0; |
| 840 | this.depth = void 0; |
| 841 | this.maxFontSize = void 0; |
| 842 | this.style = void 0; |
| 843 | this.children = children; |
| 844 | this.classes = []; |
| 845 | this.height = 0; |
| 846 | this.depth = 0; |
| 847 | this.maxFontSize = 0; |
| 848 | this.style = {}; |
| 849 | } |
| 850 | |
| 851 | var _proto = DocumentFragment.prototype; |
| 852 |
nothing calls this directly
no outgoing calls
no test coverage detected