You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@corinthia.apache.org by ja...@apache.org on 2015/08/14 15:22:48 UTC

[27/84] [partial] incubator-corinthia git commit: Moved experimentel code to /experiments

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureValidHierarchy05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureValidHierarchy05-input.html b/Editor/tests/dom/ensureValidHierarchy05-input.html
deleted file mode 100644
index a00f331..0000000
--- a/Editor/tests/dom/ensureValidHierarchy05-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p0 = document.getElementsByTagName("P")[0];
-    var p1 = document.getElementsByTagName("P")[1];
-    Hierarchy_ensureValidHierarchy(p0.firstChild,true);
-    Hierarchy_ensureValidHierarchy(p1.firstChild,true);
-}
-</script>
-</head>
-<body>
-
-<b><p>Sample text</p><p>More text</p></b>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureValidHierarchy06-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureValidHierarchy06-expected.html b/Editor/tests/dom/ensureValidHierarchy06-expected.html
deleted file mode 100644
index 300d365..0000000
--- a/Editor/tests/dom/ensureValidHierarchy06-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p><b><i><u>Sample text</u></i></b></p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureValidHierarchy06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureValidHierarchy06-input.html b/Editor/tests/dom/ensureValidHierarchy06-input.html
deleted file mode 100644
index 4cc8bef..0000000
--- a/Editor/tests/dom/ensureValidHierarchy06-input.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p0 = document.getElementsByTagName("P")[0];
-    Hierarchy_ensureValidHierarchy(p0.firstChild,true);
-}
-</script>
-</head>
-<body>
-
-<b><i><u><p>Sample text</p></u></i></b>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureValidHierarchy07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureValidHierarchy07-expected.html b/Editor/tests/dom/ensureValidHierarchy07-expected.html
deleted file mode 100644
index d1da84b..0000000
--- a/Editor/tests/dom/ensureValidHierarchy07-expected.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ul>
-      <li><b><i><u>Item 1</u></i></b></li>
-    </ul>
-    <b>
-      <i>
-        <u>
-          <ol>
-            <li>Item 2</li>
-          </ol>
-          <p>Sample text</p>
-          <ul>
-            <li>Item 3</li>
-          </ul>
-          <ol>
-            <li>Item 4</li>
-          </ol>
-        </u>
-      </i>
-    </b>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureValidHierarchy07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureValidHierarchy07-input.html b/Editor/tests/dom/ensureValidHierarchy07-input.html
deleted file mode 100644
index e267d0f..0000000
--- a/Editor/tests/dom/ensureValidHierarchy07-input.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var li = document.getElementsByTagName("LI")[0];
-    Hierarchy_ensureValidHierarchy(li,true);
-}
-</script>
-</head>
-<body>
-
-<b><i><u><ul><li>Item 1</li></ul><ol><li>Item 2</li></ol><p>Sample text</p><ul><li>Item 3</li></ul><ol><li>Item 4</li></ol></u></i></b>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureValidHierarchy08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureValidHierarchy08-expected.html b/Editor/tests/dom/ensureValidHierarchy08-expected.html
deleted file mode 100644
index 555f18d..0000000
--- a/Editor/tests/dom/ensureValidHierarchy08-expected.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <b><i><u><ul><li>Item 1</li></ul></u></i></b>
-    <ol>
-      <li><b><i><u>Item 2</u></i></b></li>
-    </ol>
-    <b>
-      <i>
-        <u>
-          <p>Sample text</p>
-          <ul>
-            <li>Item 3</li>
-          </ul>
-          <ol>
-            <li>Item 4</li>
-          </ol>
-        </u>
-      </i>
-    </b>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureValidHierarchy08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureValidHierarchy08-input.html b/Editor/tests/dom/ensureValidHierarchy08-input.html
deleted file mode 100644
index a2c517b..0000000
--- a/Editor/tests/dom/ensureValidHierarchy08-input.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var li = document.getElementsByTagName("LI")[1];
-    Hierarchy_ensureValidHierarchy(li,true);
-}
-</script>
-</head>
-<body>
-
-<b><i><u><ul><li>Item 1</li></ul><ol><li>Item 2</li></ol><p>Sample text</p><ul><li>Item 3</li></ul><ol><li>Item 4</li></ol></u></i></b>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureValidHierarchy09-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureValidHierarchy09-expected.html b/Editor/tests/dom/ensureValidHierarchy09-expected.html
deleted file mode 100644
index b463ceb..0000000
--- a/Editor/tests/dom/ensureValidHierarchy09-expected.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <b>
-      <i>
-        <u>
-          <ul>
-            <li>Item 1</li>
-          </ul>
-          <ol>
-            <li>Item 2</li>
-          </ol>
-        </u>
-      </i>
-    </b>
-    <p><b><i><u>Sample text</u></i></b></p>
-    <b>
-      <i>
-        <u>
-          <ul>
-            <li>Item 3</li>
-          </ul>
-          <ol>
-            <li>Item 4</li>
-          </ol>
-        </u>
-      </i>
-    </b>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureValidHierarchy09-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureValidHierarchy09-input.html b/Editor/tests/dom/ensureValidHierarchy09-input.html
deleted file mode 100644
index 507bc73..0000000
--- a/Editor/tests/dom/ensureValidHierarchy09-input.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[0];
-    Hierarchy_ensureValidHierarchy(p,true);
-}
-</script>
-</head>
-<body>
-
-<b><i><u><ul><li>Item 1</li></ul><ol><li>Item 2</li></ol><p>Sample text</p><ul><li>Item 3</li></ul><ol><li>Item 4</li></ol></u></i></b>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureValidHierarchy10-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureValidHierarchy10-expected.html b/Editor/tests/dom/ensureValidHierarchy10-expected.html
deleted file mode 100644
index a77382d..0000000
--- a/Editor/tests/dom/ensureValidHierarchy10-expected.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <b>
-      <i>
-        <u>
-          <ul>
-            <li>Item 1</li>
-          </ul>
-          <ol>
-            <li>Item 2</li>
-          </ol>
-          <p>Sample text</p>
-        </u>
-      </i>
-    </b>
-    <ul>
-      <li><b><i><u>Item 3</u></i></b></li>
-    </ul>
-    <b><i><u><ol><li>Item 4</li></ol></u></i></b>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureValidHierarchy10-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureValidHierarchy10-input.html b/Editor/tests/dom/ensureValidHierarchy10-input.html
deleted file mode 100644
index 36cfc00..0000000
--- a/Editor/tests/dom/ensureValidHierarchy10-input.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var li = document.getElementsByTagName("LI")[2];
-    Hierarchy_ensureValidHierarchy(li,true);
-}
-</script>
-</head>
-<body>
-
-<b><i><u><ul><li>Item 1</li></ul><ol><li>Item 2</li></ol><p>Sample text</p><ul><li>Item 3</li></ul><ol><li>Item 4</li></ol></u></i></b>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureValidHierarchy11-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureValidHierarchy11-expected.html b/Editor/tests/dom/ensureValidHierarchy11-expected.html
deleted file mode 100644
index 1d96c09..0000000
--- a/Editor/tests/dom/ensureValidHierarchy11-expected.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <b>
-      <i>
-        <u>
-          <ul>
-            <li>Item 1</li>
-          </ul>
-          <ol>
-            <li>Item 2</li>
-          </ol>
-          <p>Sample text</p>
-          <ul>
-            <li>Item 3</li>
-          </ul>
-        </u>
-      </i>
-    </b>
-    <ol>
-      <li><b><i><u>Item 4</u></i></b></li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureValidHierarchy11-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureValidHierarchy11-input.html b/Editor/tests/dom/ensureValidHierarchy11-input.html
deleted file mode 100644
index ac5d35b..0000000
--- a/Editor/tests/dom/ensureValidHierarchy11-input.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var li = document.getElementsByTagName("LI")[3];
-    Hierarchy_ensureValidHierarchy(li,true);
-}
-</script>
-</head>
-<body>
-
-<b><i><u><ul><li>Item 1</li></ul><ol><li>Item 2</li></ol><p>Sample text</p><ul><li>Item 3</li></ul><ol><li>Item 4</li></ol></u></i></b>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureValidHierarchy12-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureValidHierarchy12-expected.html b/Editor/tests/dom/ensureValidHierarchy12-expected.html
deleted file mode 100644
index 7c84d61..0000000
--- a/Editor/tests/dom/ensureValidHierarchy12-expected.html
+++ /dev/null
@@ -1,55 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <b><i>Beginning</i></b>
-    <ul>
-      <li id="1">
-        <b>
-          <i>
-            One
-            <br/>
-            Two
-            <br/>
-          </i>
-        </b>
-        <p><b><i>Hello</i></b></p>
-        <b>
-          <i>
-            Three
-            <br/>
-            Four
-            <br/>
-          </i>
-        </b>
-        <ul>
-          <li><b><i>List item 1</i></b></li>
-          <li><b><i>List item 2</i></b></li>
-        </ul>
-        <b>
-          <i>
-            Five
-            <br/>
-          </i>
-        </b>
-      </li>
-      <li id="2"><b><i>Two</i></b></li>
-      <li id="3"><p><b><i>Three</i></b></p></li>
-    </ul>
-    <b>
-      <i>
-        Middle
-        <ol>
-          <li>Four</li>
-          <li>Five</li>
-          <li>Six</li>
-        </ol>
-        End
-      </i>
-    </b>
-    <br/>
-    One
-    <br/>
-    Two
-    <br/>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureValidHierarchy12-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureValidHierarchy12-input.html b/Editor/tests/dom/ensureValidHierarchy12-input.html
deleted file mode 100644
index 4cccd2b..0000000
--- a/Editor/tests/dom/ensureValidHierarchy12-input.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ul = document.getElementsByTagName("UL")[0];
-    Hierarchy_ensureValidHierarchy(ul,true);
-}
-</script>
-</head>
-<body>
-
-<b>
-  <i>
-    Beginning
-    <ul>
-      <li id="1">
-      One<br>
-      Two<br>
-      <p>Hello</p>
-      Three<br>
-      Four<br>
-      <ul>
-        <li>List item 1</li>
-        <li>List item 2</li>
-      </ul>
-      Five<br>
-    </li>
-    <li id="2">Two</li>
-    <li id="3"><p>Three</p></li>
-    </ul>
-    Middle
-    <ol>
-      <li>Four</li>
-      <li>Five</li>
-      <li>Six</li>
-    </ol>
-    End
-  </i>
-</b>
-
-<br>
-One
-<br>
-Two
-<br>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours01-expected.html b/Editor/tests/dom/mergeWithNeighbours01-expected.html
deleted file mode 100644
index bb8d07e..0000000
--- a/Editor/tests/dom/mergeWithNeighbours01-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>OneT[woThreeFou]rFive</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours01-input.html b/Editor/tests/dom/mergeWithNeighbours01-input.html
deleted file mode 100644
index 8e86189..0000000
--- a/Editor/tests/dom/mergeWithNeighbours01-input.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = DOM_createElement(document,"P");
-    var text1 = DOM_createTextNode(document,"One");
-    var text2 = DOM_createTextNode(document,"Two");
-    var text3 = DOM_createTextNode(document,"Three");
-    var text4 = DOM_createTextNode(document,"Four");
-    var text5 = DOM_createTextNode(document,"Five");
-    DOM_appendChild(p,text1);
-    DOM_appendChild(p,text2);
-    DOM_appendChild(p,text3);
-    DOM_appendChild(p,text4);
-    DOM_appendChild(p,text5);
-    DOM_appendChild(document.body,p);
-
-    var range = new Range(text2,1,text4,3);
-    Range_trackWhileExecuting(range,function() {
-        Formatting_mergeWithNeighbours(text3,Formatting_MERGEABLE_INLINE);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours02-expected.html b/Editor/tests/dom/mergeWithNeighbours02-expected.html
deleted file mode 100644
index e827e60..0000000
--- a/Editor/tests/dom/mergeWithNeighbours02-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>O[neTwoThreeFourFiv]e</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours02-input.html b/Editor/tests/dom/mergeWithNeighbours02-input.html
deleted file mode 100644
index c203565..0000000
--- a/Editor/tests/dom/mergeWithNeighbours02-input.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = DOM_createElement(document,"P");
-    var text1 = DOM_createTextNode(document,"One");
-    var text2 = DOM_createTextNode(document,"Two");
-    var text3 = DOM_createTextNode(document,"Three");
-    var text4 = DOM_createTextNode(document,"Four");
-    var text5 = DOM_createTextNode(document,"Five");
-    DOM_appendChild(p,text1);
-    DOM_appendChild(p,text2);
-    DOM_appendChild(p,text3);
-    DOM_appendChild(p,text4);
-    DOM_appendChild(p,text5);
-    DOM_appendChild(document.body,p);
-
-    var range = new Range(text1,1,text5,3);
-    Range_trackWhileExecuting(range,function() {
-        Formatting_mergeWithNeighbours(text3,Formatting_MERGEABLE_INLINE);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours03-expected.html b/Editor/tests/dom/mergeWithNeighbours03-expected.html
deleted file mode 100644
index 9430e9d..0000000
--- a/Editor/tests/dom/mergeWithNeighbours03-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>One[TwoThreeFourFive]</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours03-input.html b/Editor/tests/dom/mergeWithNeighbours03-input.html
deleted file mode 100644
index 509f8ec..0000000
--- a/Editor/tests/dom/mergeWithNeighbours03-input.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = DOM_createElement(document,"P");
-    var text1 = DOM_createTextNode(document,"One");
-    var text2 = DOM_createTextNode(document,"Two");
-    var text3 = DOM_createTextNode(document,"Three");
-    var text4 = DOM_createTextNode(document,"Four");
-    var text5 = DOM_createTextNode(document,"Five");
-    DOM_appendChild(p,text1);
-    DOM_appendChild(p,text2);
-    DOM_appendChild(p,text3);
-    DOM_appendChild(p,text4);
-    DOM_appendChild(p,text5);
-    DOM_appendChild(document.body,p);
-
-    var range = new Range(text1,3,text5,4);
-    Range_trackWhileExecuting(range,function() {
-        Formatting_mergeWithNeighbours(text3,Formatting_MERGEABLE_INLINE);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours04-expected.html b/Editor/tests/dom/mergeWithNeighbours04-expected.html
deleted file mode 100644
index 40431bb..0000000
--- a/Editor/tests/dom/mergeWithNeighbours04-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>One[OneOneOneOne]</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours04-input.html b/Editor/tests/dom/mergeWithNeighbours04-input.html
deleted file mode 100644
index 669e692..0000000
--- a/Editor/tests/dom/mergeWithNeighbours04-input.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = DOM_createElement(document,"P");
-    var text1 = DOM_createTextNode(document,"One");
-    var text2 = DOM_createTextNode(document,"One");
-    var text3 = DOM_createTextNode(document,"One");
-    var text4 = DOM_createTextNode(document,"One");
-    var text5 = DOM_createTextNode(document,"One");
-    DOM_appendChild(p,text1);
-    DOM_appendChild(p,text2);
-    DOM_appendChild(p,text3);
-    DOM_appendChild(p,text4);
-    DOM_appendChild(p,text5);
-    DOM_appendChild(document.body,p);
-
-    var range = new Range(text1,3,text5,4);
-    Range_trackWhileExecuting(range,function() {
-        Formatting_mergeWithNeighbours(text3,Formatting_MERGEABLE_INLINE);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours05-expected.html b/Editor/tests/dom/mergeWithNeighbours05-expected.html
deleted file mode 100644
index 1e895ad..0000000
--- a/Editor/tests/dom/mergeWithNeighbours05-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p><b><i>OneTwoThreeFour[FiveSixSevenEight]Nine</i></b></p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours05-input.html b/Editor/tests/dom/mergeWithNeighbours05-input.html
deleted file mode 100644
index 38ac111..0000000
--- a/Editor/tests/dom/mergeWithNeighbours05-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var bs = document.getElementsByTagName("B");
-    var is = document.getElementsByTagName("I");
-
-    var range = new Range(bs[1],DOM_nodeOffset(is[4]),
-                          bs[2],DOM_nodeOffset(is[8]));
-
-    Range_trackWhileExecuting(range,function() {
-        Formatting_mergeWithNeighbours(bs[1],Formatting_MERGEABLE_INLINE);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-<p><b><i>One</i><i>Two</i><i>Three</i></b><b><i>Four</i><i>Five</i><i>Six</i></b><b><i>Seven</i><i>Eight</i><i>Nine</i></b></p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours06-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours06-expected.html b/Editor/tests/dom/mergeWithNeighbours06-expected.html
deleted file mode 100644
index 2cf0aa5..0000000
--- a/Editor/tests/dom/mergeWithNeighbours06-expected.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <b>
-        <i>One[TwoThreeFourFiveSixSevenEightNine</i>
-        ]
-      </b>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours06-input.html b/Editor/tests/dom/mergeWithNeighbours06-input.html
deleted file mode 100644
index 0224e91..0000000
--- a/Editor/tests/dom/mergeWithNeighbours06-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var bs = document.getElementsByTagName("B");
-    var is = document.getElementsByTagName("I");
-
-    var range = new Range(bs[0],1,
-                          bs[2],bs[2].childNodes.length);
-
-    Range_trackWhileExecuting(range,function() {
-        Formatting_mergeWithNeighbours(bs[1],Formatting_MERGEABLE_INLINE);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-<p><b><i>One</i><i>Two</i><i>Three</i></b><b><i>Four</i><i>Five</i><i>Six</i></b><b><i>Seven</i><i>Eight</i><i>Nine</i></b></p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours07-expected.html b/Editor/tests/dom/mergeWithNeighbours07-expected.html
deleted file mode 100644
index 790e84c..0000000
--- a/Editor/tests/dom/mergeWithNeighbours07-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>OneTwo[ThreeFour]Five</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours07-input.html b/Editor/tests/dom/mergeWithNeighbours07-input.html
deleted file mode 100644
index 8ebf653..0000000
--- a/Editor/tests/dom/mergeWithNeighbours07-input.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = DOM_createElement(document,"P");
-    var text1 = DOM_createTextNode(document,"One");
-    var text2 = DOM_createTextNode(document,"Two");
-    var text3 = DOM_createTextNode(document,"Three");
-    var text4 = DOM_createTextNode(document,"Four");
-    var text5 = DOM_createTextNode(document,"Five");
-    DOM_appendChild(p,text1);
-    DOM_appendChild(p,text2);
-    DOM_appendChild(p,text3);
-    DOM_appendChild(p,text4);
-    DOM_appendChild(p,text5);
-    DOM_appendChild(document.body,p);
-
-    var range = new Range(p,2,p,4);
-    Range_trackWhileExecuting(range,function() {
-        Formatting_mergeWithNeighbours(text3,Formatting_MERGEABLE_INLINE);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours08-expected.html b/Editor/tests/dom/mergeWithNeighbours08-expected.html
deleted file mode 100644
index 9d090c6..0000000
--- a/Editor/tests/dom/mergeWithNeighbours08-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <br/>
-      <br/>
-      [OneTwoThreeFourFive]
-      <br/>
-      <br/>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours08-input.html b/Editor/tests/dom/mergeWithNeighbours08-input.html
deleted file mode 100644
index 5521088..0000000
--- a/Editor/tests/dom/mergeWithNeighbours08-input.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = DOM_createElement(document,"P");
-    var text1 = DOM_createTextNode(document,"One");
-    var text2 = DOM_createTextNode(document,"Two");
-    var text3 = DOM_createTextNode(document,"Three");
-    var text4 = DOM_createTextNode(document,"Four");
-    var text5 = DOM_createTextNode(document,"Five");
-    var br1 = DOM_createElement(document,"BR");
-    var br2 = DOM_createElement(document,"BR");
-    var br3 = DOM_createElement(document,"BR");
-    var br4 = DOM_createElement(document,"BR");
-    DOM_appendChild(p,br1);
-    DOM_appendChild(p,br2);
-    DOM_appendChild(p,text1);
-    DOM_appendChild(p,text2);
-    DOM_appendChild(p,text3);
-    DOM_appendChild(p,text4);
-    DOM_appendChild(p,text5);
-    DOM_appendChild(p,br3);
-    DOM_appendChild(p,br4);
-    DOM_appendChild(document.body,p);
-
-    var range = new Range(p,2,p,7);
-    Range_trackWhileExecuting(range,function() {
-        Formatting_mergeWithNeighbours(text3,Formatting_MERGEABLE_INLINE);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours09-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours09-expected.html b/Editor/tests/dom/mergeWithNeighbours09-expected.html
deleted file mode 100644
index 8229f01..0000000
--- a/Editor/tests/dom/mergeWithNeighbours09-expected.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <br/>
-      [
-      <br/>
-      OneTwoThreeFourFive
-      <br/>
-      ]
-      <br/>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours09-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours09-input.html b/Editor/tests/dom/mergeWithNeighbours09-input.html
deleted file mode 100644
index 858d654..0000000
--- a/Editor/tests/dom/mergeWithNeighbours09-input.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = DOM_createElement(document,"P");
-    var text1 = DOM_createTextNode(document,"One");
-    var text2 = DOM_createTextNode(document,"Two");
-    var text3 = DOM_createTextNode(document,"Three");
-    var text4 = DOM_createTextNode(document,"Four");
-    var text5 = DOM_createTextNode(document,"Five");
-    var br1 = DOM_createElement(document,"BR");
-    var br2 = DOM_createElement(document,"BR");
-    var br3 = DOM_createElement(document,"BR");
-    var br4 = DOM_createElement(document,"BR");
-    DOM_appendChild(p,br1);
-    DOM_appendChild(p,br2);
-    DOM_appendChild(p,text1);
-    DOM_appendChild(p,text2);
-    DOM_appendChild(p,text3);
-    DOM_appendChild(p,text4);
-    DOM_appendChild(p,text5);
-    DOM_appendChild(p,br3);
-    DOM_appendChild(p,br4);
-    DOM_appendChild(document.body,p);
-
-    var range = new Range(p,1,p,8);
-    Range_trackWhileExecuting(range,function() {
-        Formatting_mergeWithNeighbours(text3,Formatting_MERGEABLE_INLINE);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours10-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours10-expected.html b/Editor/tests/dom/mergeWithNeighbours10-expected.html
deleted file mode 100644
index 2adec16..0000000
--- a/Editor/tests/dom/mergeWithNeighbours10-expected.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      [
-      <br/>
-      <br/>
-      OneTwoThreeFourFive
-      <br/>
-      <br/>
-      ]
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours10-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours10-input.html b/Editor/tests/dom/mergeWithNeighbours10-input.html
deleted file mode 100644
index 5953ac7..0000000
--- a/Editor/tests/dom/mergeWithNeighbours10-input.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = DOM_createElement(document,"P");
-    var text1 = DOM_createTextNode(document,"One");
-    var text2 = DOM_createTextNode(document,"Two");
-    var text3 = DOM_createTextNode(document,"Three");
-    var text4 = DOM_createTextNode(document,"Four");
-    var text5 = DOM_createTextNode(document,"Five");
-    var br1 = DOM_createElement(document,"BR");
-    var br2 = DOM_createElement(document,"BR");
-    var br3 = DOM_createElement(document,"BR");
-    var br4 = DOM_createElement(document,"BR");
-    DOM_appendChild(p,br1);
-    DOM_appendChild(p,br2);
-    DOM_appendChild(p,text1);
-    DOM_appendChild(p,text2);
-    DOM_appendChild(p,text3);
-    DOM_appendChild(p,text4);
-    DOM_appendChild(p,text5);
-    DOM_appendChild(p,br3);
-    DOM_appendChild(p,br4);
-    DOM_appendChild(document.body,p);
-
-    var range = new Range(p,0,p,9);
-    Range_trackWhileExecuting(range,function() {
-        Formatting_mergeWithNeighbours(text3,Formatting_MERGEABLE_INLINE);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours11-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours11-expected.html b/Editor/tests/dom/mergeWithNeighbours11-expected.html
deleted file mode 100644
index 73d9c83..0000000
--- a/Editor/tests/dom/mergeWithNeighbours11-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p><b><i>OneTwoThree[FourFiveSix]SevenEightNine</i></b></p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours11-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours11-input.html b/Editor/tests/dom/mergeWithNeighbours11-input.html
deleted file mode 100644
index 5c58d04..0000000
--- a/Editor/tests/dom/mergeWithNeighbours11-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[0];
-    var bs = document.getElementsByTagName("B");
-    var is = document.getElementsByTagName("I");
-
-    var range = new Range(p,1,p,2);
-
-    Range_trackWhileExecuting(range,function() {
-        Formatting_mergeWithNeighbours(bs[1],Formatting_MERGEABLE_INLINE);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-<p><b><i>One</i><i>Two</i><i>Three</i></b><b><i>Four</i><i>Five</i><i>Six</i></b><b><i>Seven</i><i>Eight</i><i>Nine</i></b></p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours12-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours12-expected.html b/Editor/tests/dom/mergeWithNeighbours12-expected.html
deleted file mode 100644
index 7629b0f..0000000
--- a/Editor/tests/dom/mergeWithNeighbours12-expected.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <br/>
-      <br/>
-      [
-      <b><i>OneTwoThreeFourFiveSixSevenEightNine</i></b>
-      ]
-      <br/>
-      <br/>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours12-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours12-input.html b/Editor/tests/dom/mergeWithNeighbours12-input.html
deleted file mode 100644
index 5cee75a..0000000
--- a/Editor/tests/dom/mergeWithNeighbours12-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[0];
-    var bs = document.getElementsByTagName("B");
-    var is = document.getElementsByTagName("I");
-
-    var range = new Range(p,2,p,5);
-
-    Range_trackWhileExecuting(range,function() {
-       Formatting_mergeWithNeighbours(bs[1],Formatting_MERGEABLE_INLINE);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-<p><br><br><b><i>One</i><i>Two</i><i>Three</i></b><b><i>Four</i><i>Five</i><i>Six</i></b><b><i>Seven</i><i>Eight</i><i>Nine</i></b><br><br></p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours13-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours13-expected.html b/Editor/tests/dom/mergeWithNeighbours13-expected.html
deleted file mode 100644
index baa6cf8..0000000
--- a/Editor/tests/dom/mergeWithNeighbours13-expected.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <br/>
-      [
-      <br/>
-      <b><i>OneTwoThreeFourFiveSixSevenEightNine</i></b>
-      <br/>
-      ]
-      <br/>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours13-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours13-input.html b/Editor/tests/dom/mergeWithNeighbours13-input.html
deleted file mode 100644
index ad8c2eb..0000000
--- a/Editor/tests/dom/mergeWithNeighbours13-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[0];
-    var bs = document.getElementsByTagName("B");
-    var is = document.getElementsByTagName("I");
-
-    var range = new Range(p,1,p,6);
-
-    Range_trackWhileExecuting(range,function() {
-       Formatting_mergeWithNeighbours(bs[1],Formatting_MERGEABLE_INLINE);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-<p><br><br><b><i>One</i><i>Two</i><i>Three</i></b><b><i>Four</i><i>Five</i><i>Six</i></b><b><i>Seven</i><i>Eight</i><i>Nine</i></b><br><br></p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours14-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours14-expected.html b/Editor/tests/dom/mergeWithNeighbours14-expected.html
deleted file mode 100644
index 93a1e30..0000000
--- a/Editor/tests/dom/mergeWithNeighbours14-expected.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      [
-      <br/>
-      <br/>
-      <b><i>OneTwoThreeFourFiveSixSevenEightNine</i></b>
-      <br/>
-      <br/>
-      ]
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/mergeWithNeighbours14-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/mergeWithNeighbours14-input.html b/Editor/tests/dom/mergeWithNeighbours14-input.html
deleted file mode 100644
index 363c0ea..0000000
--- a/Editor/tests/dom/mergeWithNeighbours14-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[0];
-    var bs = document.getElementsByTagName("B");
-    var is = document.getElementsByTagName("I");
-
-    var range = new Range(p,0,p,7);
-
-    Range_trackWhileExecuting(range,function() {
-       Formatting_mergeWithNeighbours(bs[1],Formatting_MERGEABLE_INLINE);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-<p><br><br><b><i>One</i><i>Two</i><i>Three</i></b><b><i>Four</i><i>Five</i><i>Six</i></b><b><i>Seven</i><i>Eight</i><i>Nine</i></b><br><br></p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveCharacters01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveCharacters01-expected.html b/Editor/tests/dom/moveCharacters01-expected.html
deleted file mode 100644
index 1806ced..0000000
--- a/Editor/tests/dom/moveCharacters01-expected.html
+++ /dev/null
@@ -1,28 +0,0 @@
-"|one two three"   ->   "|one three"           ->   "|one two three"
-"o|ne two three"   ->   "o|ne three"           ->   "o|ne two three"
-"on|e two three"   ->   "on|e three"           ->   "on|e two three"
-"one| two three"   ->   "one| three"           ->   "one| two three"
-"one |two three"   ->   "four five |two six"   ->   "one |two three"
-"one t|wo three"   ->   "four five t|wo six"   ->   "one t|wo three"
-"one tw|o three"   ->   "four five tw|o six"   ->   "one tw|o three"
-"one two| three"   ->   "four five two| six"   ->   "one two| three"
-"one two |three"   ->   "four five two |six"   ->   "one two |three"
-"one two t|hree"   ->   "one t|hree"           ->   "one two t|hree"
-"one two th|ree"   ->   "one th|ree"           ->   "one two th|ree"
-"one two thr|ee"   ->   "one thr|ee"           ->   "one two thr|ee"
-"one two thre|e"   ->   "one thre|e"           ->   "one two thre|e"
-"one two three|"   ->   "one three|"           ->   "one two three|"
-"|four five six"   ->   "|four five two six"   ->   "|four five six"
-"f|our five six"   ->   "f|our five two six"   ->   "f|our five six"
-"fo|ur five six"   ->   "fo|ur five two six"   ->   "fo|ur five six"
-"fou|r five six"   ->   "fou|r five two six"   ->   "fou|r five six"
-"four| five six"   ->   "four| five two six"   ->   "four| five six"
-"four |five six"   ->   "four |five two six"   ->   "four |five six"
-"four f|ive six"   ->   "four f|ive two six"   ->   "four f|ive six"
-"four fi|ve six"   ->   "four fi|ve two six"   ->   "four fi|ve six"
-"four fiv|e six"   ->   "four fiv|e two six"   ->   "four fiv|e six"
-"four five| six"   ->   "four five| two six"   ->   "four five| six"
-"four five |six"   ->   "four five two |six"   ->   "one two |three" ***
-"four five s|ix"   ->   "four five two s|ix"   ->   "four five s|ix"
-"four five si|x"   ->   "four five two si|x"   ->   "four five si|x"
-"four five six|"   ->   "four five two six|"   ->   "four five six|"

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveCharacters01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveCharacters01-input.html b/Editor/tests/dom/moveCharacters01-input.html
deleted file mode 100644
index a3ab123..0000000
--- a/Editor/tests/dom/moveCharacters01-input.html
+++ /dev/null
@@ -1,62 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function pad(str,length)
-{
-    str = ""+str;
-    while (str.length < length)
-        str += " ";
-    return str;
-}
-
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var text1 = ps[0].firstChild;
-    var text2 = ps[1].firstChild;
-
-    var positions = new Array();
-    for (var i = 0; i <= text1.nodeValue.length; i++)
-        positions.push(new Position(text1,i));
-
-    for (var i = 0; i <= text2.nodeValue.length; i++)
-        positions.push(new Position(text2,i));
-
-    var origStrings = new Array();
-    for (var i = 0; i < positions.length; i++)
-        origStrings.push(positions[i].toString());
-
-    Position_trackWhileExecuting(positions,function() {
-        DOM_moveCharacters(text1,4,8,text2,10,false,false);
-    });
-
-    var movedStrings = new Array();
-    for (var i = 0; i < positions.length; i++)
-        movedStrings.push(positions[i].toString());
-
-    Position_trackWhileExecuting(positions,function() {
-        UndoManager_undo();
-    });
-    var undoneStrings = new Array();
-    for (var i = 0; i < positions.length; i++)
-        undoneStrings.push(positions[i].toString());
-
-    var lines = new Array();
-    for (var i = 0; i < positions.length; i++) {
-        var extra = "";
-        if (undoneStrings[i] != origStrings[i])
-            extra += " ***";
-        lines.push(origStrings[i]+"   ->   "+
-                   pad(movedStrings[i],20)+"   ->   "+
-                   undoneStrings[i]+extra+"\n");
-    }
-    return lines.join("");
-}
-</script>
-</head>
-<body>
-<p>one two three</p>
-<p>four five six</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveCharacters02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveCharacters02-expected.html b/Editor/tests/dom/moveCharacters02-expected.html
deleted file mode 100644
index 1a6ddfb..0000000
--- a/Editor/tests/dom/moveCharacters02-expected.html
+++ /dev/null
@@ -1,28 +0,0 @@
-"|one two three"   ->   "|one three"           ->   "|one two three"
-"o|ne two three"   ->   "o|ne three"           ->   "o|ne two three"
-"on|e two three"   ->   "on|e three"           ->   "on|e two three"
-"one| two three"   ->   "one| three"           ->   "one| two three"
-"one |two three"   ->   "one |three"           ->   "one |two three"
-"one t|wo three"   ->   "four five t|wo six"   ->   "one t|wo three"
-"one tw|o three"   ->   "four five tw|o six"   ->   "one tw|o three"
-"one two| three"   ->   "four five two| six"   ->   "one two| three"
-"one two |three"   ->   "four five two |six"   ->   "one two |three"
-"one two t|hree"   ->   "one t|hree"           ->   "one two t|hree"
-"one two th|ree"   ->   "one th|ree"           ->   "one two th|ree"
-"one two thr|ee"   ->   "one thr|ee"           ->   "one two thr|ee"
-"one two thre|e"   ->   "one thre|e"           ->   "one two thre|e"
-"one two three|"   ->   "one three|"           ->   "one two three|"
-"|four five six"   ->   "|four five two six"   ->   "|four five six"
-"f|our five six"   ->   "f|our five two six"   ->   "f|our five six"
-"fo|ur five six"   ->   "fo|ur five two six"   ->   "fo|ur five six"
-"fou|r five six"   ->   "fou|r five two six"   ->   "fou|r five six"
-"four| five six"   ->   "four| five two six"   ->   "four| five six"
-"four |five six"   ->   "four |five two six"   ->   "four |five six"
-"four f|ive six"   ->   "four f|ive two six"   ->   "four f|ive six"
-"four fi|ve six"   ->   "four fi|ve two six"   ->   "four fi|ve six"
-"four fiv|e six"   ->   "four fiv|e two six"   ->   "four fiv|e six"
-"four five| six"   ->   "four five| two six"   ->   "four five| six"
-"four five |six"   ->   "four five |two six"   ->   "four five |six"
-"four five s|ix"   ->   "four five two s|ix"   ->   "four five s|ix"
-"four five si|x"   ->   "four five two si|x"   ->   "four five si|x"
-"four five six|"   ->   "four five two six|"   ->   "four five six|"

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveCharacters02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveCharacters02-input.html b/Editor/tests/dom/moveCharacters02-input.html
deleted file mode 100644
index 38ed8a1..0000000
--- a/Editor/tests/dom/moveCharacters02-input.html
+++ /dev/null
@@ -1,62 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function pad(str,length)
-{
-    str = ""+str;
-    while (str.length < length)
-        str += " ";
-    return str;
-}
-
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var text1 = ps[0].firstChild;
-    var text2 = ps[1].firstChild;
-
-    var positions = new Array();
-    for (var i = 0; i <= text1.nodeValue.length; i++)
-        positions.push(new Position(text1,i));
-
-    for (var i = 0; i <= text2.nodeValue.length; i++)
-        positions.push(new Position(text2,i));
-
-    var origStrings = new Array();
-    for (var i = 0; i < positions.length; i++)
-        origStrings.push(positions[i].toString());
-
-    Position_trackWhileExecuting(positions,function() {
-        DOM_moveCharacters(text1,4,8,text2,10,true,false);
-    });
-
-    var movedStrings = new Array();
-    for (var i = 0; i < positions.length; i++)
-        movedStrings.push(positions[i].toString());
-
-    Position_trackWhileExecuting(positions,function() {
-        UndoManager_undo();
-    });
-    var undoneStrings = new Array();
-    for (var i = 0; i < positions.length; i++)
-        undoneStrings.push(positions[i].toString());
-
-    var lines = new Array();
-    for (var i = 0; i < positions.length; i++) {
-        var extra = "";
-        if (undoneStrings[i] != origStrings[i])
-            extra += " ***";
-        lines.push(origStrings[i]+"   ->   "+
-                   pad(movedStrings[i],20)+"   ->   "+
-                   undoneStrings[i]+extra+"\n");
-    }
-    return lines.join("");
-}
-</script>
-</head>
-<body>
-<p>one two three</p>
-<p>four five six</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveCharacters03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveCharacters03-expected.html b/Editor/tests/dom/moveCharacters03-expected.html
deleted file mode 100644
index c5aeb63..0000000
--- a/Editor/tests/dom/moveCharacters03-expected.html
+++ /dev/null
@@ -1,28 +0,0 @@
-"|one two three"   ->   "|one three"           ->   "|one two three"
-"o|ne two three"   ->   "o|ne three"           ->   "o|ne two three"
-"on|e two three"   ->   "on|e three"           ->   "on|e two three"
-"one| two three"   ->   "one| three"           ->   "one| two three"
-"one |two three"   ->   "four five |two six"   ->   "one |two three"
-"one t|wo three"   ->   "four five t|wo six"   ->   "one t|wo three"
-"one tw|o three"   ->   "four five tw|o six"   ->   "one tw|o three"
-"one two| three"   ->   "four five two| six"   ->   "one two| three"
-"one two |three"   ->   "one |three"           ->   "one two |three"
-"one two t|hree"   ->   "one t|hree"           ->   "one two t|hree"
-"one two th|ree"   ->   "one th|ree"           ->   "one two th|ree"
-"one two thr|ee"   ->   "one thr|ee"           ->   "one two thr|ee"
-"one two thre|e"   ->   "one thre|e"           ->   "one two thre|e"
-"one two three|"   ->   "one three|"           ->   "one two three|"
-"|four five six"   ->   "|four five two six"   ->   "|four five six"
-"f|our five six"   ->   "f|our five two six"   ->   "f|our five six"
-"fo|ur five six"   ->   "fo|ur five two six"   ->   "fo|ur five six"
-"fou|r five six"   ->   "fou|r five two six"   ->   "fou|r five six"
-"four| five six"   ->   "four| five two six"   ->   "four| five six"
-"four |five six"   ->   "four |five two six"   ->   "four |five six"
-"four f|ive six"   ->   "four f|ive two six"   ->   "four f|ive six"
-"four fi|ve six"   ->   "four fi|ve two six"   ->   "four fi|ve six"
-"four fiv|e six"   ->   "four fiv|e two six"   ->   "four fiv|e six"
-"four five| six"   ->   "four five| two six"   ->   "four five| six"
-"four five |six"   ->   "four five two |six"   ->   "four five |six"
-"four five s|ix"   ->   "four five two s|ix"   ->   "four five s|ix"
-"four five si|x"   ->   "four five two si|x"   ->   "four five si|x"
-"four five six|"   ->   "four five two six|"   ->   "four five six|"

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveCharacters03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveCharacters03-input.html b/Editor/tests/dom/moveCharacters03-input.html
deleted file mode 100644
index a18c32e..0000000
--- a/Editor/tests/dom/moveCharacters03-input.html
+++ /dev/null
@@ -1,62 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function pad(str,length)
-{
-    str = ""+str;
-    while (str.length < length)
-        str += " ";
-    return str;
-}
-
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var text1 = ps[0].firstChild;
-    var text2 = ps[1].firstChild;
-
-    var positions = new Array();
-    for (var i = 0; i <= text1.nodeValue.length; i++)
-        positions.push(new Position(text1,i));
-
-    for (var i = 0; i <= text2.nodeValue.length; i++)
-        positions.push(new Position(text2,i));
-
-    var origStrings = new Array();
-    for (var i = 0; i < positions.length; i++)
-        origStrings.push(positions[i].toString());
-
-    Position_trackWhileExecuting(positions,function() {
-        DOM_moveCharacters(text1,4,8,text2,10,false,true);
-    });
-
-    var movedStrings = new Array();
-    for (var i = 0; i < positions.length; i++)
-        movedStrings.push(positions[i].toString());
-
-    Position_trackWhileExecuting(positions,function() {
-        UndoManager_undo();
-    });
-    var undoneStrings = new Array();
-    for (var i = 0; i < positions.length; i++)
-        undoneStrings.push(positions[i].toString());
-
-    var lines = new Array();
-    for (var i = 0; i < positions.length; i++) {
-        var extra = "";
-        if (undoneStrings[i] != origStrings[i])
-            extra += " ***";
-        lines.push(origStrings[i]+"   ->   "+
-                   pad(movedStrings[i],20)+"   ->   "+
-                   undoneStrings[i]+extra+"\n");
-    }
-    return lines.join("");
-}
-</script>
-</head>
-<body>
-<p>one two three</p>
-<p>four five six</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveCharacters04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveCharacters04-expected.html b/Editor/tests/dom/moveCharacters04-expected.html
deleted file mode 100644
index c59f731..0000000
--- a/Editor/tests/dom/moveCharacters04-expected.html
+++ /dev/null
@@ -1,28 +0,0 @@
-"|one two three"   ->   "|one three"           ->   "|one two three"
-"o|ne two three"   ->   "o|ne three"           ->   "o|ne two three"
-"on|e two three"   ->   "on|e three"           ->   "on|e two three"
-"one| two three"   ->   "one| three"           ->   "one| two three"
-"one |two three"   ->   "one |three"           ->   "one |two three"
-"one t|wo three"   ->   "four five t|wo six"   ->   "one t|wo three"
-"one tw|o three"   ->   "four five tw|o six"   ->   "one tw|o three"
-"one two| three"   ->   "four five two| six"   ->   "one two| three"
-"one two |three"   ->   "one |three"           ->   "one |two three" ***
-"one two t|hree"   ->   "one t|hree"           ->   "one two t|hree"
-"one two th|ree"   ->   "one th|ree"           ->   "one two th|ree"
-"one two thr|ee"   ->   "one thr|ee"           ->   "one two thr|ee"
-"one two thre|e"   ->   "one thre|e"           ->   "one two thre|e"
-"one two three|"   ->   "one three|"           ->   "one two three|"
-"|four five six"   ->   "|four five two six"   ->   "|four five six"
-"f|our five six"   ->   "f|our five two six"   ->   "f|our five six"
-"fo|ur five six"   ->   "fo|ur five two six"   ->   "fo|ur five six"
-"fou|r five six"   ->   "fou|r five two six"   ->   "fou|r five six"
-"four| five six"   ->   "four| five two six"   ->   "four| five six"
-"four |five six"   ->   "four |five two six"   ->   "four |five six"
-"four f|ive six"   ->   "four f|ive two six"   ->   "four f|ive six"
-"four fi|ve six"   ->   "four fi|ve two six"   ->   "four fi|ve six"
-"four fiv|e six"   ->   "four fiv|e two six"   ->   "four fiv|e six"
-"four five| six"   ->   "four five| two six"   ->   "four five| six"
-"four five |six"   ->   "four five |two six"   ->   "four five |six"
-"four five s|ix"   ->   "four five two s|ix"   ->   "four five s|ix"
-"four five si|x"   ->   "four five two si|x"   ->   "four five si|x"
-"four five six|"   ->   "four five two six|"   ->   "four five six|"

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveCharacters04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveCharacters04-input.html b/Editor/tests/dom/moveCharacters04-input.html
deleted file mode 100644
index 7d409d7..0000000
--- a/Editor/tests/dom/moveCharacters04-input.html
+++ /dev/null
@@ -1,62 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function pad(str,length)
-{
-    str = ""+str;
-    while (str.length < length)
-        str += " ";
-    return str;
-}
-
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var text1 = ps[0].firstChild;
-    var text2 = ps[1].firstChild;
-
-    var positions = new Array();
-    for (var i = 0; i <= text1.nodeValue.length; i++)
-        positions.push(new Position(text1,i));
-
-    for (var i = 0; i <= text2.nodeValue.length; i++)
-        positions.push(new Position(text2,i));
-
-    var origStrings = new Array();
-    for (var i = 0; i < positions.length; i++)
-        origStrings.push(positions[i].toString());
-
-    Position_trackWhileExecuting(positions,function() {
-        DOM_moveCharacters(text1,4,8,text2,10,true,true);
-    });
-
-    var movedStrings = new Array();
-    for (var i = 0; i < positions.length; i++)
-        movedStrings.push(positions[i].toString());
-
-    Position_trackWhileExecuting(positions,function() {
-        UndoManager_undo();
-    });
-    var undoneStrings = new Array();
-    for (var i = 0; i < positions.length; i++)
-        undoneStrings.push(positions[i].toString());
-
-    var lines = new Array();
-    for (var i = 0; i < positions.length; i++) {
-        var extra = "";
-        if (undoneStrings[i] != origStrings[i])
-            extra += " ***";
-        lines.push(origStrings[i]+"   ->   "+
-                   pad(movedStrings[i],20)+"   ->   "+
-                   undoneStrings[i]+extra+"\n");
-    }
-    return lines.join("");
-}
-</script>
-</head>
-<body>
-<p>one two three</p>
-<p>four five six</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode01-expected.html b/Editor/tests/dom/moveNode01-expected.html
deleted file mode 100644
index 6aad3c0..0000000
--- a/Editor/tests/dom/moveNode01-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <tt/>
-    <span>Zero</span>
-    <p><span>One</span></p>
-    <p>Two</p>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode01-input.html b/Editor/tests/dom/moveNode01-input.html
deleted file mode 100644
index c2a167f..0000000
--- a/Editor/tests/dom/moveNode01-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],0);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(document.body,ps[0].childNodes[0],ps[0]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode02-expected.html b/Editor/tests/dom/moveNode02-expected.html
deleted file mode 100644
index 8aca2c8..0000000
--- a/Editor/tests/dom/moveNode02-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p><span>One</span></p>
-    <tt/>
-    <span>Zero</span>
-    <p>Two</p>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode02-input.html b/Editor/tests/dom/moveNode02-input.html
deleted file mode 100644
index 6ca508a..0000000
--- a/Editor/tests/dom/moveNode02-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],0);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(document.body,ps[0].childNodes[0],ps[1]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode03-expected.html b/Editor/tests/dom/moveNode03-expected.html
deleted file mode 100644
index 023e626..0000000
--- a/Editor/tests/dom/moveNode03-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p><span>One</span></p>
-    <p>Two</p>
-    <tt/>
-    <span>Zero</span>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode03-input.html b/Editor/tests/dom/moveNode03-input.html
deleted file mode 100644
index f2f4fe0..0000000
--- a/Editor/tests/dom/moveNode03-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],0);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(document.body,ps[0].childNodes[0],ps[2]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode04-expected.html b/Editor/tests/dom/moveNode04-expected.html
deleted file mode 100644
index 0d92ebe..0000000
--- a/Editor/tests/dom/moveNode04-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p><span>One</span></p>
-    <p>Two</p>
-    <p>Three</p>
-    <tt/>
-    <span>Zero</span>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode04-input.html b/Editor/tests/dom/moveNode04-input.html
deleted file mode 100644
index 2ad8ecc..0000000
--- a/Editor/tests/dom/moveNode04-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],0);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(document.body,ps[0].childNodes[0],ps[3]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode05-expected.html b/Editor/tests/dom/moveNode05-expected.html
deleted file mode 100644
index 53dc1fb..0000000
--- a/Editor/tests/dom/moveNode05-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <tt/>
-    <span>One</span>
-    <p><span>Zero</span></p>
-    <p>Two</p>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode05-input.html b/Editor/tests/dom/moveNode05-input.html
deleted file mode 100644
index 2db783e..0000000
--- a/Editor/tests/dom/moveNode05-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],1);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(document.body,ps[0].childNodes[1],ps[0]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode06-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode06-expected.html b/Editor/tests/dom/moveNode06-expected.html
deleted file mode 100644
index 5842ce2..0000000
--- a/Editor/tests/dom/moveNode06-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p><span>Zero</span></p>
-    <tt/>
-    <span>One</span>
-    <p>Two</p>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode06-input.html b/Editor/tests/dom/moveNode06-input.html
deleted file mode 100644
index 5f32219..0000000
--- a/Editor/tests/dom/moveNode06-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],1);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(document.body,ps[0].childNodes[1],ps[1]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode07-expected.html b/Editor/tests/dom/moveNode07-expected.html
deleted file mode 100644
index 97072cc..0000000
--- a/Editor/tests/dom/moveNode07-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p><span>Zero</span></p>
-    <p>Two</p>
-    <tt/>
-    <span>One</span>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode07-input.html b/Editor/tests/dom/moveNode07-input.html
deleted file mode 100644
index 255861c..0000000
--- a/Editor/tests/dom/moveNode07-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],1);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(document.body,ps[0].childNodes[1],ps[2]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode08-expected.html b/Editor/tests/dom/moveNode08-expected.html
deleted file mode 100644
index dd2d2eb..0000000
--- a/Editor/tests/dom/moveNode08-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p><span>Zero</span></p>
-    <p>Two</p>
-    <p>Three</p>
-    <tt/>
-    <span>One</span>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode08-input.html b/Editor/tests/dom/moveNode08-input.html
deleted file mode 100644
index 47fa98a..0000000
--- a/Editor/tests/dom/moveNode08-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],1);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(document.body,ps[0].childNodes[1],null);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode09-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode09-expected.html b/Editor/tests/dom/moveNode09-expected.html
deleted file mode 100644
index 380df29..0000000
--- a/Editor/tests/dom/moveNode09-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <span>One</span>
-    <p>
-      <tt/>
-      <span>Zero</span>
-    </p>
-    <p>Two</p>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode09-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode09-input.html b/Editor/tests/dom/moveNode09-input.html
deleted file mode 100644
index 7f0184b..0000000
--- a/Editor/tests/dom/moveNode09-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],0);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(document.body,ps[0].childNodes[1],ps[0]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode10-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode10-expected.html b/Editor/tests/dom/moveNode10-expected.html
deleted file mode 100644
index 064dc3a..0000000
--- a/Editor/tests/dom/moveNode10-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <span>Zero</span>
-    <p>
-      <tt/>
-      <span>One</span>
-    </p>
-    <p>Two</p>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode10-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode10-input.html b/Editor/tests/dom/moveNode10-input.html
deleted file mode 100644
index 72d7950..0000000
--- a/Editor/tests/dom/moveNode10-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],1);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(document.body,ps[0].childNodes[0],ps[0]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode11-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode11-expected.html b/Editor/tests/dom/moveNode11-expected.html
deleted file mode 100644
index 03e6860..0000000
--- a/Editor/tests/dom/moveNode11-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <span>Zero</span>
-    <p>
-      <span>One</span>
-      <tt/>
-    </p>
-    <p>Two</p>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode11-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode11-input.html b/Editor/tests/dom/moveNode11-input.html
deleted file mode 100644
index bcf7118..0000000
--- a/Editor/tests/dom/moveNode11-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],2);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(document.body,ps[0].childNodes[0],ps[0]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode12-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode12-expected.html b/Editor/tests/dom/moveNode12-expected.html
deleted file mode 100644
index 1b755ae..0000000
--- a/Editor/tests/dom/moveNode12-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <span>One</span>
-    <p>
-      <span>Zero</span>
-      <tt/>
-    </p>
-    <p>Two</p>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode12-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode12-input.html b/Editor/tests/dom/moveNode12-input.html
deleted file mode 100644
index d6705a4..0000000
--- a/Editor/tests/dom/moveNode12-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],2);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(document.body,ps[0].childNodes[1],ps[0]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode13-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode13-expected.html b/Editor/tests/dom/moveNode13-expected.html
deleted file mode 100644
index 52a99f5..0000000
--- a/Editor/tests/dom/moveNode13-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <tt/>
-      <span>Zero</span>
-      <span>One</span>
-    </p>
-    <p>Two</p>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode13-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode13-input.html b/Editor/tests/dom/moveNode13-input.html
deleted file mode 100644
index 1d81cf1..0000000
--- a/Editor/tests/dom/moveNode13-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],0);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(document.body,ps[0],ps[1]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode14-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode14-expected.html b/Editor/tests/dom/moveNode14-expected.html
deleted file mode 100644
index f05211e..0000000
--- a/Editor/tests/dom/moveNode14-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Two</p>
-    <p>
-      <tt/>
-      <span>Zero</span>
-      <span>One</span>
-    </p>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode14-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode14-input.html b/Editor/tests/dom/moveNode14-input.html
deleted file mode 100644
index 6b75dbf..0000000
--- a/Editor/tests/dom/moveNode14-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],0);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(document.body,ps[0],ps[2]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode15-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode15-expected.html b/Editor/tests/dom/moveNode15-expected.html
deleted file mode 100644
index 18b713e..0000000
--- a/Editor/tests/dom/moveNode15-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Two</p>
-    <p>Three</p>
-    <p>
-      <tt/>
-      <span>Zero</span>
-      <span>One</span>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode15-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode15-input.html b/Editor/tests/dom/moveNode15-input.html
deleted file mode 100644
index 18e8ce2..0000000
--- a/Editor/tests/dom/moveNode15-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],0);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(document.body,ps[0],null);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode16-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode16-expected.html b/Editor/tests/dom/moveNode16-expected.html
deleted file mode 100644
index 755c665..0000000
--- a/Editor/tests/dom/moveNode16-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <tt/>
-      <span>One</span>
-      <span>Zero</span>
-    </p>
-    <p>Two</p>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode16-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode16-input.html b/Editor/tests/dom/moveNode16-input.html
deleted file mode 100644
index e68ea06..0000000
--- a/Editor/tests/dom/moveNode16-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],0);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(ps[0],ps[0].childNodes[1],ps[0].childNodes[0]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode17-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode17-expected.html b/Editor/tests/dom/moveNode17-expected.html
deleted file mode 100644
index 8f57d94..0000000
--- a/Editor/tests/dom/moveNode17-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <tt/>
-      <p>Two</p>
-      <p>Three</p>
-      <span>Zero</span>
-      <span>One</span>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode17-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode17-input.html b/Editor/tests/dom/moveNode17-input.html
deleted file mode 100644
index 10a0f66..0000000
--- a/Editor/tests/dom/moveNode17-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],0);
-
-    Position_trackWhileExecuting([position],function() {
-        var p2 = ps[2];
-        var p1 = ps[1];
-        DOM_insertBefore(ps[0],p2,ps[0].childNodes[0]);
-        DOM_insertBefore(ps[0],p1,ps[0].childNodes[0]);
-   });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode18-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode18-expected.html b/Editor/tests/dom/moveNode18-expected.html
deleted file mode 100644
index 651d030..0000000
--- a/Editor/tests/dom/moveNode18-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <p>Two</p>
-      <p>Three</p>
-      <span>Zero</span>
-      <tt/>
-      <span>One</span>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode18-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode18-input.html b/Editor/tests/dom/moveNode18-input.html
deleted file mode 100644
index ce625dd..0000000
--- a/Editor/tests/dom/moveNode18-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],1);
-
-    Position_trackWhileExecuting([position],function() {
-        var p2 = ps[2];
-        var p1 = ps[1];
-        DOM_insertBefore(ps[0],p2,ps[0].childNodes[0]);
-        DOM_insertBefore(ps[0],p1,ps[0].childNodes[0]);
-   });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode19-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode19-expected.html b/Editor/tests/dom/moveNode19-expected.html
deleted file mode 100644
index 214a26f..0000000
--- a/Editor/tests/dom/moveNode19-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <p>Two</p>
-      <p>Three</p>
-      <span>Zero</span>
-      <span>One</span>
-      <tt/>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode19-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode19-input.html b/Editor/tests/dom/moveNode19-input.html
deleted file mode 100644
index 5c1892e..0000000
--- a/Editor/tests/dom/moveNode19-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],2);
-
-    Position_trackWhileExecuting([position],function() {
-        var p2 = ps[2];
-        var p1 = ps[1];
-        DOM_insertBefore(ps[0],p2,ps[0].childNodes[0]);
-        DOM_insertBefore(ps[0],p1,ps[0].childNodes[0]);
-   });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode20-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode20-expected.html b/Editor/tests/dom/moveNode20-expected.html
deleted file mode 100644
index 755c665..0000000
--- a/Editor/tests/dom/moveNode20-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <tt/>
-      <span>One</span>
-      <span>Zero</span>
-    </p>
-    <p>Two</p>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode20-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode20-input.html b/Editor/tests/dom/moveNode20-input.html
deleted file mode 100644
index e68ea06..0000000
--- a/Editor/tests/dom/moveNode20-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],0);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(ps[0],ps[0].childNodes[1],ps[0].childNodes[0]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode21-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode21-expected.html b/Editor/tests/dom/moveNode21-expected.html
deleted file mode 100644
index f581aa7..0000000
--- a/Editor/tests/dom/moveNode21-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <span>One</span>
-      <tt/>
-      <span>Zero</span>
-    </p>
-    <p>Two</p>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode21-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode21-input.html b/Editor/tests/dom/moveNode21-input.html
deleted file mode 100644
index c5f6902..0000000
--- a/Editor/tests/dom/moveNode21-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],0);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(ps[0],ps[0].childNodes[0],null);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode22-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode22-expected.html b/Editor/tests/dom/moveNode22-expected.html
deleted file mode 100644
index 755c665..0000000
--- a/Editor/tests/dom/moveNode22-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <tt/>
-      <span>One</span>
-      <span>Zero</span>
-    </p>
-    <p>Two</p>
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode22-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode22-input.html b/Editor/tests/dom/moveNode22-input.html
deleted file mode 100644
index 5664cf1..0000000
--- a/Editor/tests/dom/moveNode22-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],1);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_insertBefore(ps[0],ps[0].childNodes[1],ps[0].childNodes[0]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>