* These objects store data about MathML nodes. This is the MathML equivalent * of the types in domTree.js. Since MathML handles its own rendering, and * since we're mainly using MathML to improve accessibility, we don't manage * any of the styling state that the plain DOM nodes do. * * The `toN
(children)
| 6593 | * domTree.js, creating namespaced DOM nodes and HTML text markup respectively. |
| 6594 | */ |
| 6595 | function newDocumentFragment(children) { |
| 6596 | return new DocumentFragment(children); |
| 6597 | } |
| 6598 | /** |
| 6599 | * This node represents a general purpose MathML node of any type. The |
| 6600 | * constructor requires the type of node to create (for example, `"mo"` or |