| Name | Size | Mode | Actions |
|---|---|---|---|
| Dimensions.js | 1101 | 0644 | editdlrm |
| DomQuery.js | 30935 | 0644 | editdlrm |
| DOMUtils.js | 23385 | 0644 | editdlrm |
| EventUtils.js | 10746 | 0644 | editdlrm |
| NodePath.js | 1044 | 0644 | editdlrm |
| NodeType.js | 4104 | 0644 | editdlrm |
| Range.js | 24368 | 0644 | editdlrm |
| Selection.js | 39178 | 0644 | editdlrm |
| Serializer.js | 23493 | 0644 | editdlrm |
| test.css | 2170 | 0644 | editdlrm |
| TreeWalker.js | 2211 | 0644 | editdlrm |
| TridentSelection.js | 17652 | 0644 | editdlrm |
/home/aqcert/public_html/admin/tinymce/tests/tinymce/dom/NodePath.js (1044B)
a12
'); deepEqual(NodePath.create(getRoot(), getRoot().firstChild), [0]); deepEqual(NodePath.create(getRoot(), getRoot().firstChild.firstChild), [0, 0]); deepEqual(NodePath.create(getRoot(), getRoot().firstChild.lastChild.lastChild), [1, 1, 0]); }); test("resolve", function() { setupHtml('a12
'); deepEqual(NodePath.resolve(getRoot(), NodePath.create(getRoot(), getRoot().firstChild)), getRoot().firstChild); deepEqual(NodePath.resolve(getRoot(), NodePath.create(getRoot(), getRoot().firstChild.firstChild)), getRoot().firstChild.firstChild); deepEqual(NodePath.resolve(getRoot(), NodePath.create(getRoot(), getRoot().firstChild.lastChild.lastChild)), getRoot().firstChild.lastChild.lastChild); }); });