├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── demos ├── bold.html ├── bookmark.html ├── classapplier.html ├── commands.html ├── commands_new.html ├── content.html ├── core.html ├── demo.css ├── events.html ├── football.png ├── highlighter.html ├── index.html ├── position.html ├── position2.html ├── saverestore.html ├── scopedhighlights.html ├── serializer.html └── textrange.html ├── docs ├── Change-Log.md ├── Class-Applier-Module.md ├── Dom-Utils.md ├── Highlighter-Module.md ├── How-Rangy-Differs-From-Native-Apis.md ├── New-Features-In-One-Point-Three.md ├── New-Features-In-One-Point-Two.md ├── Position-Module.md ├── README.md ├── Rangy-Object.md ├── Rangy-Range.md ├── Rangy-Selection.md ├── Selection-Save-Restore-Module.md ├── Serializer-Module.md ├── Text-Range-Module.md ├── Users-Of-Rangy.md ├── _Footer.md └── ssss.md ├── external ├── jshashtable.js ├── log4javascript.js └── log4javascript_stub.js ├── fiddlings ├── 214.html ├── 218.html ├── browserify │ ├── main.js │ └── test.html ├── requirejs │ ├── app.js │ ├── app │ │ ├── main.js │ │ └── rangy-classapplier.js │ ├── index.html │ └── lib │ │ ├── rangy.js │ │ └── require.js └── spec │ ├── innerText.htm │ └── innerText_files │ ├── dfn.js │ └── specification.css ├── lib ├── rangy-classapplier.js ├── rangy-core.js ├── rangy-highlighter.js ├── rangy-selectionsaverestore.js ├── rangy-serializer.js └── rangy-textrange.js ├── package.json ├── release_process.txt ├── roadmap.txt ├── src ├── core │ ├── core.js │ ├── dom.js │ ├── domrange.js │ ├── wrappedrange.js │ └── wrappedselection.js └── modules │ ├── inactive │ ├── commands │ │ ├── aryeh_implementation.js │ │ ├── rangy-applyclass.js │ │ ├── rangy-bold.js │ │ ├── rangy-bold_new.js │ │ └── rangy-italic.js │ ├── rangy-commands.js │ ├── rangy-commands_new.js │ ├── rangy-events.js │ ├── rangy-position.js │ └── rangy-textcommands.js │ ├── rangy-classapplier.js │ ├── rangy-highlighter.js │ ├── rangy-selectionsaverestore.js │ ├── rangy-serializer.js │ ├── rangy-textrange.js │ └── rangy-util.js └── test ├── bold.html ├── claridge.jpg ├── classapplier.html ├── classappliertests.html ├── classappliertests.js ├── commandnewtests.html ├── commandnewtests.js ├── commandtests.html ├── commandtests.js ├── controlrange.html ├── controlrange2.html ├── domrange.html ├── domtests.js ├── empty.html ├── extend.html ├── featuretests.html ├── featuretests.js ├── highlightertests.html ├── highlightertests.js ├── html5.html ├── ie9.html ├── ie9controlrange.html ├── ietextnodes.html ├── implementation.js ├── index.html ├── rangetests.html ├── rangetests.js ├── removerange.html ├── saverestore.html ├── selectionsaverestoretests.html ├── selectionsaverestoretests.js ├── selectiontests.html ├── selectiontests.js ├── serializer.html ├── serializertests.html ├── serializertests.js ├── tests.css ├── testutils.js ├── textareatests.html ├── textareatests.js ├── textinputs_jquery.html ├── textrangelength.html ├── textrangeperformance.html ├── textrangeperformancetests.html ├── textrangeperformancetests.js ├── textranges.html ├── textrangetests-old.html ├── textrangetests-old.js ├── textrangetests.html ├── textrangetests.js ├── unittests.html ├── words.html └── xntest.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/README.md -------------------------------------------------------------------------------- /demos/bold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/bold.html -------------------------------------------------------------------------------- /demos/bookmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/bookmark.html -------------------------------------------------------------------------------- /demos/classapplier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/classapplier.html -------------------------------------------------------------------------------- /demos/commands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/commands.html -------------------------------------------------------------------------------- /demos/commands_new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/commands_new.html -------------------------------------------------------------------------------- /demos/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/content.html -------------------------------------------------------------------------------- /demos/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/core.html -------------------------------------------------------------------------------- /demos/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/demo.css -------------------------------------------------------------------------------- /demos/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/events.html -------------------------------------------------------------------------------- /demos/football.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/football.png -------------------------------------------------------------------------------- /demos/highlighter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/highlighter.html -------------------------------------------------------------------------------- /demos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/index.html -------------------------------------------------------------------------------- /demos/position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/position.html -------------------------------------------------------------------------------- /demos/position2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/position2.html -------------------------------------------------------------------------------- /demos/saverestore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/saverestore.html -------------------------------------------------------------------------------- /demos/scopedhighlights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/scopedhighlights.html -------------------------------------------------------------------------------- /demos/serializer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/serializer.html -------------------------------------------------------------------------------- /demos/textrange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/demos/textrange.html -------------------------------------------------------------------------------- /docs/Change-Log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/Change-Log.md -------------------------------------------------------------------------------- /docs/Class-Applier-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/Class-Applier-Module.md -------------------------------------------------------------------------------- /docs/Dom-Utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/Dom-Utils.md -------------------------------------------------------------------------------- /docs/Highlighter-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/Highlighter-Module.md -------------------------------------------------------------------------------- /docs/How-Rangy-Differs-From-Native-Apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/How-Rangy-Differs-From-Native-Apis.md -------------------------------------------------------------------------------- /docs/New-Features-In-One-Point-Three.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/New-Features-In-One-Point-Three.md -------------------------------------------------------------------------------- /docs/New-Features-In-One-Point-Two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/New-Features-In-One-Point-Two.md -------------------------------------------------------------------------------- /docs/Position-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/Position-Module.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Rangy-Object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/Rangy-Object.md -------------------------------------------------------------------------------- /docs/Rangy-Range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/Rangy-Range.md -------------------------------------------------------------------------------- /docs/Rangy-Selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/Rangy-Selection.md -------------------------------------------------------------------------------- /docs/Selection-Save-Restore-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/Selection-Save-Restore-Module.md -------------------------------------------------------------------------------- /docs/Serializer-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/Serializer-Module.md -------------------------------------------------------------------------------- /docs/Text-Range-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/Text-Range-Module.md -------------------------------------------------------------------------------- /docs/Users-Of-Rangy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/Users-Of-Rangy.md -------------------------------------------------------------------------------- /docs/_Footer.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/ssss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/docs/ssss.md -------------------------------------------------------------------------------- /external/jshashtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/external/jshashtable.js -------------------------------------------------------------------------------- /external/log4javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/external/log4javascript.js -------------------------------------------------------------------------------- /external/log4javascript_stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/external/log4javascript_stub.js -------------------------------------------------------------------------------- /fiddlings/214.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/fiddlings/214.html -------------------------------------------------------------------------------- /fiddlings/218.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/fiddlings/218.html -------------------------------------------------------------------------------- /fiddlings/browserify/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/fiddlings/browserify/main.js -------------------------------------------------------------------------------- /fiddlings/browserify/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/fiddlings/browserify/test.html -------------------------------------------------------------------------------- /fiddlings/requirejs/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/fiddlings/requirejs/app.js -------------------------------------------------------------------------------- /fiddlings/requirejs/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/fiddlings/requirejs/app/main.js -------------------------------------------------------------------------------- /fiddlings/requirejs/app/rangy-classapplier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/fiddlings/requirejs/app/rangy-classapplier.js -------------------------------------------------------------------------------- /fiddlings/requirejs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/fiddlings/requirejs/index.html -------------------------------------------------------------------------------- /fiddlings/requirejs/lib/rangy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/fiddlings/requirejs/lib/rangy.js -------------------------------------------------------------------------------- /fiddlings/requirejs/lib/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/fiddlings/requirejs/lib/require.js -------------------------------------------------------------------------------- /fiddlings/spec/innerText.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/fiddlings/spec/innerText.htm -------------------------------------------------------------------------------- /fiddlings/spec/innerText_files/dfn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/fiddlings/spec/innerText_files/dfn.js -------------------------------------------------------------------------------- /fiddlings/spec/innerText_files/specification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/fiddlings/spec/innerText_files/specification.css -------------------------------------------------------------------------------- /lib/rangy-classapplier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/lib/rangy-classapplier.js -------------------------------------------------------------------------------- /lib/rangy-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/lib/rangy-core.js -------------------------------------------------------------------------------- /lib/rangy-highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/lib/rangy-highlighter.js -------------------------------------------------------------------------------- /lib/rangy-selectionsaverestore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/lib/rangy-selectionsaverestore.js -------------------------------------------------------------------------------- /lib/rangy-serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/lib/rangy-serializer.js -------------------------------------------------------------------------------- /lib/rangy-textrange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/lib/rangy-textrange.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/package.json -------------------------------------------------------------------------------- /release_process.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/release_process.txt -------------------------------------------------------------------------------- /roadmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/roadmap.txt -------------------------------------------------------------------------------- /src/core/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/core/core.js -------------------------------------------------------------------------------- /src/core/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/core/dom.js -------------------------------------------------------------------------------- /src/core/domrange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/core/domrange.js -------------------------------------------------------------------------------- /src/core/wrappedrange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/core/wrappedrange.js -------------------------------------------------------------------------------- /src/core/wrappedselection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/core/wrappedselection.js -------------------------------------------------------------------------------- /src/modules/inactive/commands/aryeh_implementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/inactive/commands/aryeh_implementation.js -------------------------------------------------------------------------------- /src/modules/inactive/commands/rangy-applyclass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/inactive/commands/rangy-applyclass.js -------------------------------------------------------------------------------- /src/modules/inactive/commands/rangy-bold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/inactive/commands/rangy-bold.js -------------------------------------------------------------------------------- /src/modules/inactive/commands/rangy-bold_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/inactive/commands/rangy-bold_new.js -------------------------------------------------------------------------------- /src/modules/inactive/commands/rangy-italic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/inactive/commands/rangy-italic.js -------------------------------------------------------------------------------- /src/modules/inactive/rangy-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/inactive/rangy-commands.js -------------------------------------------------------------------------------- /src/modules/inactive/rangy-commands_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/inactive/rangy-commands_new.js -------------------------------------------------------------------------------- /src/modules/inactive/rangy-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/inactive/rangy-events.js -------------------------------------------------------------------------------- /src/modules/inactive/rangy-position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/inactive/rangy-position.js -------------------------------------------------------------------------------- /src/modules/inactive/rangy-textcommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/inactive/rangy-textcommands.js -------------------------------------------------------------------------------- /src/modules/rangy-classapplier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/rangy-classapplier.js -------------------------------------------------------------------------------- /src/modules/rangy-highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/rangy-highlighter.js -------------------------------------------------------------------------------- /src/modules/rangy-selectionsaverestore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/rangy-selectionsaverestore.js -------------------------------------------------------------------------------- /src/modules/rangy-serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/rangy-serializer.js -------------------------------------------------------------------------------- /src/modules/rangy-textrange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/rangy-textrange.js -------------------------------------------------------------------------------- /src/modules/rangy-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/src/modules/rangy-util.js -------------------------------------------------------------------------------- /test/bold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/bold.html -------------------------------------------------------------------------------- /test/claridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/claridge.jpg -------------------------------------------------------------------------------- /test/classapplier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/classapplier.html -------------------------------------------------------------------------------- /test/classappliertests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/classappliertests.html -------------------------------------------------------------------------------- /test/classappliertests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/classappliertests.js -------------------------------------------------------------------------------- /test/commandnewtests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/commandnewtests.html -------------------------------------------------------------------------------- /test/commandnewtests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/commandnewtests.js -------------------------------------------------------------------------------- /test/commandtests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/commandtests.html -------------------------------------------------------------------------------- /test/commandtests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/commandtests.js -------------------------------------------------------------------------------- /test/controlrange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/controlrange.html -------------------------------------------------------------------------------- /test/controlrange2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/controlrange2.html -------------------------------------------------------------------------------- /test/domrange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/domrange.html -------------------------------------------------------------------------------- /test/domtests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/domtests.js -------------------------------------------------------------------------------- /test/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/empty.html -------------------------------------------------------------------------------- /test/extend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/extend.html -------------------------------------------------------------------------------- /test/featuretests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/featuretests.html -------------------------------------------------------------------------------- /test/featuretests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/featuretests.js -------------------------------------------------------------------------------- /test/highlightertests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/highlightertests.html -------------------------------------------------------------------------------- /test/highlightertests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/highlightertests.js -------------------------------------------------------------------------------- /test/html5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/html5.html -------------------------------------------------------------------------------- /test/ie9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/ie9.html -------------------------------------------------------------------------------- /test/ie9controlrange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/ie9controlrange.html -------------------------------------------------------------------------------- /test/ietextnodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/ietextnodes.html -------------------------------------------------------------------------------- /test/implementation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/implementation.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/index.html -------------------------------------------------------------------------------- /test/rangetests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/rangetests.html -------------------------------------------------------------------------------- /test/rangetests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/rangetests.js -------------------------------------------------------------------------------- /test/removerange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/removerange.html -------------------------------------------------------------------------------- /test/saverestore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/saverestore.html -------------------------------------------------------------------------------- /test/selectionsaverestoretests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/selectionsaverestoretests.html -------------------------------------------------------------------------------- /test/selectionsaverestoretests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/selectionsaverestoretests.js -------------------------------------------------------------------------------- /test/selectiontests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/selectiontests.html -------------------------------------------------------------------------------- /test/selectiontests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/selectiontests.js -------------------------------------------------------------------------------- /test/serializer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/serializer.html -------------------------------------------------------------------------------- /test/serializertests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/serializertests.html -------------------------------------------------------------------------------- /test/serializertests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/serializertests.js -------------------------------------------------------------------------------- /test/tests.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/tests.css -------------------------------------------------------------------------------- /test/testutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/testutils.js -------------------------------------------------------------------------------- /test/textareatests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/textareatests.html -------------------------------------------------------------------------------- /test/textareatests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/textareatests.js -------------------------------------------------------------------------------- /test/textinputs_jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/textinputs_jquery.html -------------------------------------------------------------------------------- /test/textrangelength.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/textrangelength.html -------------------------------------------------------------------------------- /test/textrangeperformance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/textrangeperformance.html -------------------------------------------------------------------------------- /test/textrangeperformancetests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/textrangeperformancetests.html -------------------------------------------------------------------------------- /test/textrangeperformancetests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/textrangeperformancetests.js -------------------------------------------------------------------------------- /test/textranges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/textranges.html -------------------------------------------------------------------------------- /test/textrangetests-old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/textrangetests-old.html -------------------------------------------------------------------------------- /test/textrangetests-old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/textrangetests-old.js -------------------------------------------------------------------------------- /test/textrangetests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/textrangetests.html -------------------------------------------------------------------------------- /test/textrangetests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/textrangetests.js -------------------------------------------------------------------------------- /test/unittests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/unittests.html -------------------------------------------------------------------------------- /test/words.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/words.html -------------------------------------------------------------------------------- /test/xntest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pburrows/rangy-updated/HEAD/test/xntest.js --------------------------------------------------------------------------------