* 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)
| 6641 | |
| 6642 | |
| 6643 | function newDocumentFragment(children) { |
| 6644 | return new tree_DocumentFragment(children); |
| 6645 | } |
| 6646 | /** |
| 6647 | * This node represents a general purpose MathML node of any type. The |
| 6648 | * constructor requires the type of node to create (for example, `"mo"` or |