├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dist ├── morphdom-esm.js ├── morphdom-factory.js ├── morphdom-umd.js ├── morphdom-umd.min.js └── morphdom.js ├── docs ├── old-benchmark.md └── virtual-dom.md ├── examples ├── .gitignore ├── README.md ├── index.marko ├── lifecycle-events │ ├── browser.json │ ├── client.js │ ├── remove.svg │ ├── style.css │ ├── template.marko │ └── todos.marko ├── package.json ├── server.js └── simple │ ├── browser.json │ ├── client.js │ ├── content-after.marko │ ├── content-before.marko │ ├── style.css │ └── template.marko ├── factory.js ├── index.d.ts ├── package.json ├── src ├── .jshintrc ├── index.js ├── morphAttrs.js ├── morphdom.js ├── specialElHandlers.js └── util.js └── test ├── .jshintrc ├── browser ├── benchmark-results.marko ├── benchmark.js ├── test-result.marko └── test.js ├── fixtures ├── autotest │ ├── attr-value-empty-string │ │ ├── from.html │ │ └── to.html │ ├── change-tagname-ids │ │ ├── from.html │ │ └── to.html │ ├── change-tagname │ │ ├── from.html │ │ └── to.html │ ├── data-table │ │ ├── from.html │ │ └── to.html │ ├── data-table2 │ │ ├── from.html │ │ └── to.html │ ├── equal │ │ ├── from.html │ │ └── to.html │ ├── id-change-tag-name │ │ ├── from.html │ │ └── to.html │ ├── ids-nested-2 │ │ ├── from.html │ │ └── to.html │ ├── ids-nested-3 │ │ ├── from.html │ │ └── to.html │ ├── ids-nested-4 │ │ ├── from.html │ │ └── to.html │ ├── ids-nested-5 │ │ ├── from.html │ │ └── to.html │ ├── ids-nested-6 │ │ ├── from.html │ │ └── to.html │ ├── ids-nested-7 │ │ ├── from.html │ │ └── to.html │ ├── ids-nested │ │ ├── from.html │ │ └── to.html │ ├── ids-prepend │ │ ├── from.html │ │ └── to.html │ ├── input-element-disabled │ │ ├── from.html │ │ ├── index.js │ │ └── to.html │ ├── input-element-enabled │ │ ├── from.html │ │ ├── index.js │ │ └── to.html │ ├── input-element │ │ ├── from.html │ │ └── to.html │ ├── large │ │ ├── from.html │ │ └── to.html │ ├── lengthen │ │ ├── from.html │ │ └── to.html │ ├── one │ │ ├── from.html │ │ └── to.html │ ├── reverse-ids │ │ ├── from.html │ │ └── to.html │ ├── reverse │ │ ├── from.html │ │ └── to.html │ ├── select-element-default │ │ ├── from.html │ │ ├── index.js │ │ └── to.html │ ├── select-element │ │ ├── from.html │ │ ├── index.js │ │ └── to.html │ ├── shorten │ │ ├── from.html │ │ └── to.html │ ├── simple-ids │ │ ├── from.html │ │ └── to.html │ ├── simple-text-el │ │ ├── from.html │ │ └── to.html │ ├── simple │ │ ├── from.html │ │ └── to.html │ ├── svg-append-new │ │ ├── from.html │ │ └── to.html │ ├── svg-append │ │ ├── from.html │ │ └── to.html │ ├── svg-no-default-namespace │ │ ├── from.html │ │ └── to.html │ ├── svg-xlink │ │ ├── from.html │ │ └── to.html │ ├── svg │ │ ├── from.html │ │ └── to.html │ ├── tag-to-text │ │ ├── from.html │ │ └── to.html │ ├── text-to-tag │ │ ├── from.html │ │ └── to.html │ ├── text-to-text │ │ ├── from.html │ │ └── to.html │ ├── textarea │ │ ├── from.html │ │ └── to.html │ ├── todomvc │ │ ├── from.html │ │ └── to.html │ ├── todomvc2 │ │ ├── from.html │ │ └── to.html │ └── two │ │ ├── from.html │ │ └── to.html ├── change-types │ ├── from.html │ └── to.html └── reverse-ids │ ├── from.html │ └── to.html └── mocha-headless ├── .gitignore ├── browser.json ├── mocha-browser-setup.js ├── run.js ├── style.css └── test-page.marko /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/README.md -------------------------------------------------------------------------------- /dist/morphdom-esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/dist/morphdom-esm.js -------------------------------------------------------------------------------- /dist/morphdom-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/dist/morphdom-factory.js -------------------------------------------------------------------------------- /dist/morphdom-umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/dist/morphdom-umd.js -------------------------------------------------------------------------------- /dist/morphdom-umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/dist/morphdom-umd.min.js -------------------------------------------------------------------------------- /dist/morphdom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/dist/morphdom.js -------------------------------------------------------------------------------- /docs/old-benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/docs/old-benchmark.md -------------------------------------------------------------------------------- /docs/virtual-dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/docs/virtual-dom.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | /static -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/index.marko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/examples/index.marko -------------------------------------------------------------------------------- /examples/lifecycle-events/browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/examples/lifecycle-events/browser.json -------------------------------------------------------------------------------- /examples/lifecycle-events/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/examples/lifecycle-events/client.js -------------------------------------------------------------------------------- /examples/lifecycle-events/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/examples/lifecycle-events/remove.svg -------------------------------------------------------------------------------- /examples/lifecycle-events/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/examples/lifecycle-events/style.css -------------------------------------------------------------------------------- /examples/lifecycle-events/template.marko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/examples/lifecycle-events/template.marko -------------------------------------------------------------------------------- /examples/lifecycle-events/todos.marko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/examples/lifecycle-events/todos.marko -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "./server.js" 3 | } -------------------------------------------------------------------------------- /examples/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/examples/server.js -------------------------------------------------------------------------------- /examples/simple/browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/examples/simple/browser.json -------------------------------------------------------------------------------- /examples/simple/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/examples/simple/client.js -------------------------------------------------------------------------------- /examples/simple/content-after.marko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/examples/simple/content-after.marko -------------------------------------------------------------------------------- /examples/simple/content-before.marko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/examples/simple/content-before.marko -------------------------------------------------------------------------------- /examples/simple/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/examples/simple/style.css -------------------------------------------------------------------------------- /examples/simple/template.marko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/examples/simple/template.marko -------------------------------------------------------------------------------- /factory.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/morphdom-factory'); -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/package.json -------------------------------------------------------------------------------- /src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/src/.jshintrc -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/src/index.js -------------------------------------------------------------------------------- /src/morphAttrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/src/morphAttrs.js -------------------------------------------------------------------------------- /src/morphdom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/src/morphdom.js -------------------------------------------------------------------------------- /src/specialElHandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/src/specialElHandlers.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/src/util.js -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/.jshintrc -------------------------------------------------------------------------------- /test/browser/benchmark-results.marko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/browser/benchmark-results.marko -------------------------------------------------------------------------------- /test/browser/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/browser/benchmark.js -------------------------------------------------------------------------------- /test/browser/test-result.marko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/browser/test-result.marko -------------------------------------------------------------------------------- /test/browser/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/browser/test.js -------------------------------------------------------------------------------- /test/fixtures/autotest/attr-value-empty-string/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/attr-value-empty-string/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/attr-value-empty-string/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/attr-value-empty-string/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/change-tagname-ids/from.html: -------------------------------------------------------------------------------- 1 |

