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:47 UTC

[26/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/moveNode23-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode23-expected.html b/Editor/tests/dom/moveNode23-expected.html
deleted file mode 100644
index ada5910..0000000
--- a/Editor/tests/dom/moveNode23-expected.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <span>Two</span>
-      <span>Zero</span>
-      <tt/>
-      <span>One</span>
-    </p>
-    <p>Three</p>
-    <p>Four</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode23-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode23-input.html b/Editor/tests/dom/moveNode23-input.html
deleted file mode 100644
index 94907ad..0000000
--- a/Editor/tests/dom/moveNode23-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[2],ps[0].childNodes[0]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span><span>Two</span></p><p>Three</p><p>Four</p></body></html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/moveNode24-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/moveNode24-input.html b/Editor/tests/dom/moveNode24-input.html
deleted file mode 100644
index 3446e6c..0000000
--- a/Editor/tests/dom/moveNode24-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[2],ps[0].childNodes[1]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span><span>Two</span></p><p>Three</p><p>Four</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/nextNode01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/nextNode01-expected.html b/Editor/tests/dom/nextNode01-expected.html
deleted file mode 100644
index 2ab6dd7..0000000
--- a/Editor/tests/dom/nextNode01-expected.html
+++ /dev/null
@@ -1,25 +0,0 @@
-BODY
-n1
-n2
-n3
-n4
-n5
-n6
-n7
-n8
-n9
-n10
-n11
-n12
-n13
-n14
-n15
-n16
-n17
-n18
-n19
-n20
-n21
-n22
-n23
-n24

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/nextNode01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/nextNode01-input.html b/Editor/tests/dom/nextNode01-input.html
deleted file mode 100644
index 7a01d19..0000000
--- a/Editor/tests/dom/nextNode01-input.html
+++ /dev/null
@@ -1,63 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    removeWhitespaceAndCommentNodes(document.body);
-    var result = new Array();
-    var current = document.body;
-    while (current != null) {
-        result.push(stringForNode(current));
-        current = nextNode(current);
-    }
-    return result.join("\n");
-
-    function stringForNode(node)
-    {
-        if ((node.nodeType == Node.ELEMENT_NODE) && (node.hasAttribute("id")))
-            return node.getAttribute("id");
-        else if (node.nodeType == Node.TEXT_NODE)
-            return node.nodeValue;
-        else
-            return node.nodeName;
-    }
-}
-</script>
-</head>
-<body>
-
-  <div id="n1">
-    <p id="n2">
-      <span id="n3">n4</span>
-      <span id="n5">n6</span>
-    </p>
-    <p id="n7">
-      <span id="n8"></span>
-      <span id="n9"></span>
-    </p>
-    <p id="n10">
-      <span id="n11"></span>
-    </p>
-    <p id="n12">
-    </p>
-  </div>
-
-  <div id="n13">
-    <p id="n14">
-    </p>
-    <p id="n15">
-      <span id="n16"></span>
-    </p>
-    <p id="n17">
-      <span id="n18"></span>
-      <span id="n19"></span>
-    </p>
-    <p id="n20">
-      <span id="n21">n22</span>
-      <span id="n23">n24</span>
-    </p>
-  </div>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/nextNode02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/nextNode02-expected.html b/Editor/tests/dom/nextNode02-expected.html
deleted file mode 100644
index 209a7a6..0000000
--- a/Editor/tests/dom/nextNode02-expected.html
+++ /dev/null
@@ -1,76 +0,0 @@
-Current BODY
-Entering n1
-    Current n1
-    Entering n2
-        Current n2
-        Entering n3
-            Current n3
-            Entering n4
-                Current n4
-            Exiting n4
-        Exiting n3
-        Entering n5
-            Current n5
-            Entering n6
-                Current n6
-            Exiting n6
-        Exiting n5
-    Exiting n2
-    Entering n7
-        Current n7
-        Entering n8
-            Current n8
-        Exiting n8
-        Entering n9
-            Current n9
-        Exiting n9
-    Exiting n7
-    Entering n10
-        Current n10
-        Entering n11
-            Current n11
-        Exiting n11
-    Exiting n10
-    Entering n12
-        Current n12
-    Exiting n12
-Exiting n1
-Entering n13
-    Current n13
-    Entering n14
-        Current n14
-    Exiting n14
-    Entering n15
-        Current n15
-        Entering n16
-            Current n16
-        Exiting n16
-    Exiting n15
-    Entering n17
-        Current n17
-        Entering n18
-            Current n18
-        Exiting n18
-        Entering n19
-            Current n19
-        Exiting n19
-    Exiting n17
-    Entering n20
-        Current n20
-        Entering n21
-            Current n21
-            Entering n22
-                Current n22
-            Exiting n22
-        Exiting n21
-        Entering n23
-            Current n23
-            Entering n24
-                Current n24
-            Exiting n24
-        Exiting n23
-    Exiting n20
-Exiting n13
-Exiting BODY
-Exiting HTML
-Exiting #document

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/nextNode02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/nextNode02-input.html b/Editor/tests/dom/nextNode02-input.html
deleted file mode 100644
index 04d52a3..0000000
--- a/Editor/tests/dom/nextNode02-input.html
+++ /dev/null
@@ -1,76 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    removeWhitespaceAndCommentNodes(document.body);
-    var result = new Array();
-    var current = document.body;
-    var indent = "";
-    while (current != null) {
-        result.push(indent+"Current "+stringForNode(current));
-        current = nextNode(current,entering,exiting);
-    }
-    return result.join("\n");
-
-    function entering(node)
-    {
-        result.push(indent+"Entering "+stringForNode(node));
-        indent += "    ";
-    }
-
-    function exiting(node)
-    {
-        indent = indent.substring(0,indent.length-4);
-        result.push(indent+"Exiting "+stringForNode(node));
-    }
-
-    function stringForNode(node)
-    {
-        if ((node.nodeType == Node.ELEMENT_NODE) && (node.hasAttribute("id")))
-            return node.getAttribute("id");
-        else if (node.nodeType == Node.TEXT_NODE)
-            return node.nodeValue;
-        else
-            return node.nodeName;
-    }
-}
-</script>
-</head>
-<body>
-
-  <div id="n1">
-    <p id="n2">
-      <span id="n3">n4</span>
-      <span id="n5">n6</span>
-    </p>
-    <p id="n7">
-      <span id="n8"></span>
-      <span id="n9"></span>
-    </p>
-    <p id="n10">
-      <span id="n11"></span>
-    </p>
-    <p id="n12">
-    </p>
-  </div>
-
-  <div id="n13">
-    <p id="n14">
-    </p>
-    <p id="n15">
-      <span id="n16"></span>
-    </p>
-    <p id="n17">
-      <span id="n18"></span>
-      <span id="n19"></span>
-    </p>
-    <p id="n20">
-      <span id="n21">n22</span>
-      <span id="n23">n24</span>
-    </p>
-  </div>
-
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/removeNodeButKeepChildren1-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/removeNodeButKeepChildren1-input.html b/Editor/tests/dom/removeNodeButKeepChildren1-input.html
deleted file mode 100644
index 46f4181..0000000
--- a/Editor/tests/dom/removeNodeButKeepChildren1-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[0];
-    var positions = new Array();
-    for (var i = 0; i <= p.childNodes.length; i++)
-        positions[i] = new Position(p,i);
-
-    Position_trackWhileExecuting(positions,function() {
-        DOM_removeNodeButKeepChildren(p);
-
-        for (var i = 0; i < positions.length; i++)
-            insertTextAtPosition(positions[i],"("+i+")");
-    });
-}
-</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/removeNodeButKeepChildren2-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/removeNodeButKeepChildren2-expected.html b/Editor/tests/dom/removeNodeButKeepChildren2-expected.html
deleted file mode 100644
index ad670da..0000000
--- a/Editor/tests/dom/removeNodeButKeepChildren2-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Zero</p>
-    (0)
-    <span>One</span>
-    (1)
-    <span>Two</span>
-    (2)
-    <p>Three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/removeNodeButKeepChildren2-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/removeNodeButKeepChildren2-input.html b/Editor/tests/dom/removeNodeButKeepChildren2-input.html
deleted file mode 100644
index 4dd7ea9..0000000
--- a/Editor/tests/dom/removeNodeButKeepChildren2-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[1];
-    var positions = new Array();
-    for (var i = 0; i <= p.childNodes.length; i++)
-        positions[i] = new Position(p,i);
-
-    Position_trackWhileExecuting(positions,function() {
-        DOM_removeNodeButKeepChildren(p);
-
-        for (var i = 0; i < positions.length; i++)
-            insertTextAtPosition(positions[i],"("+i+")");
-    });
-}
-</script>
-</head>
-<body><p>Zero</p><p><span>One</span><span>Two</span></p><p>Three</p></body></html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/removeNodeButKeepChildren3-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/removeNodeButKeepChildren3-input.html b/Editor/tests/dom/removeNodeButKeepChildren3-input.html
deleted file mode 100644
index d63c2b8..0000000
--- a/Editor/tests/dom/removeNodeButKeepChildren3-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[2];
-    var positions = new Array();
-    for (var i = 0; i <= p.childNodes.length; i++)
-        positions[i] = new Position(p,i);
-
-    Position_trackWhileExecuting(positions,function() {
-        DOM_removeNodeButKeepChildren(p);
-
-        for (var i = 0; i < positions.length; i++)
-            insertTextAtPosition(positions[i],"("+i+")");
-    });
-}
-</script>
-</head>
-<body><p>Zero</p><p>One</p><p><span>Two</span><span>Three</span></p></body></html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/removeNodeButKeepChildren4-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/removeNodeButKeepChildren4-input.html b/Editor/tests/dom/removeNodeButKeepChildren4-input.html
deleted file mode 100644
index c8d2853..0000000
--- a/Editor/tests/dom/removeNodeButKeepChildren4-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var positions = new Array();
-    for (var i = 0; i <= document.body.childNodes.length; i++)
-        positions[i] = new Position(document.body,i);
-    var p = document.getElementsByTagName("P")[0];
-
-    Position_trackWhileExecuting(positions,function() {
-        DOM_removeNodeButKeepChildren(p);
-
-        for (var i = 0; i < positions.length; i++)
-            insertTextAtPosition(positions[i],"("+i+")");
-    });
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>
\ No newline at end of file

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/removeNodeButKeepChildren5-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/removeNodeButKeepChildren5-input.html b/Editor/tests/dom/removeNodeButKeepChildren5-input.html
deleted file mode 100644
index 298c04f..0000000
--- a/Editor/tests/dom/removeNodeButKeepChildren5-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var positions = new Array();
-    for (var i = 0; i <= document.body.childNodes.length; i++)
-        positions[i] = new Position(document.body,i);
-    var p = document.getElementsByTagName("P")[1];
-
-    Position_trackWhileExecuting(positions,function() {
-        DOM_removeNodeButKeepChildren(p);
-
-        for (var i = 0; i < positions.length; i++)
-            insertTextAtPosition(positions[i],"("+i+")");
-    });
-}
-</script>
-</head>
-<body><p>Zero</p><p><span>One</span><span>Two</span></p><p>Three</p></body></html>
\ No newline at end of file

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/removeNodeButKeepChildren6-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/removeNodeButKeepChildren6-input.html b/Editor/tests/dom/removeNodeButKeepChildren6-input.html
deleted file mode 100644
index 5c9c95f..0000000
--- a/Editor/tests/dom/removeNodeButKeepChildren6-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var positions = new Array();
-    for (var i = 0; i <= document.body.childNodes.length; i++)
-        positions[i] = new Position(document.body,i);
-    var p = document.getElementsByTagName("P")[2];
-
-    Position_trackWhileExecuting(positions,function() {
-        DOM_removeNodeButKeepChildren(p);
-
-        for (var i = 0; i < positions.length; i++)
-            insertTextAtPosition(positions[i],"("+i+")");
-    });
-}
-</script>
-</head>
-<body><p>Zero</p><p>One</p><p><span>Two</span><span>Three</span></p></body></html>
\ No newline at end of file

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

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

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement02-input.html b/Editor/tests/dom/replaceElement02-input.html
deleted file mode 100644
index 075be26..0000000
--- a/Editor/tests/dom/replaceElement02-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[2];
-    DOM_replaceElement(p,"DIV");
-}
-</script>
-</head>
-<body>
-
-<p>One</p>
-<p>Two</p>
-<p>Three</p>
-<p>Four</p>
-<p>Five</p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement03-expected.html b/Editor/tests/dom/replaceElement03-expected.html
deleted file mode 100644
index 560309a..0000000
--- a/Editor/tests/dom/replaceElement03-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>One</p>
-    <p>Two</p>
-    <div align="center" style="color: red">
-      Three
-    </div>
-    <p>Four</p>
-    <p>Five</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement03-input.html b/Editor/tests/dom/replaceElement03-input.html
deleted file mode 100644
index e10bdf9..0000000
--- a/Editor/tests/dom/replaceElement03-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[2];
-    DOM_replaceElement(p,"DIV");
-}
-</script>
-</head>
-<body>
-
-<p>One</p>
-<p>Two</p>
-<p align="center" style="color: red">Three</p>
-<p>Four</p>
-<p>Five</p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement04-expected.html b/Editor/tests/dom/replaceElement04-expected.html
deleted file mode 100644
index 11aea06..0000000
--- a/Editor/tests/dom/replaceElement04-expected.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>One</p>
-    <p>Two</p>
-    <div>
-      Three
-      <br/>
-      Four
-      <br/>
-      Five
-    </div>
-    <p>Six</p>
-    <p>Seven</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement04-input.html b/Editor/tests/dom/replaceElement04-input.html
deleted file mode 100644
index 3b980f7..0000000
--- a/Editor/tests/dom/replaceElement04-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[2];
-    DOM_replaceElement(p,"DIV");
-}
-</script>
-</head>
-<body>
-
-<p>One</p>
-<p>Two</p>
-<p>Three<br>Four<br>Five</p>
-<p>Six</p>
-<p>Seven</p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement05-expected.html b/Editor/tests/dom/replaceElement05-expected.html
deleted file mode 100644
index bb0e745..0000000
--- a/Editor/tests/dom/replaceElement05-expected.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>One</p>
-    <p>Two</p>
-    <div>
-      Three
-      <br/>
-      <b>
-        <u>Four</u>
-        <br/>
-        <i>Five</i>
-      </b>
-    </div>
-    <p>Six</p>
-    <p>Seven</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement05-input.html b/Editor/tests/dom/replaceElement05-input.html
deleted file mode 100644
index 30d494a..0000000
--- a/Editor/tests/dom/replaceElement05-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[2];
-    DOM_replaceElement(p,"DIV");
-}
-</script>
-</head>
-<body>
-
-<p>One</p>
-<p>Two</p>
-<p>Three<br><b><u>Four</u><br><i>Five</i></b></p>
-<p>Six</p>
-<p>Seven</p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement06-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement06-expected.html b/Editor/tests/dom/replaceElement06-expected.html
deleted file mode 100644
index 362f32d..0000000
--- a/Editor/tests/dom/replaceElement06-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>One</p>
-    <p>Two</p>
-    <div>
-      Sam[ple te]xt
-    </div>
-    <p>Six</p>
-    <p>Seven</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement06-input.html b/Editor/tests/dom/replaceElement06-input.html
deleted file mode 100644
index a8aa329..0000000
--- a/Editor/tests/dom/replaceElement06-input.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[2];
-    Selection_set(p.firstChild,3,p.firstChild,9);
-    DOM_replaceElement(p,"DIV");
-    showSelection();
-}
-</script>
-</head>
-<body>
-
-<p>One</p>
-<p>Two</p>
-<p>Sample text</p>
-<p>Six</p>
-<p>Seven</p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement07-expected.html b/Editor/tests/dom/replaceElement07-expected.html
deleted file mode 100644
index ef72dcb..0000000
--- a/Editor/tests/dom/replaceElement07-expected.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>One</p>
-    <p>Two</p>
-    [
-    <div>
-      Sample text
-    </div>
-    ]
-    <p>Six</p>
-    <p>Seven</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement07-input.html b/Editor/tests/dom/replaceElement07-input.html
deleted file mode 100644
index 68d035e..0000000
--- a/Editor/tests/dom/replaceElement07-input.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[2];
-    var offset = DOM_nodeOffset(p);
-    Selection_set(document.body,offset,document.body,offset+1);
-    DOM_replaceElement(p,"DIV");
-    showSelection();
-}
-</script>
-</head>
-<body>
-
-<p>One</p>
-<p>Two</p>
-<p>Sample text</p>
-<p>Six</p>
-<p>Seven</p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement08-expected.html b/Editor/tests/dom/replaceElement08-expected.html
deleted file mode 100644
index 377cfda..0000000
--- a/Editor/tests/dom/replaceElement08-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>One</p>
-    <p>Two</p>
-    <div>
-      [Sample text]
-    </div>
-    <p>Six</p>
-    <p>Seven</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement08-input.html b/Editor/tests/dom/replaceElement08-input.html
deleted file mode 100644
index 90560bf..0000000
--- a/Editor/tests/dom/replaceElement08-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[2];
-    var range = new Range(p,0,p,1);
-    Range_trackWhileExecuting(range,function() {
-        DOM_replaceElement(p,"DIV");
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-<p>One</p>
-<p>Two</p>
-<p>Sample text</p>
-<p>Six</p>
-<p>Seven</p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement09-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement09-expected.html b/Editor/tests/dom/replaceElement09-expected.html
deleted file mode 100644
index 6c27a53..0000000
--- a/Editor/tests/dom/replaceElement09-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>One</p>
-    <p>Two</p>
-    <div>
-      A
-      <br/>
-      [B
-      <br/>
-      C
-      <br/>
-      D]
-      <br/>
-      E
-    </div>
-    <p>Six</p>
-    <p>Seven</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement09-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement09-input.html b/Editor/tests/dom/replaceElement09-input.html
deleted file mode 100644
index 0e46abf..0000000
--- a/Editor/tests/dom/replaceElement09-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[2];
-    var range = new Range(p,2,p,7);
-    Range_trackWhileExecuting(range,function() {
-        DOM_replaceElement(p,"DIV");
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-<p>One</p>
-<p>Two</p>
-<p>A<br>B<br>C<br>D<br>E</p>
-<p>Six</p>
-<p>Seven</p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement10-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement10-expected.html b/Editor/tests/dom/replaceElement10-expected.html
deleted file mode 100644
index 34c2a40..0000000
--- a/Editor/tests/dom/replaceElement10-expected.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>One</p>
-    <p>Two</p>
-    [
-    <div>
-      A
-      <br/>
-      B
-      <br/>
-      C
-      <br/>
-      D
-      <br/>
-      E
-    </div>
-    ]
-    <p>Six</p>
-    <p>Seven</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/replaceElement10-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/replaceElement10-input.html b/Editor/tests/dom/replaceElement10-input.html
deleted file mode 100644
index 0113327..0000000
--- a/Editor/tests/dom/replaceElement10-input.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = document.getElementsByTagName("P")[2];
-    var offset = DOM_nodeOffset(p);
-    var range = new Range(document.body,offset,document.body,offset+1);
-    Range_trackWhileExecuting(range,function() {
-        DOM_replaceElement(p,"DIV");
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-
-<p>One</p>
-<p>Two</p>
-<p>A<br>B<br>C<br>D<br>E</p>
-<p>Six</p>
-<p>Seven</p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-endnote01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-endnote01-expected.html b/Editor/tests/dom/splitAroundSelection-endnote01-expected.html
deleted file mode 100644
index 648d67e..0000000
--- a/Editor/tests/dom/splitAroundSelection-endnote01-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      one
-      <span class="endnote">[two] three four</span>
-      five
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-endnote01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-endnote01-input.html b/Editor/tests/dom/splitAroundSelection-endnote01-input.html
deleted file mode 100644
index 394273a..0000000
--- a/Editor/tests/dom/splitAroundSelection-endnote01-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var range = Selection_get();
-    Range_trackWhileExecuting(range,function() {
-        Formatting_splitAroundSelection(range);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-  <p>one <span class="endnote">[two] three four</span> five</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-endnote02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-endnote02-expected.html b/Editor/tests/dom/splitAroundSelection-endnote02-expected.html
deleted file mode 100644
index e722f31..0000000
--- a/Editor/tests/dom/splitAroundSelection-endnote02-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      one
-      <span class="endnote">two [three] four</span>
-      five
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-endnote02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-endnote02-input.html b/Editor/tests/dom/splitAroundSelection-endnote02-input.html
deleted file mode 100644
index bf3250d..0000000
--- a/Editor/tests/dom/splitAroundSelection-endnote02-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var range = Selection_get();
-    Range_trackWhileExecuting(range,function() {
-        Formatting_splitAroundSelection(range);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-  <p>one <span class="endnote">two [three] four</span> five</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-endnote03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-endnote03-expected.html b/Editor/tests/dom/splitAroundSelection-endnote03-expected.html
deleted file mode 100644
index f3ac04e..0000000
--- a/Editor/tests/dom/splitAroundSelection-endnote03-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      one
-      <span class="endnote">two three [four]</span>
-      five
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-endnote03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-endnote03-input.html b/Editor/tests/dom/splitAroundSelection-endnote03-input.html
deleted file mode 100644
index ed7cb29..0000000
--- a/Editor/tests/dom/splitAroundSelection-endnote03-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var range = Selection_get();
-    Range_trackWhileExecuting(range,function() {
-        Formatting_splitAroundSelection(range);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-  <p>one <span class="endnote">two three [four]</span> five</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-footnote01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-footnote01-expected.html b/Editor/tests/dom/splitAroundSelection-footnote01-expected.html
deleted file mode 100644
index 5245a0c..0000000
--- a/Editor/tests/dom/splitAroundSelection-footnote01-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      one
-      <span class="footnote">[two] three four</span>
-      five
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-footnote01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-footnote01-input.html b/Editor/tests/dom/splitAroundSelection-footnote01-input.html
deleted file mode 100644
index 256fdc7..0000000
--- a/Editor/tests/dom/splitAroundSelection-footnote01-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var range = Selection_get();
-    Range_trackWhileExecuting(range,function() {
-        Formatting_splitAroundSelection(range);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-  <p>one <span class="footnote">[two] three four</span> five</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-footnote02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-footnote02-expected.html b/Editor/tests/dom/splitAroundSelection-footnote02-expected.html
deleted file mode 100644
index fce0569..0000000
--- a/Editor/tests/dom/splitAroundSelection-footnote02-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      one
-      <span class="footnote">two [three] four</span>
-      five
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-footnote02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-footnote02-input.html b/Editor/tests/dom/splitAroundSelection-footnote02-input.html
deleted file mode 100644
index 737c18d..0000000
--- a/Editor/tests/dom/splitAroundSelection-footnote02-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var range = Selection_get();
-    Range_trackWhileExecuting(range,function() {
-        Formatting_splitAroundSelection(range);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-  <p>one <span class="footnote">two [three] four</span> five</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-footnote03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-footnote03-expected.html b/Editor/tests/dom/splitAroundSelection-footnote03-expected.html
deleted file mode 100644
index 772d336..0000000
--- a/Editor/tests/dom/splitAroundSelection-footnote03-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      one
-      <span class="footnote">two three [four]</span>
-      five
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-footnote03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-footnote03-input.html b/Editor/tests/dom/splitAroundSelection-footnote03-input.html
deleted file mode 100644
index 7dd0542..0000000
--- a/Editor/tests/dom/splitAroundSelection-footnote03-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var range = Selection_get();
-    Range_trackWhileExecuting(range,function() {
-        Formatting_splitAroundSelection(range);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-  <p>one <span class="footnote">two three [four]</span> five</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested01-expected.html b/Editor/tests/dom/splitAroundSelection-nested01-expected.html
deleted file mode 100644
index 9861c31..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested01-expected.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>
-        Two
-        <u>Thr</u>
-      </b>
-      <b><u>[]</u></b>
-      <b>
-        <u>ee</u>
-        Four
-      </b>
-      Five
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested01-input.html b/Editor/tests/dom/splitAroundSelection-nested01-input.html
deleted file mode 100644
index 1e79e0e..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested01-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(u.firstChild,3,u.firstChild,3);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two <u>Three</u> Four</b> Five</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested02-expected.html b/Editor/tests/dom/splitAroundSelection-nested02-expected.html
deleted file mode 100644
index 588be88..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested02-expected.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b><u>T</u></b>
-      <b><u>[]</u></b>
-      <b>
-        <u>wo</u>
-        Three Four
-      </b>
-      Five
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested02-input.html b/Editor/tests/dom/splitAroundSelection-nested02-input.html
deleted file mode 100644
index 9e1c9d2..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested02-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(u.firstChild,1,u.firstChild,1);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b><u>Two</u> Three Four</b> Five</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested03-expected.html b/Editor/tests/dom/splitAroundSelection-nested03-expected.html
deleted file mode 100644
index 34ebb6e..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested03-expected.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>
-        Two Three
-        <u>Fo</u>
-      </b>
-      <b><u>[]</u></b>
-      <b><u>ur</u></b>
-      Five
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested03-input.html b/Editor/tests/dom/splitAroundSelection-nested03-input.html
deleted file mode 100644
index 67dbe53..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested03-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(u.firstChild,2,u.firstChild,2);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two Three <u>Four</u></b> Five</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested04-expected.html b/Editor/tests/dom/splitAroundSelection-nested04-expected.html
deleted file mode 100644
index 2ce8c68..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested04-expected.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>
-        Two
-        <u>
-          Three
-          <br/>
-        </u>
-      </b>
-      <b><u>[]</u></b>
-      <b>
-        <u>
-          Four
-          <br/>
-          Five
-        </u>
-        Six
-      </b>
-      Seven
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested04-input.html b/Editor/tests/dom/splitAroundSelection-nested04-input.html
deleted file mode 100644
index 9d72929..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested04-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(u,2,u,2);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two <u>Three<br>Four<br>Five</u> Six</b> Seven</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested05-expected.html b/Editor/tests/dom/splitAroundSelection-nested05-expected.html
deleted file mode 100644
index 30e33ac..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested05-expected.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>Two</b>
-      <b><u>[]</u></b>
-      <b>
-        <u>
-          Three
-          <br/>
-          Four
-          <br/>
-          Five
-        </u>
-        Six
-      </b>
-      Seven
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested05-input.html b/Editor/tests/dom/splitAroundSelection-nested05-input.html
deleted file mode 100644
index 668288a..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested05-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(u,0,u,0);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two <u>Three<br>Four<br>Five</u> Six</b> Seven</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested06-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested06-expected.html b/Editor/tests/dom/splitAroundSelection-nested06-expected.html
deleted file mode 100644
index 20aba8c..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested06-expected.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>
-        Two
-        <u>
-          Three
-          <br/>
-          Four
-          <br/>
-          Five
-        </u>
-      </b>
-      <b><u>[]</u></b>
-      <b>Six</b>
-      Seven
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested06-input.html b/Editor/tests/dom/splitAroundSelection-nested06-input.html
deleted file mode 100644
index 7b0b3d2..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested06-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(u,5,u,5);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two <u>Three<br>Four<br>Five</u> Six</b> Seven</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested07-expected.html b/Editor/tests/dom/splitAroundSelection-nested07-expected.html
deleted file mode 100644
index bee2071..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested07-expected.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>
-        Two
-        <u>
-          Three
-          <br/>
-        </u>
-      </b>
-      <b>
-        <u>
-          [Four
-          <br/>
-          ]
-        </u>
-      </b>
-      <b>
-        <u>
-          Five
-          <br/>
-        </u>
-        Six
-      </b>
-      Seven
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested07-input.html b/Editor/tests/dom/splitAroundSelection-nested07-input.html
deleted file mode 100644
index 3696e5c..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested07-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(u,2,u,4);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two <u>Three<br>Four<br>Five<br></u> Six</b> Seven</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested08-expected.html b/Editor/tests/dom/splitAroundSelection-nested08-expected.html
deleted file mode 100644
index d60fec1..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested08-expected.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>Two</b>
-      <b>
-        <u>
-          [Three
-          <br/>
-          ]
-        </u>
-      </b>
-      <b>
-        <u>
-          Four
-          <br/>
-          Five
-          <br/>
-        </u>
-        Six
-      </b>
-      Seven
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested08-input.html b/Editor/tests/dom/splitAroundSelection-nested08-input.html
deleted file mode 100644
index 941b295..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested08-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(u,0,u,2);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two <u>Three<br>Four<br>Five<br></u> Six</b> Seven</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested09-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested09-expected.html b/Editor/tests/dom/splitAroundSelection-nested09-expected.html
deleted file mode 100644
index 044db5e..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested09-expected.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>
-        Two
-        <u>
-          Three
-          <br/>
-          Four
-          <br/>
-        </u>
-      </b>
-      <b>
-        <u>
-          [Five
-          <br/>
-          ]
-        </u>
-      </b>
-      <b>Six</b>
-      Seven
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested09-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested09-input.html b/Editor/tests/dom/splitAroundSelection-nested09-input.html
deleted file mode 100644
index e0f04d9..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested09-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(u,4,u,6);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two <u>Three<br>Four<br>Five<br></u> Six</b> Seven</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested10-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested10-expected.html b/Editor/tests/dom/splitAroundSelection-nested10-expected.html
deleted file mode 100644
index 9b485e2..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested10-expected.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>
-        Two
-        <u>Three</u>
-      </b>
-      <b>
-        <u>
-          [
-          <br/>
-          Four
-          <br/>
-          ]
-        </u>
-      </b>
-      <b>
-        <u>Five</u>
-        Six
-      </b>
-      Seven
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested10-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested10-input.html b/Editor/tests/dom/splitAroundSelection-nested10-input.html
deleted file mode 100644
index 4a37f40..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested10-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(u,1,u,4);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two <u>Three<br>Four<br>Five</u> Six</b> Seven</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested11-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested11-expected.html b/Editor/tests/dom/splitAroundSelection-nested11-expected.html
deleted file mode 100644
index 6b492b2..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested11-expected.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>Two</b>
-      <b>
-        <u>
-          [Three
-          <br/>
-          Four
-          <br/>
-          ]
-        </u>
-      </b>
-      <b>
-        <u>Five</u>
-        Six
-      </b>
-      Seven
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested11-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested11-input.html b/Editor/tests/dom/splitAroundSelection-nested11-input.html
deleted file mode 100644
index d101094..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested11-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(u,0,u,4);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two <u>Three<br>Four<br>Five</u> Six</b> Seven</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested12-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested12-expected.html b/Editor/tests/dom/splitAroundSelection-nested12-expected.html
deleted file mode 100644
index f7e5904..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested12-expected.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>
-        Two
-        <u>Three</u>
-      </b>
-      <b>
-        <u>
-          [
-          <br/>
-          Four
-          <br/>
-          Five]
-        </u>
-      </b>
-      <b>Six</b>
-      Seven
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested12-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested12-input.html b/Editor/tests/dom/splitAroundSelection-nested12-input.html
deleted file mode 100644
index f95d420..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested12-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(u,1,u,5);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two <u>Three<br>Four<br>Five</u> Six</b> Seven</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested13-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested13-expected.html b/Editor/tests/dom/splitAroundSelection-nested13-expected.html
deleted file mode 100644
index cded002..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested13-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>Two</b>
-      <b>
-        <u>
-          [Three
-          <br/>
-          Four
-          <br/>
-          Five]
-        </u>
-      </b>
-      <b>Six</b>
-      Seven
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested13-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested13-input.html b/Editor/tests/dom/splitAroundSelection-nested13-input.html
deleted file mode 100644
index 4f655fb..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested13-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(u,0,u,5);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two <u>Three<br>Four<br>Five</u> Six</b> Seven</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested14-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested14-expected.html b/Editor/tests/dom/splitAroundSelection-nested14-expected.html
deleted file mode 100644
index 29b775a..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested14-expected.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <span style="color: red">
-        Two
-        <a href="#">Thr</a>
-      </span>
-      <span style="color: red"><a href="#">[]</a></span>
-      <span style="color: red">
-        <a href="#">ee</a>
-        Four
-      </span>
-      Five
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested14-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested14-input.html b/Editor/tests/dom/splitAroundSelection-nested14-input.html
deleted file mode 100644
index c80eee6..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested14-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var a = document.getElementsByTagName("A")[0];
-    var range = new Range(a.firstChild,3,a.firstChild,3);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <span style="color: red">Two <a href="#">Three</a> Four</span> Five</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested15-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested15-expected.html b/Editor/tests/dom/splitAroundSelection-nested15-expected.html
deleted file mode 100644
index 12f3656..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested15-expected.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <span style="color: red">
-        Two
-        <a href="#">
-          Three
-          <br/>
-        </a>
-      </span>
-      <span style="color: red"><a href="#" id="testlink">[Four]</a></span>
-      <span style="color: red">
-        <a href="#">
-          <br/>
-          Five
-        </a>
-        Six
-      </span>
-      Seven
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested15-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested15-input.html b/Editor/tests/dom/splitAroundSelection-nested15-input.html
deleted file mode 100644
index ee62a5f..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested15-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var a = document.getElementsByTagName("A")[0];
-    var range = new Range(a,2,a,3);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <span style="color: red">Two <a href="#" id="testlink">Three<br>Four<br>Five</a> Six</span> Seven</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested16-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested16-expected.html b/Editor/tests/dom/splitAroundSelection-nested16-expected.html
deleted file mode 100644
index aa5b470..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested16-expected.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <span style="color: red">Two</span>
-      <span style="color: red">
-        <a href="#" id="testlink">
-          [Three
-          <br/>
-          ]
-        </a>
-      </span>
-      <span style="color: red">
-        <a href="#">
-          Four
-          <br/>
-          Five
-        </a>
-        Six
-      </span>
-      Seven
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested16-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested16-input.html b/Editor/tests/dom/splitAroundSelection-nested16-input.html
deleted file mode 100644
index 2c7c3e6..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested16-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var a = document.getElementsByTagName("A")[0];
-    var range = new Range(a,0,a,2);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <span style="color: red">Two <a href="#" id="testlink">Three<br>Four<br>Five</a> Six</span> Seven</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested17-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested17-expected.html b/Editor/tests/dom/splitAroundSelection-nested17-expected.html
deleted file mode 100644
index 549f5f2..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested17-expected.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <span style="color: red">
-        Two
-        <a href="#">
-          Three
-          <br/>
-          Four
-        </a>
-      </span>
-      <span style="color: red">
-        <a href="#" id="testlink">
-          [
-          <br/>
-          Five]
-        </a>
-      </span>
-      <span style="color: red">Six</span>
-      Seven
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested17-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested17-input.html b/Editor/tests/dom/splitAroundSelection-nested17-input.html
deleted file mode 100644
index ea75034..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested17-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var a = document.getElementsByTagName("A")[0];
-    var range = new Range(a,3,a,5);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <span style="color: red">Two <a href="#" id="testlink">Three<br>Four<br>Five</a> Six</span> Seven</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested18-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested18-expected.html b/Editor/tests/dom/splitAroundSelection-nested18-expected.html
deleted file mode 100644
index 49e722f..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested18-expected.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>
-        Two
-        <u>
-          Three
-          <i>Fo</i>
-        </u>
-      </b>
-      <b>
-        <u>
-          <i>
-            [ur
-            <br/>
-            Five
-          </i>
-          S]
-        </u>
-      </b>
-      <b>
-        <u>ix</u>
-        Seven
-      </b>
-      Eight
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested18-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested18-input.html b/Editor/tests/dom/splitAroundSelection-nested18-input.html
deleted file mode 100644
index 70d1544..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested18-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var i = document.getElementsByTagName("I")[0];
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(i.firstChild,2,u.lastChild,2);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two <u>Three <i>Four<br>Five</i> Six</u> Seven</b> Eight</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested19-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested19-expected.html b/Editor/tests/dom/splitAroundSelection-nested19-expected.html
deleted file mode 100644
index f8e10c2..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested19-expected.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>
-        Two
-        <u>Thr</u>
-      </b>
-      <b>
-        <u>
-          [ee
-          <i>
-            Four
-            <br/>
-            Fi]
-          </i>
-        </u>
-      </b>
-      <b>
-        <u>
-          <i>ve</i>
-          Six
-        </u>
-        Seven
-      </b>
-      Eight
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested19-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested19-input.html b/Editor/tests/dom/splitAroundSelection-nested19-input.html
deleted file mode 100644
index 8c00da8..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested19-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var i = document.getElementsByTagName("I")[0];
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(u.firstChild,3,i.lastChild,2);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two <u>Three <i>Four<br>Five</i> Six</u> Seven</b> Eight</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested20-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested20-expected.html b/Editor/tests/dom/splitAroundSelection-nested20-expected.html
deleted file mode 100644
index 72260c1..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested20-expected.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>
-        Two
-        <u>Three</u>
-      </b>
-      <b>
-        <u>
-          [
-          <br/>
-          Four
-          <i>
-            Five
-            <br/>
-            Six]
-          </i>
-        </u>
-      </b>
-      <b>
-        <u>
-          <i>
-            <br/>
-            Seven
-          </i>
-          Eight
-          <br/>
-          Nine
-        </u>
-        Ten
-      </b>
-      Eleven
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested20-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested20-input.html b/Editor/tests/dom/splitAroundSelection-nested20-input.html
deleted file mode 100644
index 8691274..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested20-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var i = document.getElementsByTagName("I")[0];
-    var u = document.getElementsByTagName("U")[0];
-    var range = new Range(u,1,i,3);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two <u>Three<br>Four <i>Five<br>Six<br>Seven</i> Eight<br>Nine</u> Ten</b> Eleven</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection-nested21-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection-nested21-expected.html b/Editor/tests/dom/splitAroundSelection-nested21-expected.html
deleted file mode 100644
index a34e2a5..0000000
--- a/Editor/tests/dom/splitAroundSelection-nested21-expected.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>
-        Two
-        <u>
-          Three
-          <br/>
-          Four
-          <i>
-            Five
-            <br/>
-          </i>
-        </u>
-      </b>
-      <b>
-        <u>
-          <i>
-            [Six
-            <br/>
-            Seven
-          </i>
-          Eight]
-        </u>
-      </b>
-      <b>
-        <u>
-          <br/>
-          Nine
-        </u>
-        Ten
-      </b>
-      Eleven
-    </p>
-  </body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection01-expected.html b/Editor/tests/dom/splitAroundSelection01-expected.html
deleted file mode 100644
index 165e68c..0000000
--- a/Editor/tests/dom/splitAroundSelection01-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>Two</b>
-      <b>[Three]</b>
-      <b>Four</b>
-      Five
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection01-input.html b/Editor/tests/dom/splitAroundSelection01-input.html
deleted file mode 100644
index 8171d29..0000000
--- a/Editor/tests/dom/splitAroundSelection01-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var b = document.getElementsByTagName("B")[0];
-    var range = new Range(b.firstChild,4,b.firstChild,9);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two Three Four</b> Five</p></body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection02-input.html b/Editor/tests/dom/splitAroundSelection02-input.html
deleted file mode 100644
index 9c3af1d..0000000
--- a/Editor/tests/dom/splitAroundSelection02-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var b = document.getElementsByTagName("B")[0];
-    var range = new Range(b.firstChild,0,b.firstChild,9);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two Three Four</b> Five</p></body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection03-input.html b/Editor/tests/dom/splitAroundSelection03-input.html
deleted file mode 100644
index ccd8543..0000000
--- a/Editor/tests/dom/splitAroundSelection03-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var b = document.getElementsByTagName("B")[0];
-    var range = new Range(b.firstChild,4,b.firstChild,14);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two Three Four</b> Five</p></body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection04-input.html b/Editor/tests/dom/splitAroundSelection04-input.html
deleted file mode 100644
index d7bff68..0000000
--- a/Editor/tests/dom/splitAroundSelection04-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var b = document.getElementsByTagName("B")[0];
-    var range = new Range(b.firstChild,0,b.firstChild,14);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two Three Four</b> Five</p></body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection05-input.html b/Editor/tests/dom/splitAroundSelection05-input.html
deleted file mode 100644
index 751c2b3..0000000
--- a/Editor/tests/dom/splitAroundSelection05-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var b = document.getElementsByTagName("B")[0];
-    var range = new Range(b.firstChild,0,b.firstChild,0);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two Three Four</b> Five</p></body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection06-input.html b/Editor/tests/dom/splitAroundSelection06-input.html
deleted file mode 100644
index 3691170..0000000
--- a/Editor/tests/dom/splitAroundSelection06-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var b = document.getElementsByTagName("B")[0];
-    var range = new Range(b.firstChild,4,b.firstChild,4);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two Three Four</b> Five</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection07-expected.html b/Editor/tests/dom/splitAroundSelection07-expected.html
deleted file mode 100644
index 3321d81..0000000
--- a/Editor/tests/dom/splitAroundSelection07-expected.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>Two Three Four</b>
-      <b>[]</b>
-      Five
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection07-input.html b/Editor/tests/dom/splitAroundSelection07-input.html
deleted file mode 100644
index 32a4b62..0000000
--- a/Editor/tests/dom/splitAroundSelection07-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var b = document.getElementsByTagName("B")[0];
-    var range = new Range(b.firstChild,14,b.firstChild,14);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two Three Four</b> Five</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection08-expected.html b/Editor/tests/dom/splitAroundSelection08-expected.html
deleted file mode 100644
index 9b00e16..0000000
--- a/Editor/tests/dom/splitAroundSelection08-expected.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>Two</b>
-      <b>[Three Four</b>
-      Five
-      <b>Six Seven]</b>
-      <b>Eight</b>
-      Nine
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection08-input.html b/Editor/tests/dom/splitAroundSelection08-input.html
deleted file mode 100644
index ef9f400..0000000
--- a/Editor/tests/dom/splitAroundSelection08-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var b1 = document.getElementsByTagName("B")[0];
-    var b2 = document.getElementsByTagName("B")[1];
-    var range = new Range(b1.firstChild,4,b2.firstChild,9);
-    Formatting_splitAroundSelection(range);
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body><p>One <b>Two Three Four</b> Five <b>Six Seven Eight</b> Nine</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/splitAroundSelection09-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/splitAroundSelection09-expected.html b/Editor/tests/dom/splitAroundSelection09-expected.html
deleted file mode 100644
index de2bad9..0000000
--- a/Editor/tests/dom/splitAroundSelection09-expected.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      One
-      <b>[Two Three Four</b>
-      Five
-      <b>Six Seven]</b>
-      <b>Eight</b>
-      Nine
-    </p>
-  </body>
-</html>