2 | italics 3 |

-------------------------------------------------------------------------------- /test/fixtures/autotest/change-tagname-ids/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/change-tagname-ids/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/change-tagname/from.html: -------------------------------------------------------------------------------- 1 | italics -------------------------------------------------------------------------------- /test/fixtures/autotest/change-tagname/to.html: -------------------------------------------------------------------------------- 1 | bold -------------------------------------------------------------------------------- /test/fixtures/autotest/data-table/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/data-table/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/data-table/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/data-table/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/data-table2/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/data-table2/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/data-table2/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/data-table2/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/equal/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/equal/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/equal/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/equal/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/id-change-tag-name/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/id-change-tag-name/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/id-change-tag-name/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/id-change-tag-name/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/ids-nested-2/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/ids-nested-2/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/ids-nested-2/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/ids-nested-2/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/ids-nested-3/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/ids-nested-3/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/ids-nested-3/to.html: -------------------------------------------------------------------------------- 1 |
strikethrough
-------------------------------------------------------------------------------- /test/fixtures/autotest/ids-nested-4/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/ids-nested-4/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/ids-nested-4/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/ids-nested-4/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/ids-nested-5/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/ids-nested-5/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/ids-nested-5/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/ids-nested-5/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/ids-nested-6/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/ids-nested-6/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/ids-nested-6/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/ids-nested-6/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/ids-nested-7/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/ids-nested-7/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/ids-nested-7/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/ids-nested-7/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/ids-nested/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/ids-nested/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/ids-nested/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/ids-nested/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/ids-prepend/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/ids-prepend/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/ids-prepend/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/ids-prepend/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/input-element-disabled/from.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/autotest/input-element-disabled/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/input-element-disabled/index.js -------------------------------------------------------------------------------- /test/fixtures/autotest/input-element-disabled/to.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/fixtures/autotest/input-element-enabled/from.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/autotest/input-element-enabled/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/input-element-enabled/index.js -------------------------------------------------------------------------------- /test/fixtures/autotest/input-element-enabled/to.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/autotest/input-element/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/input-element/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/input-element/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/input-element/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/large/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/large/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/large/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/large/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/lengthen/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/lengthen/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/lengthen/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/lengthen/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/one/from.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /test/fixtures/autotest/one/to.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /test/fixtures/autotest/reverse-ids/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/reverse-ids/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/reverse-ids/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/reverse-ids/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/reverse/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/reverse/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/reverse/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/reverse/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/select-element-default/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/select-element-default/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/select-element-default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/select-element-default/index.js -------------------------------------------------------------------------------- /test/fixtures/autotest/select-element-default/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/select-element-default/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/select-element/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/select-element/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/select-element/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/select-element/index.js -------------------------------------------------------------------------------- /test/fixtures/autotest/select-element/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/select-element/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/shorten/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/shorten/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/shorten/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/shorten/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/simple-ids/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/simple-ids/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/simple-ids/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/simple-ids/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/simple-text-el/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/simple-text-el/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/simple-text-el/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/simple-text-el/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/simple/from.html: -------------------------------------------------------------------------------- 1 |
bold
-------------------------------------------------------------------------------- /test/fixtures/autotest/simple/to.html: -------------------------------------------------------------------------------- 1 |
italicsbold
-------------------------------------------------------------------------------- /test/fixtures/autotest/svg-append-new/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/svg-append-new/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/svg-append-new/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/svg-append-new/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/svg-append/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/svg-append/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/svg-append/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/svg-append/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/svg-no-default-namespace/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/svg-no-default-namespace/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/svg-no-default-namespace/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/svg-no-default-namespace/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/svg-xlink/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/svg-xlink/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/svg-xlink/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/svg-xlink/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/svg/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/svg/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/svg/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/svg/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/tag-to-text/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/tag-to-text/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/tag-to-text/to.html: -------------------------------------------------------------------------------- 1 | world -------------------------------------------------------------------------------- /test/fixtures/autotest/text-to-tag/from.html: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /test/fixtures/autotest/text-to-tag/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/text-to-tag/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/text-to-text/from.html: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /test/fixtures/autotest/text-to-text/to.html: -------------------------------------------------------------------------------- 1 | world -------------------------------------------------------------------------------- /test/fixtures/autotest/textarea/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/textarea/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/textarea/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/textarea/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/todomvc/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/todomvc/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/todomvc/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/todomvc/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/todomvc2/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/todomvc2/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/todomvc2/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/todomvc2/to.html -------------------------------------------------------------------------------- /test/fixtures/autotest/two/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/two/from.html -------------------------------------------------------------------------------- /test/fixtures/autotest/two/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/autotest/two/to.html -------------------------------------------------------------------------------- /test/fixtures/change-types/from.html: -------------------------------------------------------------------------------- 1 | italics -------------------------------------------------------------------------------- /test/fixtures/change-types/to.html: -------------------------------------------------------------------------------- 1 | bold -------------------------------------------------------------------------------- /test/fixtures/reverse-ids/from.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/reverse-ids/from.html -------------------------------------------------------------------------------- /test/fixtures/reverse-ids/to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/fixtures/reverse-ids/to.html -------------------------------------------------------------------------------- /test/mocha-headless/.gitignore: -------------------------------------------------------------------------------- 1 | /generated -------------------------------------------------------------------------------- /test/mocha-headless/browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/mocha-headless/browser.json -------------------------------------------------------------------------------- /test/mocha-headless/mocha-browser-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/mocha-headless/mocha-browser-setup.js -------------------------------------------------------------------------------- /test/mocha-headless/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/mocha-headless/run.js -------------------------------------------------------------------------------- /test/mocha-headless/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/mocha-headless/style.css -------------------------------------------------------------------------------- /test/mocha-headless/test-page.marko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-steele-idem/morphdom/HEAD/test/mocha-headless/test-page.marko --------------------------------------------------------------------------------