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/05 22:06:21 UTC

[03/57] [partial] incubator-corinthia git commit: first cleanup of sources not to be released

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/next06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/next06-input.html b/Editor/tests/scan/next06-input.html
deleted file mode 100644
index 272c2c9..0000000
--- a/Editor/tests/scan/next06-input.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="ScanTests.js"></script>
-<script>
-function performTest()
-{
-    return testNext();
-}
-</script>
-</head>
-<body>
-
-Before
-
-<figure>
-  <img src="../figures/nothing.png">
-  <figcaption>Figure caption</figcaption>
-</figure>
-
-After
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/next07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/next07-expected.html b/Editor/tests/scan/next07-expected.html
deleted file mode 100644
index 0df7a06..0000000
--- a/Editor/tests/scan/next07-expected.html
+++ /dev/null
@@ -1,4 +0,0 @@
-0 (item1): "Section 1"
-1: "Content 1"
-2 (item2): "Section 2"
-3: "Content 2"

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/next07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/next07-input.html b/Editor/tests/scan/next07-input.html
deleted file mode 100644
index 26dd1c6..0000000
--- a/Editor/tests/scan/next07-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="ScanTests.js"></script>
-<script>
-function performTest()
-{
-    return testNext();
-}
-</script>
-</head>
-<body>
-<h1 id="item1">Section 1</h1>
-<p>Content 1</p>
-<h1 id="item2">Section 2</h1>
-<p>Content 2</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/replaceMatch01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/replaceMatch01-expected.html b/Editor/tests/scan/replaceMatch01-expected.html
deleted file mode 100644
index a058d93..0000000
--- a/Editor/tests/scan/replaceMatch01-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <p>FIRST quick brown</p>
-    <p>fox SECOND over</p>
-    <p>the lazy THIRD</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/replaceMatch01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/replaceMatch01-input.html b/Editor/tests/scan/replaceMatch01-input.html
deleted file mode 100644
index a7543fc..0000000
--- a/Editor/tests/scan/replaceMatch01-input.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script src="ScanTests.js"></script>
-<script>
-function performTest()
-{
-    Scan_reset();
-    Scan_next();
-    var id1 = Scan_addMatch(0,3);
-    Scan_showMatch(id1);
-    Scan_next();
-    var id2 = Scan_addMatch(4,9);
-    Scan_showMatch(id2);
-    Scan_next();
-    var id3 = Scan_addMatch(9,12);
-    Scan_showMatch(id3);
-
-    Scan_replaceMatch(id1,"FIRST");
-    Scan_replaceMatch(id2,"SECOND");
-    Scan_replaceMatch(id3,"THIRD");
-}
-</script>
-</head>
-<body>
-<p>The quick brown</p>
-<p>fox jumps over</p>
-<p>the lazy dog</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/replaceMatch02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/replaceMatch02-expected.html b/Editor/tests/scan/replaceMatch02-expected.html
deleted file mode 100644
index 20c6760..0000000
--- a/Editor/tests/scan/replaceMatch02-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <p>FIRST quick SECOND</p>
-    <p>THIRD jumps FOURTH</p>
-    <p>FIFTH lazy SIXTH</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/replaceMatch02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/replaceMatch02-input.html b/Editor/tests/scan/replaceMatch02-input.html
deleted file mode 100644
index 46f4412..0000000
--- a/Editor/tests/scan/replaceMatch02-input.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script src="ScanTests.js"></script>
-<script>
-function performTest()
-{
-    Scan_reset();
-    Scan_next();
-    var id1 = Scan_addMatch(0,3);
-    var id2 = Scan_addMatch(10,15);
-    Scan_showMatch(id1);
-    Scan_showMatch(id2);
-
-    Scan_next();
-    var id3 = Scan_addMatch(0,3);
-    var id4 = Scan_addMatch(10,14);
-    Scan_showMatch(id3);
-    Scan_showMatch(id4);
-
-    Scan_next();
-    var id5 = Scan_addMatch(0,3);
-    var id6 = Scan_addMatch(9,12);
-    Scan_showMatch(id5);
-    Scan_showMatch(id6);
-
-    Scan_replaceMatch(id1,"FIRST");
-    Scan_replaceMatch(id2,"SECOND");
-    Scan_replaceMatch(id3,"THIRD");
-    Scan_replaceMatch(id4,"FOURTH");
-    Scan_replaceMatch(id5,"FIFTH");
-    Scan_replaceMatch(id6,"SIXTH");
-}
-</script>
-</head>
-<body>
-<p>The quick brown</p>
-<p>fox jumps over</p>
-<p>the lazy dog</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/replaceMatch03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/replaceMatch03-expected.html b/Editor/tests/scan/replaceMatch03-expected.html
deleted file mode 100644
index f3e8b8d..0000000
--- a/Editor/tests/scan/replaceMatch03-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <p>
-      <u>FIRST</u>
-      quick brown
-    </p>
-    <p>
-      fox
-      <u>SECOND</u>
-      over
-    </p>
-    <p>
-      the lazy
-      <u>THIRD</u>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/replaceMatch03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/replaceMatch03-input.html b/Editor/tests/scan/replaceMatch03-input.html
deleted file mode 100644
index 461ba78..0000000
--- a/Editor/tests/scan/replaceMatch03-input.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script src="ScanTests.js"></script>
-<script>
-function performTest()
-{
-    Scan_reset();
-    Scan_next();
-    var id1 = Scan_addMatch(0,3);
-    Scan_showMatch(id1);
-    Scan_next();
-    var id2 = Scan_addMatch(4,9);
-    Scan_showMatch(id2);
-    Scan_next();
-    var id3 = Scan_addMatch(9,12);
-    Scan_showMatch(id3);
-
-    Scan_replaceMatch(id1,"FIRST");
-    Scan_replaceMatch(id2,"SECOND");
-    Scan_replaceMatch(id3,"THIRD");
-}
-</script>
-</head>
-<body>
-<p><u>The</u> quick brown</p>
-<p>fox <u>jumps</u> over</p>
-<p>the lazy <u>dog</u></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/replaceMatch04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/replaceMatch04-expected.html b/Editor/tests/scan/replaceMatch04-expected.html
deleted file mode 100644
index 29cd44c..0000000
--- a/Editor/tests/scan/replaceMatch04-expected.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <p>
-      <u>FIRST quick</u>
-      brown
-    </p>
-    <p><u>fox SECOND over</u></p>
-    <p>
-      the
-      <u>lazy THIRD</u>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/replaceMatch04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/replaceMatch04-input.html b/Editor/tests/scan/replaceMatch04-input.html
deleted file mode 100644
index 3b50989..0000000
--- a/Editor/tests/scan/replaceMatch04-input.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script src="ScanTests.js"></script>
-<script>
-function performTest()
-{
-    Scan_reset();
-    Scan_next();
-    var id1 = Scan_addMatch(0,3);
-    Scan_showMatch(id1);
-    Scan_next();
-    var id2 = Scan_addMatch(4,9);
-    Scan_showMatch(id2);
-    Scan_next();
-    var id3 = Scan_addMatch(9,12);
-    Scan_showMatch(id3);
-
-    Scan_replaceMatch(id1,"FIRST");
-    Scan_replaceMatch(id2,"SECOND");
-    Scan_replaceMatch(id3,"THIRD");
-}
-</script>
-</head>
-<body>
-<p><u>The quick</u> brown</p>
-<p><u>fox jumps over</u></p>
-<p>the <u>lazy dog</u></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/replaceMatch05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/replaceMatch05-expected.html b/Editor/tests/scan/replaceMatch05-expected.html
deleted file mode 100644
index eecf8a4..0000000
--- a/Editor/tests/scan/replaceMatch05-expected.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <p>
-      <u>FIRST</u>
-      quick brown
-    </p>
-    <p>fox SECOND over</p>
-    <p>the lazy THIRD</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/replaceMatch05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/replaceMatch05-input.html b/Editor/tests/scan/replaceMatch05-input.html
deleted file mode 100644
index 1ee73ab..0000000
--- a/Editor/tests/scan/replaceMatch05-input.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script src="ScanTests.js"></script>
-<script>
-function performTest()
-{
-    Scan_reset();
-    Scan_next();
-    var id1 = Scan_addMatch(0,3);
-    Scan_showMatch(id1);
-    Scan_next();
-    var id2 = Scan_addMatch(4,9);
-    Scan_showMatch(id2);
-    Scan_next();
-    var id3 = Scan_addMatch(9,12);
-    Scan_showMatch(id3);
-
-    Scan_replaceMatch(id1,"FIRST");
-    Scan_replaceMatch(id2,"SECOND");
-    Scan_replaceMatch(id3,"THIRD");
-}
-</script>
-</head>
-<body>
-<p><u>Th</u>e quick brown</p>
-<p>fox j<u>ump</u>s over</p>
-<p>the lazy d<u>og</u></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/showMatch01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/showMatch01-expected.html b/Editor/tests/scan/showMatch01-expected.html
deleted file mode 100644
index 838844f..0000000
--- a/Editor/tests/scan/showMatch01-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <p>
-      <span class="uxwrite-match">The</span>
-      quick brown
-    </p>
-    <p>
-      fox
-      <span class="uxwrite-match">jumps</span>
-      over
-    </p>
-    <p>
-      the lazy
-      <span class="uxwrite-match">dog</span>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/showMatch01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/showMatch01-input.html b/Editor/tests/scan/showMatch01-input.html
deleted file mode 100644
index 409468f..0000000
--- a/Editor/tests/scan/showMatch01-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script src="ScanTests.js"></script>
-<script>
-function performTest()
-{
-    Scan_reset();
-    Scan_next();
-    var id1 = Scan_addMatch(0,3);
-    Scan_showMatch(id1);
-    Scan_next();
-    var id2 = Scan_addMatch(4,9);
-    Scan_showMatch(id2);
-    Scan_next();
-    var id3 = Scan_addMatch(9,12);
-    Scan_showMatch(id3);
-}
-</script>
-</head>
-<body>
-<p>The quick brown</p>
-<p>fox jumps over</p>
-<p>the lazy dog</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/showMatch02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/showMatch02-expected.html b/Editor/tests/scan/showMatch02-expected.html
deleted file mode 100644
index 3e28704..0000000
--- a/Editor/tests/scan/showMatch02-expected.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <p>
-      <span class="uxwrite-match">The</span>
-      quick
-      <span class="uxwrite-match">brown</span>
-    </p>
-    <p>
-      <span class="uxwrite-match">fox</span>
-      jumps
-      <span class="uxwrite-match">over</span>
-    </p>
-    <p>
-      <span class="uxwrite-match">the</span>
-      lazy
-      <span class="uxwrite-match">dog</span>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/showMatch02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/showMatch02-input.html b/Editor/tests/scan/showMatch02-input.html
deleted file mode 100644
index c0b29ef..0000000
--- a/Editor/tests/scan/showMatch02-input.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script src="ScanTests.js"></script>
-<script>
-function performTest()
-{
-    Scan_reset();
-    Scan_next();
-    var id1 = Scan_addMatch(0,3);
-    var id2 = Scan_addMatch(10,15);
-    Scan_showMatch(id1);
-    Scan_showMatch(id2);
-
-    Scan_next();
-    var id3 = Scan_addMatch(0,3);
-    var id4 = Scan_addMatch(10,14);
-    Scan_showMatch(id3);
-    Scan_showMatch(id4);
-
-    Scan_next();
-    var id5 = Scan_addMatch(0,3);
-    var id6 = Scan_addMatch(9,12);
-    Scan_showMatch(id5);
-    Scan_showMatch(id6);
-}
-</script>
-</head>
-<body>
-<p>The quick brown</p>
-<p>fox jumps over</p>
-<p>the lazy dog</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/showMatch03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/showMatch03-expected.html b/Editor/tests/scan/showMatch03-expected.html
deleted file mode 100644
index 74daee2..0000000
--- a/Editor/tests/scan/showMatch03-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <p>
-      <u><span class="uxwrite-match">The</span></u>
-      quick brown
-    </p>
-    <p>
-      fox
-      <u><span class="uxwrite-match">jumps</span></u>
-      over
-    </p>
-    <p>
-      the lazy
-      <u><span class="uxwrite-match">dog</span></u>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/showMatch03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/showMatch03-input.html b/Editor/tests/scan/showMatch03-input.html
deleted file mode 100644
index a8a2fb2..0000000
--- a/Editor/tests/scan/showMatch03-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script src="ScanTests.js"></script>
-<script>
-function performTest()
-{
-    Scan_reset();
-    Scan_next();
-    var id1 = Scan_addMatch(0,3);
-    Scan_showMatch(id1);
-    Scan_next();
-    var id2 = Scan_addMatch(4,9);
-    Scan_showMatch(id2);
-    Scan_next();
-    var id3 = Scan_addMatch(9,12);
-    Scan_showMatch(id3);
-}
-</script>
-</head>
-<body>
-<p><u>The</u> quick brown</p>
-<p>fox <u>jumps</u> over</p>
-<p>the lazy <u>dog</u></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/showMatch04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/showMatch04-expected.html b/Editor/tests/scan/showMatch04-expected.html
deleted file mode 100644
index 4987119..0000000
--- a/Editor/tests/scan/showMatch04-expected.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <p>
-      <u><span class="uxwrite-match">The</span></u>
-      <u>quick</u>
-      brown
-    </p>
-    <p>
-      <u>fox</u>
-      <u><span class="uxwrite-match">jumps</span></u>
-      <u>over</u>
-    </p>
-    <p>
-      the
-      <u>lazy</u>
-      <u><span class="uxwrite-match">dog</span></u>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/showMatch04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/showMatch04-input.html b/Editor/tests/scan/showMatch04-input.html
deleted file mode 100644
index 42e7efb..0000000
--- a/Editor/tests/scan/showMatch04-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script src="ScanTests.js"></script>
-<script>
-function performTest()
-{
-    Scan_reset();
-    Scan_next();
-    var id1 = Scan_addMatch(0,3);
-    Scan_showMatch(id1);
-    Scan_next();
-    var id2 = Scan_addMatch(4,9);
-    Scan_showMatch(id2);
-    Scan_next();
-    var id3 = Scan_addMatch(9,12);
-    Scan_showMatch(id3);
-}
-</script>
-</head>
-<body>
-<p><u>The quick</u> brown</p>
-<p><u>fox jumps over</u></p>
-<p>the <u>lazy dog</u></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/showMatch05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/showMatch05-expected.html b/Editor/tests/scan/showMatch05-expected.html
deleted file mode 100644
index 73bfded..0000000
--- a/Editor/tests/scan/showMatch05-expected.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <p>
-      <u><span class="uxwrite-match">Th</span></u>
-      <span class="uxwrite-match">e</span>
-      quick brown
-    </p>
-    <p>
-      fox
-      <span class="uxwrite-match">j</span>
-      <span class="uxwrite-match"><u>ump</u></span>
-      <span class="uxwrite-match">s</span>
-      over
-    </p>
-    <p>
-      the lazy
-      <span class="uxwrite-match">d</span>
-      <u><span class="uxwrite-match">og</span></u>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/scan/showMatch05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/scan/showMatch05-input.html b/Editor/tests/scan/showMatch05-input.html
deleted file mode 100644
index 256fac6..0000000
--- a/Editor/tests/scan/showMatch05-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script src="ScanTests.js"></script>
-<script>
-function performTest()
-{
-    Scan_reset();
-    Scan_next();
-    var id1 = Scan_addMatch(0,3);
-    Scan_showMatch(id1);
-    Scan_next();
-    var id2 = Scan_addMatch(4,9);
-    Scan_showMatch(id2);
-    Scan_next();
-    var id3 = Scan_addMatch(9,12);
-    Scan_showMatch(id3);
-}
-</script>
-</head>
-<body>
-<p><u>Th</u>e quick brown</p>
-<p>fox j<u>ump</u>s over</p>
-<p>the lazy d<u>og</u></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/PositionTests.js
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/PositionTests.js b/Editor/tests/selection/PositionTests.js
deleted file mode 100644
index 5b7810e..0000000
--- a/Editor/tests/selection/PositionTests.js
+++ /dev/null
@@ -1,147 +0,0 @@
-// Licensed to the Apache Software Foundation (ASF) under one
-// or more contributor license agreements.  See the NOTICE file
-// distributed with this work for additional information
-// regarding copyright ownership.  The ASF licenses this file
-// to you under the Apache License, Version 2.0 (the
-// "License"); you may not use this file except in compliance
-// with the License.  You may obtain a copy of the License at
-//
-//   http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing,
-// software distributed under the License is distributed on an
-// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-// KIND, either express or implied.  See the License for the
-// specific language governing permissions and limitations
-// under the License.
-
-function pad(str,length)
-{
-    str = ""+str;
-    while (str.length < length)
-        str += " ";
-    return str;
-}
-
-function selectRange(p,start,end)
-{
-    var paragraph = Text_analyseParagraph(new Position(p,0));
-    var startPos = Paragraph_positionAtOffset(paragraph,start);
-    var endPos = Paragraph_positionAtOffset(paragraph,end);
-    Selection_set(startPos.node,startPos.offset,endPos.node,endPos.offset);
-}
-
-function makeStringArray(input)
-{
-    var result = new Array();
-    for (var i = 0; i < input.length; i++)
-        result.push(input[i].toString());
-    return result;
-}
-
-function createTable(arrays)
-{
-    var maxLength = 0;
-    for (var col = 0; col < arrays.length; col++) {
-        if (maxLength < arrays[col].length)
-            maxLength = arrays[col].length;
-    }
-    var colWidths = new Array();
-    for (var col = 0; col < arrays.length; col++) {
-        var width = 0;
-        for (var row = 0; row < arrays[col].length; row++) {
-            if (width < arrays[col][row].length)
-                width = arrays[col][row].length;
-        }
-        colWidths.push(width);
-    }
-
-    var output = new Array();
-    var spacer = "   ->   ";
-    for (var row = 0; row < maxLength; row++) {
-        for (var col = 0; col < arrays.length; col++) {
-            if (col > 0)
-                output.push(spacer);
-            output.push(pad(arrays[col][row],colWidths[col]));
-        }
-        output.push("\n");
-    }
-    return output.join("");
-}
-
-function rangeString(text,start,end)
-{
-    return JSON.stringify(text.substring(0,start) + "[" +
-                          text.substring(start,end) + "]" +
-                          text.substring(end));
-}
-
-var positionList = null
-
-function setPositionList(newList)
-{
-    UndoManager_addAction(setPositionList,positionList);
-    if (newList == null)
-        positionList = null;
-    else
-        positionList = newList.map(function (pos) { return new Position(pos.node,pos.offset); });
-}
-
-function getPositionList()
-{
-    return positionList;
-}
-
-function positionTest(start1,end1,start2,end2)
-{
-    var ps = document.getElementsByTagName("P");
-
-    var p = ps[0];
-    var text = p.firstChild;
-
-    var testDescription = "From "+rangeString(text.nodeValue,start1,end1) + "\n" +
-                          "To   "+rangeString(text.nodeValue,start2,end2) + "\n";
-
-    var positions = new Array();
-    for (var i = 0; i <= text.length; i++)
-        positions.push(new Position(text,i));
-    setPositionList(positions);
-
-    var origStrings = makeStringArray(positions);
-    UndoManager_newGroup();
-
-    Position_trackWhileExecuting(positions,function() { selectRange(p,start1,end1); });
-    setPositionList(positions);
-    var strings1 = makeStringArray(positions);
-
-    UndoManager_newGroup();
-
-    Position_trackWhileExecuting(positions,function() { selectRange(p,start2,end2); });
-    setPositionList(positions);
-    var strings2 = makeStringArray(positions);
-
-    UndoManager_undo();
-    positions = getPositionList();
-    var undo1 = makeStringArray(positions);
-
-    UndoManager_undo();
-    positions = getPositionList();
-    var undo2 = makeStringArray(positions);
-
-    var checks = new Array();
-    for (var i = 0; i < positions.length; i++) {
-        var str = "";
-        if (undo1[i] == strings1[i])
-            str += "YES";
-        else
-            str += "NO";
-
-        if (undo2[i] == origStrings[i])
-            str += "/YES";
-        else
-            str += "/NO";
-        checks.push(str);
-    }
-
-    return testDescription + "\n" + createTable([origStrings,strings1,strings2,checks]);
-}

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table01-expected.html b/Editor/tests/selection/boundaries-table01-expected.html
deleted file mode 100644
index a10ae78..0000000
--- a/Editor/tests/selection/boundaries-table01-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Text [before</p>
-    <table>
-      <tbody>
-        <tr>
-          <td>One</td>
-          <td>Two</td>
-        </tr>
-        <tr>
-          <td>Three</td>
-          <td>Four</td>
-        </tr>
-      </tbody>
-    </table>
-    ]
-    <p>Text after</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table01-input.html b/Editor/tests/selection/boundaries-table01-input.html
deleted file mode 100644
index 3d4a006..0000000
--- a/Editor/tests/selection/boundaries-table01-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>Text [before</p>
-<table>
-  <tr>
-    <td>One</td>
-    <td>Tw]o</td>
-  </tr>
-  <tr>
-    <td>Three</td>
-    <td>Four</td>
-  </tr>
-</table>
-<p>Text after</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table02-expected.html b/Editor/tests/selection/boundaries-table02-expected.html
deleted file mode 100644
index 81c8769..0000000
--- a/Editor/tests/selection/boundaries-table02-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Text before</p>
-    [
-    <table>
-      <tbody>
-        <tr>
-          <td>One</td>
-          <td>Two</td>
-        </tr>
-        <tr>
-          <td>Three</td>
-          <td>Four</td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Text] after</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table02-input.html b/Editor/tests/selection/boundaries-table02-input.html
deleted file mode 100644
index 86fcafc..0000000
--- a/Editor/tests/selection/boundaries-table02-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>Text before</p>
-<table>
-  <tr>
-    <td>One</td>
-    <td>Tw[o</td>
-  </tr>
-  <tr>
-    <td>Three</td>
-    <td>Four</td>
-  </tr>
-</table>
-<p>Text] after</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table03-expected.html b/Editor/tests/selection/boundaries-table03-expected.html
deleted file mode 100644
index 492d9d9..0000000
--- a/Editor/tests/selection/boundaries-table03-expected.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Text before</p>
-    <table>
-      <tbody>
-        <tr>
-          <td>One</td>
-          <td>Tw[o</td>
-        </tr>
-        <tr>
-          <td>Three</td>
-          <td>F]our</td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Text after</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table03-input.html b/Editor/tests/selection/boundaries-table03-input.html
deleted file mode 100644
index 3e08247..0000000
--- a/Editor/tests/selection/boundaries-table03-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>Text before</p>
-<table>
-  <tr>
-    <td>One</td>
-    <td>Tw[o</td>
-  </tr>
-  <tr>
-    <td>Three</td>
-    <td>F]our</td>
-  </tr>
-</table>
-<p>Text after</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table04-expected.html b/Editor/tests/selection/boundaries-table04-expected.html
deleted file mode 100644
index 1e5725f..0000000
--- a/Editor/tests/selection/boundaries-table04-expected.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Text [before</p>
-    <table>
-      <tbody>
-        <tr>
-          <td>One</td>
-          <td>Two</td>
-        </tr>
-        <tr>
-          <td>Three</td>
-          <td>Four</td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Text] after</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table04-input.html b/Editor/tests/selection/boundaries-table04-input.html
deleted file mode 100644
index 6b97c8f..0000000
--- a/Editor/tests/selection/boundaries-table04-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>Text [before</p>
-<table>
-  <tr>
-    <td>One</td>
-    <td>Two</td>
-  </tr>
-  <tr>
-    <td>Three</td>
-    <td>Four</td>
-  </tr>
-</table>
-<p>Text] after</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table05-expected.html b/Editor/tests/selection/boundaries-table05-expected.html
deleted file mode 100644
index 334ceb0..0000000
--- a/Editor/tests/selection/boundaries-table05-expected.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Text before</p>
-    <table>
-      <tbody>
-        <tr>
-          <td>
-            [
-            <table>
-              <tbody>
-                <tr>
-                  <td>One</td>
-                  <td>Two</td>
-                </tr>
-                <tr>
-                  <td>Three</td>
-                  <td>Four</td>
-                </tr>
-              </tbody>
-            </table>
-            <table>
-              <tbody>
-                <tr>
-                  <td>Five</td>
-                  <td>Six</td>
-                </tr>
-                <tr>
-                  <td>Seven</td>
-                  <td>Eight</td>
-                </tr>
-              </tbody>
-            </table>
-            ]
-          </td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Text after</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table05-input.html b/Editor/tests/selection/boundaries-table05-input.html
deleted file mode 100644
index 2ec8be1..0000000
--- a/Editor/tests/selection/boundaries-table05-input.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    showSelection();
-}
-</script>
-</head>
-<body>
-
-<p>Text before</p>
-
-<table>
-  <tbody>
-    <tr>
-      <td>
-
-        <table>
-          <tbody>
-            <tr>
-              <td>One</td>
-              <td>T[wo</td>
-            </tr>
-            <tr>
-              <td>Three</td>
-              <td>Four</td>
-            </tr>
-          </tbody>
-        </table>
-
-        <table>
-          <tbody>
-            <tr>
-              <td>Five</td>
-              <td>Six</td>
-            </tr>
-            <tr>
-              <td>S]even</td>
-              <td>Eight</td>
-            </tr>
-          </tbody>
-        </table>
-
-      </td>
-    </tr>
-  </tbody>
-</table>
-
-<p>Text after</p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table06-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table06-expected.html b/Editor/tests/selection/boundaries-table06-expected.html
deleted file mode 100644
index 95b96b8..0000000
--- a/Editor/tests/selection/boundaries-table06-expected.html
+++ /dev/null
@@ -1,43 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Text before</p>
-    <table>
-      <tbody>
-        <tr>
-          <td>
-            [
-            <table>
-              <tbody>
-                <tr>
-                  <td>One</td>
-                  <td>Two</td>
-                </tr>
-                <tr>
-                  <td>Three</td>
-                  <td>Four</td>
-                </tr>
-              </tbody>
-            </table>
-          </td>
-          <td>
-            <table>
-              <tbody>
-                <tr>
-                  <td>Five</td>
-                  <td>Six</td>
-                </tr>
-                <tr>
-                  <td>Seven</td>
-                  <td>Eight</td>
-                </tr>
-              </tbody>
-            </table>
-            ]
-          </td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Text after</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table06-input.html b/Editor/tests/selection/boundaries-table06-input.html
deleted file mode 100644
index a194718..0000000
--- a/Editor/tests/selection/boundaries-table06-input.html
+++ /dev/null
@@ -1,57 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    showSelection();
-}
-</script>
-</head>
-<body>
-
-<p>Text before</p>
-
-<table>
-  <tbody>
-    <tr>
-      <td>
-
-        <table>
-          <tbody>
-            <tr>
-              <td>One</td>
-              <td>T[wo</td>
-            </tr>
-            <tr>
-              <td>Three</td>
-              <td>Four</td>
-            </tr>
-          </tbody>
-        </table>
-
-      </td>
-      <td>
-
-        <table>
-          <tbody>
-            <tr>
-              <td>Five</td>
-              <td>Six</td>
-            </tr>
-            <tr>
-              <td>S]even</td>
-              <td>Eight</td>
-            </tr>
-          </tbody>
-        </table>
-
-      </td>
-    </tr>
-  </tbody>
-</table>
-
-<p>Text after</p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table07-expected.html b/Editor/tests/selection/boundaries-table07-expected.html
deleted file mode 100644
index b2943a5..0000000
--- a/Editor/tests/selection/boundaries-table07-expected.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Text [before</p>
-    <table>
-      <tbody>
-        <tr>
-          <td>
-            <table>
-              <tbody>
-                <tr>
-                  <td>One</td>
-                  <td>Two</td>
-                </tr>
-                <tr>
-                  <td>Three</td>
-                  <td>Four</td>
-                </tr>
-              </tbody>
-            </table>
-          </td>
-        </tr>
-      </tbody>
-    </table>
-    ]
-    <p>Text after</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table07-input.html b/Editor/tests/selection/boundaries-table07-input.html
deleted file mode 100644
index 0a0fea0..0000000
--- a/Editor/tests/selection/boundaries-table07-input.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    showSelection();
-}
-</script>
-</head>
-<body>
-
-<p>Text [before</p>
-
-<table>
-  <tbody>
-    <tr>
-      <td>
-
-        <table>
-          <tbody>
-            <tr>
-              <td>One</td>
-              <td>T]wo</td>
-            </tr>
-            <tr>
-              <td>Three</td>
-              <td>Four</td>
-            </tr>
-          </tbody>
-        </table>
-
-      </td>
-    </tr>
-  </tbody>
-</table>
-
-<p>Text after</p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table08-expected.html b/Editor/tests/selection/boundaries-table08-expected.html
deleted file mode 100644
index de62065..0000000
--- a/Editor/tests/selection/boundaries-table08-expected.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Text before</p>
-    [
-    <table>
-      <tbody>
-        <tr>
-          <td>
-            <table>
-              <tbody>
-                <tr>
-                  <td>One</td>
-                  <td>Two</td>
-                </tr>
-                <tr>
-                  <td>Three</td>
-                  <td>Four</td>
-                </tr>
-              </tbody>
-            </table>
-          </td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Text] after</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table08-input.html b/Editor/tests/selection/boundaries-table08-input.html
deleted file mode 100644
index 24970ec..0000000
--- a/Editor/tests/selection/boundaries-table08-input.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    showSelection();
-}
-</script>
-</head>
-<body>
-
-<p>Text before</p>
-
-<table>
-  <tbody>
-    <tr>
-      <td>
-
-        <table>
-          <tbody>
-            <tr>
-              <td>One</td>
-              <td>T[wo</td>
-            </tr>
-            <tr>
-              <td>Three</td>
-              <td>Four</td>
-            </tr>
-          </tbody>
-        </table>
-
-      </td>
-    </tr>
-  </tbody>
-</table>
-
-<p>Text] after</p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table09-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table09-expected.html b/Editor/tests/selection/boundaries-table09-expected.html
deleted file mode 100644
index f2c214b..0000000
--- a/Editor/tests/selection/boundaries-table09-expected.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Text before</p>
-    [
-    <table>
-      <tbody>
-        <tr>
-          <td>One</td>
-          <td>Two</td>
-        </tr>
-        <tr>
-          <td>Three</td>
-          <td>Four</td>
-        </tr>
-      </tbody>
-    </table>
-    ]
-    <p>Text after</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table09-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table09-input.html b/Editor/tests/selection/boundaries-table09-input.html
deleted file mode 100644
index 50dac14..0000000
--- a/Editor/tests/selection/boundaries-table09-input.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var range = Selection_get();
-    var table = document.getElementsByTagName("TABLE")[0];
-    var offset = DOM_nodeOffset(table);
-    range.start = new Position(table.parentNode,DOM_nodeOffset(table));
-    Selection_set(range.start.node,range.start.offset,range.end.node,range.end.offset);
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>Text before</p>
-<table>
-  <tr>
-    <td>One</td>
-    <td>Tw[]o</td>
-  </tr>
-  <tr>
-    <td>Three</td>
-    <td>Four</td>
-  </tr>
-</table>
-<p>Text after</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table10-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table10-expected.html b/Editor/tests/selection/boundaries-table10-expected.html
deleted file mode 100644
index f2c214b..0000000
--- a/Editor/tests/selection/boundaries-table10-expected.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Text before</p>
-    [
-    <table>
-      <tbody>
-        <tr>
-          <td>One</td>
-          <td>Two</td>
-        </tr>
-        <tr>
-          <td>Three</td>
-          <td>Four</td>
-        </tr>
-      </tbody>
-    </table>
-    ]
-    <p>Text after</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/boundaries-table10-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/boundaries-table10-input.html b/Editor/tests/selection/boundaries-table10-input.html
deleted file mode 100644
index 0b08e8e..0000000
--- a/Editor/tests/selection/boundaries-table10-input.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var range = Selection_get();
-    var table = document.getElementsByTagName("TABLE")[0];
-    var offset = DOM_nodeOffset(table);
-    range.end = new Position(table.parentNode,DOM_nodeOffset(table)+1);
-    Selection_set(range.start.node,range.start.offset,range.end.node,range.end.offset);
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>Text before</p>
-<table>
-  <tr>
-    <td>One</td>
-    <td>Tw[]o</td>
-  </tr>
-  <tr>
-    <td>Three</td>
-    <td>Four</td>
-  </tr>
-</table>
-<p>Text after</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/delete01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/delete01-expected.html b/Editor/tests/selection/delete01-expected.html
deleted file mode 100644
index b3b3b3c..0000000
--- a/Editor/tests/selection/delete01-expected.html
+++ /dev/null
@@ -1,7 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    one tw[] three
-    <p>four five six</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/delete01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/delete01-input.html b/Editor/tests/selection/delete01-input.html
deleted file mode 100644
index db1bef1..0000000
--- a/Editor/tests/selection/delete01-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_deleteCharacter();
-    showSelection();
-}
-</script>
-</head>
-<body>
-one two[] three
-<p>four five six</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/delete02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/delete02-expected.html b/Editor/tests/selection/delete02-expected.html
deleted file mode 100644
index 7209012..0000000
--- a/Editor/tests/selection/delete02-expected.html
+++ /dev/null
@@ -1,7 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    one [] three
-    <p>four five six</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/delete02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/delete02-input.html b/Editor/tests/selection/delete02-input.html
deleted file mode 100644
index ecb3df5..0000000
--- a/Editor/tests/selection/delete02-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-one [two] three
-<p>four five six</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/delete03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/delete03-expected.html b/Editor/tests/selection/delete03-expected.html
deleted file mode 100644
index 7bc65e9..0000000
--- a/Editor/tests/selection/delete03-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>one two three[]four five six</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/delete03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/delete03-input.html b/Editor/tests/selection/delete03-input.html
deleted file mode 100644
index 9f62e83..0000000
--- a/Editor/tests/selection/delete03-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_deleteCharacter();
-    showSelection();
-}
-</script>
-</head>
-<body>
-one two three
-<p>[]four five six</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/delete04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/delete04-expected.html b/Editor/tests/selection/delete04-expected.html
deleted file mode 100644
index 7bc65e9..0000000
--- a/Editor/tests/selection/delete04-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>one two three[]four five six</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/delete04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/delete04-input.html b/Editor/tests/selection/delete04-input.html
deleted file mode 100644
index 0653b4e..0000000
--- a/Editor/tests/selection/delete04-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-one two three[
-<p>]four five six</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/delete05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/delete05-expected.html b/Editor/tests/selection/delete05-expected.html
deleted file mode 100644
index 54b89fd..0000000
--- a/Editor/tests/selection/delete05-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>one two [] five six</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/delete05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/delete05-input.html b/Editor/tests/selection/delete05-input.html
deleted file mode 100644
index 2676cbd..0000000
--- a/Editor/tests/selection/delete05-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-one two [three
-<p>four] five six</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list01-expected.html b/Editor/tests/selection/deleteContents-list01-expected.html
deleted file mode 100644
index cb82670..0000000
--- a/Editor/tests/selection/deleteContents-list01-expected.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>Two</li>
-      <li>Three</li>
-    </ol>
-    <ol>
-      <li>F[]r</li>
-      <li>Five</li>
-      <li>Six</li>
-    </ol>
-    <ol>
-      <li>Seven</li>
-      <li>Eight</li>
-      <li>Nine</li>
-    </ol>
-    <ol>
-      <li>Ten</li>
-      <li>Eleven</li>
-      <li>Twelve</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list01-input.html b/Editor/tests/selection/deleteContents-list01-input.html
deleted file mode 100644
index 0626cb3..0000000
--- a/Editor/tests/selection/deleteContents-list01-input.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>Two</li>
-  <li>Three</li>
-</ol>
-<ol>
-  <li>F[ou]r</li>
-  <li>Five</li>
-  <li>Six</li>
-</ol>
-<ol>
-  <li>Seven</li>
-  <li>Eight</li>
-  <li>Nine</li>
-</ol>
-<ol>
-  <li>Ten</li>
-  <li>Eleven</li>
-  <li>Twelve</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list02-expected.html b/Editor/tests/selection/deleteContents-list02-expected.html
deleted file mode 100644
index 9333aa5..0000000
--- a/Editor/tests/selection/deleteContents-list02-expected.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>Two</li>
-      <li>Three</li>
-    </ol>
-    <ol>
-      <li>Fo[]ve</li>
-      <li>Six</li>
-    </ol>
-    <ol>
-      <li>Seven</li>
-      <li>Eight</li>
-      <li>Nine</li>
-    </ol>
-    <ol>
-      <li>Ten</li>
-      <li>Eleven</li>
-      <li>Twelve</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list02-input.html b/Editor/tests/selection/deleteContents-list02-input.html
deleted file mode 100644
index 838773b..0000000
--- a/Editor/tests/selection/deleteContents-list02-input.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>Two</li>
-  <li>Three</li>
-</ol>
-<ol>
-  <li>Fo[ur</li>
-  <li>Fi]ve</li>
-  <li>Six</li>
-</ol>
-<ol>
-  <li>Seven</li>
-  <li>Eight</li>
-  <li>Nine</li>
-</ol>
-<ol>
-  <li>Ten</li>
-  <li>Eleven</li>
-  <li>Twelve</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list03-expected.html b/Editor/tests/selection/deleteContents-list03-expected.html
deleted file mode 100644
index 0730d3f..0000000
--- a/Editor/tests/selection/deleteContents-list03-expected.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>Two</li>
-      <li>Three</li>
-    </ol>
-    <ol>
-      <li>Fo[]x</li>
-    </ol>
-    <ol>
-      <li>Seven</li>
-      <li>Eight</li>
-      <li>Nine</li>
-    </ol>
-    <ol>
-      <li>Ten</li>
-      <li>Eleven</li>
-      <li>Twelve</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list03-input.html b/Editor/tests/selection/deleteContents-list03-input.html
deleted file mode 100644
index 2431208..0000000
--- a/Editor/tests/selection/deleteContents-list03-input.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>Two</li>
-  <li>Three</li>
-</ol>
-<ol>
-  <li>Fo[ur</li>
-  <li>Five</li>
-  <li>Si]x</li>
-</ol>
-<ol>
-  <li>Seven</li>
-  <li>Eight</li>
-  <li>Nine</li>
-</ol>
-<ol>
-  <li>Ten</li>
-  <li>Eleven</li>
-  <li>Twelve</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list04-expected.html b/Editor/tests/selection/deleteContents-list04-expected.html
deleted file mode 100644
index 6814dad..0000000
--- a/Editor/tests/selection/deleteContents-list04-expected.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>Two</li>
-      <li>Three</li>
-    </ol>
-    <ol>
-      <li>Four</li>
-      <li>Five</li>
-      <li>Si[]en</li>
-      <li>Eight</li>
-      <li>Nine</li>
-    </ol>
-    <ol>
-      <li>Ten</li>
-      <li>Eleven</li>
-      <li>Twelve</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list04-input.html b/Editor/tests/selection/deleteContents-list04-input.html
deleted file mode 100644
index b881856..0000000
--- a/Editor/tests/selection/deleteContents-list04-input.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>Two</li>
-  <li>Three</li>
-</ol>
-<ol>
-  <li>Four</li>
-  <li>Five</li>
-  <li>Si[x</li>
-</ol>
-<ol>
-  <li>Sev]en</li>
-  <li>Eight</li>
-  <li>Nine</li>
-</ol>
-<ol>
-  <li>Ten</li>
-  <li>Eleven</li>
-  <li>Twelve</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list05-expected.html b/Editor/tests/selection/deleteContents-list05-expected.html
deleted file mode 100644
index c8c83d5..0000000
--- a/Editor/tests/selection/deleteContents-list05-expected.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>Two</li>
-      <li>Three</li>
-    </ol>
-    <ol>
-      <li>Four</li>
-      <li>Five[]</li>
-    </ol>
-    <ol>
-      <li>Seven</li>
-      <li>Eight</li>
-      <li>Nine</li>
-    </ol>
-    <ol>
-      <li>Ten</li>
-      <li>Eleven</li>
-      <li>Twelve</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list05-input.html b/Editor/tests/selection/deleteContents-list05-input.html
deleted file mode 100644
index 932c121..0000000
--- a/Editor/tests/selection/deleteContents-list05-input.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>Two</li>
-  <li>Three</li>
-</ol>
-<ol>
-  <li>Four</li>
-  <li>Five</li>
-  <li>[Six]</li>
-</ol>
-<ol>
-  <li>Seven</li>
-  <li>Eight</li>
-  <li>Nine</li>
-</ol>
-<ol>
-  <li>Ten</li>
-  <li>Eleven</li>
-  <li>Twelve</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list06-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list06-expected.html b/Editor/tests/selection/deleteContents-list06-expected.html
deleted file mode 100644
index 0e11803..0000000
--- a/Editor/tests/selection/deleteContents-list06-expected.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>Two</li>
-      <li>Three</li>
-    </ol>
-    <ol>
-      <li>Four</li>
-      <li>Six</li>
-    </ol>
-    <ol>
-      <li>Seven</li>
-      <li>Eight</li>
-      <li>Nine</li>
-    </ol>
-    <ol>
-      <li>Ten</li>
-      <li>Eleven</li>
-      <li>Twelve</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list06-input.html b/Editor/tests/selection/deleteContents-list06-input.html
deleted file mode 100644
index 705733a..0000000
--- a/Editor/tests/selection/deleteContents-list06-input.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>Two</li>
-  <li>Three</li>
-</ol>
-<ol>
-  <li>Four</li>
-  [<li>Five</li>]
-  <li>Six</li>
-</ol>
-<ol>
-  <li>Seven</li>
-  <li>Eight</li>
-  <li>Nine</li>
-</ol>
-<ol>
-  <li>Ten</li>
-  <li>Eleven</li>
-  <li>Twelve</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list07-expected.html b/Editor/tests/selection/deleteContents-list07-expected.html
deleted file mode 100644
index 1ada671..0000000
--- a/Editor/tests/selection/deleteContents-list07-expected.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>Two</li>
-      <li>Three</li>
-    </ol>
-    <ol>
-      <li>Four</li>
-      <li>Five</li>
-    </ol>
-    <ol>
-      <li>Seven</li>
-      <li>Eight</li>
-      <li>Nine</li>
-    </ol>
-    <ol>
-      <li>Ten</li>
-      <li>Eleven</li>
-      <li>Twelve</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list07-input.html b/Editor/tests/selection/deleteContents-list07-input.html
deleted file mode 100644
index db0c0b5..0000000
--- a/Editor/tests/selection/deleteContents-list07-input.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>Two</li>
-  <li>Three</li>
-</ol>
-<ol>
-  <li>Four</li>
-  <li>Five</li>
-  [<li>Six</li>]
-</ol>
-<ol>
-  <li>Seven</li>
-  <li>Eight</li>
-  <li>Nine</li>
-</ol>
-<ol>
-  <li>Ten</li>
-  <li>Eleven</li>
-  <li>Twelve</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list08-expected.html b/Editor/tests/selection/deleteContents-list08-expected.html
deleted file mode 100644
index e79d746..0000000
--- a/Editor/tests/selection/deleteContents-list08-expected.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>Two</li>
-      <li>Three</li>
-    </ol>
-    <ol>
-      <li>Four[]Five</li>
-      <li>Six</li>
-    </ol>
-    <ol>
-      <li>Seven</li>
-      <li>Eight</li>
-      <li>Nine</li>
-    </ol>
-    <ol>
-      <li>Ten</li>
-      <li>Eleven</li>
-      <li>Twelve</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list08-input.html b/Editor/tests/selection/deleteContents-list08-input.html
deleted file mode 100644
index 1ef2a94..0000000
--- a/Editor/tests/selection/deleteContents-list08-input.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>Two</li>
-  <li>Three</li>
-</ol>
-<ol>
-  <li>Four[</li>
-  <li>]Five</li>
-  <li>Six</li>
-</ol>
-<ol>
-  <li>Seven</li>
-  <li>Eight</li>
-  <li>Nine</li>
-</ol>
-<ol>
-  <li>Ten</li>
-  <li>Eleven</li>
-  <li>Twelve</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list09-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list09-expected.html b/Editor/tests/selection/deleteContents-list09-expected.html
deleted file mode 100644
index a7364e1..0000000
--- a/Editor/tests/selection/deleteContents-list09-expected.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>Two</li>
-      <li>Three</li>
-    </ol>
-    <ol>
-    </ol>
-    <ol>
-      <li>Seven</li>
-      <li>Eight</li>
-      <li>Nine</li>
-    </ol>
-    <ol>
-      <li>Ten</li>
-      <li>Eleven</li>
-      <li>Twelve</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list09-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list09-input.html b/Editor/tests/selection/deleteContents-list09-input.html
deleted file mode 100644
index d2505f2..0000000
--- a/Editor/tests/selection/deleteContents-list09-input.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>Two</li>
-  <li>Three</li>
-</ol>
-<ol>
-  [<li>Four</li>
-  <li>Five</li>
-  <li>Six</li>]
-</ol>
-<ol>
-  <li>Seven</li>
-  <li>Eight</li>
-  <li>Nine</li>
-</ol>
-<ol>
-  <li>Ten</li>
-  <li>Eleven</li>
-  <li>Twelve</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list10-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list10-expected.html b/Editor/tests/selection/deleteContents-list10-expected.html
deleted file mode 100644
index 49a0e55..0000000
--- a/Editor/tests/selection/deleteContents-list10-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>Two</li>
-      <li>Three</li>
-    </ol>
-    <ol>
-      <li>Seven</li>
-      <li>Eight</li>
-      <li>Nine</li>
-    </ol>
-    <ol>
-      <li>Ten</li>
-      <li>Eleven</li>
-      <li>Twelve</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list10-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list10-input.html b/Editor/tests/selection/deleteContents-list10-input.html
deleted file mode 100644
index 078b1dd..0000000
--- a/Editor/tests/selection/deleteContents-list10-input.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>Two</li>
-  <li>Three</li>
-</ol>
-[<ol>
-  <li>Four</li>
-  <li>Five</li>
-  <li>Six</li>
-</ol>]
-<ol>
-  <li>Seven</li>
-  <li>Eight</li>
-  <li>Nine</li>
-</ol>
-<ol>
-  <li>Ten</li>
-  <li>Eleven</li>
-  <li>Twelve</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list11-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list11-expected.html b/Editor/tests/selection/deleteContents-list11-expected.html
deleted file mode 100644
index ce11e15..0000000
--- a/Editor/tests/selection/deleteContents-list11-expected.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>Two</li>
-      <li>Three</li>
-    </ol>
-    <ol>
-      <li>Four</li>
-      <li>Five</li>
-      <li>S[]</li>
-    </ol>
-    <ul>
-      <li>n</li>
-      <li>Eight</li>
-      <li>Nine</li>
-    </ul>
-    <ol>
-      <li>Ten</li>
-      <li>Eleven</li>
-      <li>Twelve</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list11-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list11-input.html b/Editor/tests/selection/deleteContents-list11-input.html
deleted file mode 100644
index 4a96f3d..0000000
--- a/Editor/tests/selection/deleteContents-list11-input.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>Two</li>
-  <li>Three</li>
-</ol>
-<ol>
-  <li>Four</li>
-  <li>Five</li>
-  <li>S[ix</li>
-</ol>
-<ul>
-  <li>Seve]n</li>
-  <li>Eight</li>
-  <li>Nine</li>
-</ul>
-<ol>
-  <li>Ten</li>
-  <li>Eleven</li>
-  <li>Twelve</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list12-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list12-expected.html b/Editor/tests/selection/deleteContents-list12-expected.html
deleted file mode 100644
index 9ae7322..0000000
--- a/Editor/tests/selection/deleteContents-list12-expected.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>Two</li>
-      <li>Thr[]Content 1</li>
-    </ol>
-    <p>Content 2</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list12-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list12-input.html b/Editor/tests/selection/deleteContents-list12-input.html
deleted file mode 100644
index 82617f5..0000000
--- a/Editor/tests/selection/deleteContents-list12-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>Two</li>
-  <li>Thr[ee</li>
-</ol>
-<p>]Content 1</p>
-<p>Content 2</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list13-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list13-expected.html b/Editor/tests/selection/deleteContents-list13-expected.html
deleted file mode 100644
index 7f6a0f1..0000000
--- a/Editor/tests/selection/deleteContents-list13-expected.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>Two</li>
-      <li>Thr[]ent 1</li>
-    </ol>
-    <p>Content 2</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list13-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list13-input.html b/Editor/tests/selection/deleteContents-list13-input.html
deleted file mode 100644
index 889ebee..0000000
--- a/Editor/tests/selection/deleteContents-list13-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>Two</li>
-  <li>Thr[ee</li>
-</ol>
-<p>Cont]ent 1</p>
-<p>Content 2</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list14-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list14-expected.html b/Editor/tests/selection/deleteContents-list14-expected.html
deleted file mode 100644
index 1524552..0000000
--- a/Editor/tests/selection/deleteContents-list14-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>Two</li>
-      <li>Thr[]ent 2</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list14-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list14-input.html b/Editor/tests/selection/deleteContents-list14-input.html
deleted file mode 100644
index aef6887..0000000
--- a/Editor/tests/selection/deleteContents-list14-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>Two</li>
-  <li>Thr[ee</li>
-</ol>
-<p>Content 1</p>
-<p>Cont]ent 2</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list15-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list15-expected.html b/Editor/tests/selection/deleteContents-list15-expected.html
deleted file mode 100644
index 4413810..0000000
--- a/Editor/tests/selection/deleteContents-list15-expected.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Content 1</p>
-    <p>Content 2[]One</p>
-    <ol>
-      <li>Two</li>
-      <li>Three</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list15-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list15-input.html b/Editor/tests/selection/deleteContents-list15-input.html
deleted file mode 100644
index b444ecb..0000000
--- a/Editor/tests/selection/deleteContents-list15-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>Content 1</p>
-<p>Content 2[</p>
-<ol>
-  <li>]One</li>
-  <li>Two</li>
-  <li>Three</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list16-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list16-expected.html b/Editor/tests/selection/deleteContents-list16-expected.html
deleted file mode 100644
index 1a3d2ad..0000000
--- a/Editor/tests/selection/deleteContents-list16-expected.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Content 1</p>
-    <p>Cont[]ne</p>
-    <ol>
-      <li>Two</li>
-      <li>Three</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list16-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list16-input.html b/Editor/tests/selection/deleteContents-list16-input.html
deleted file mode 100644
index f207f3e..0000000
--- a/Editor/tests/selection/deleteContents-list16-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>Content 1</p>
-<p>Cont[ent 2</p>
-<ol>
-  <li>O]ne</li>
-  <li>Two</li>
-  <li>Three</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list17-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list17-expected.html b/Editor/tests/selection/deleteContents-list17-expected.html
deleted file mode 100644
index 78c14eb..0000000
--- a/Editor/tests/selection/deleteContents-list17-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Co[]ne</p>
-    <ol>
-      <li>Two</li>
-      <li>Three</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list17-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list17-input.html b/Editor/tests/selection/deleteContents-list17-input.html
deleted file mode 100644
index 4aa0f52..0000000
--- a/Editor/tests/selection/deleteContents-list17-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>Co[ntent 1</p>
-<p>Content 2</p>
-<ol>
-  <li>O]ne</li>
-  <li>Two</li>
-  <li>Three</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list18-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list18-expected.html b/Editor/tests/selection/deleteContents-list18-expected.html
deleted file mode 100644
index 0629fea..0000000
--- a/Editor/tests/selection/deleteContents-list18-expected.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Co[]wo</p>
-    <ol>
-      <li>Three</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list18-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list18-input.html b/Editor/tests/selection/deleteContents-list18-input.html
deleted file mode 100644
index f9271eb..0000000
--- a/Editor/tests/selection/deleteContents-list18-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>Co[ntent 1</p>
-<p>Content 2</p>
-<ol>
-  <li>One</li>
-  <li>T]wo</li>
-  <li>Three</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list19-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list19-expected.html b/Editor/tests/selection/deleteContents-list19-expected.html
deleted file mode 100644
index 97a4b59..0000000
--- a/Editor/tests/selection/deleteContents-list19-expected.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>T[]ntent 2</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-list19-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-list19-input.html b/Editor/tests/selection/deleteContents-list19-input.html
deleted file mode 100644
index 9fdecd4..0000000
--- a/Editor/tests/selection/deleteContents-list19-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>T[wo</li>
-  <li>Three</li>
-</ol>
-<p>Content 1</p>
-<p>Co]ntent 2</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-paragraph-span01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-paragraph-span01-expected.html b/Editor/tests/selection/deleteContents-paragraph-span01-expected.html
deleted file mode 100644
index 9d577cf..0000000
--- a/Editor/tests/selection/deleteContents-paragraph-span01-expected.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p id="x1">
-      <span id="y1">[]</span>
-      <br/>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-paragraph-span01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-paragraph-span01-input.html b/Editor/tests/selection/deleteContents-paragraph-span01-input.html
deleted file mode 100644
index 7eb8f4b..0000000
--- a/Editor/tests/selection/deleteContents-paragraph-span01-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p id="x1"><span id="y1">[One]</span></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-paragraph-span02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-paragraph-span02-expected.html b/Editor/tests/selection/deleteContents-paragraph-span02-expected.html
deleted file mode 100644
index cf54cc3..0000000
--- a/Editor/tests/selection/deleteContents-paragraph-span02-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p id="x2"><span id="y2">[]Two</span></p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-paragraph-span02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-paragraph-span02-input.html b/Editor/tests/selection/deleteContents-paragraph-span02-input.html
deleted file mode 100644
index 4e21088..0000000
--- a/Editor/tests/selection/deleteContents-paragraph-span02-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p id="x1"><span id="y1">[One]</span></p>
-<p id="x2"><span id="y2">Two</span></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-paragraph-span03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-paragraph-span03-expected.html b/Editor/tests/selection/deleteContents-paragraph-span03-expected.html
deleted file mode 100644
index f2546ae..0000000
--- a/Editor/tests/selection/deleteContents-paragraph-span03-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p id="x1"><span id="y1">One[]</span></p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-paragraph-span03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-paragraph-span03-input.html b/Editor/tests/selection/deleteContents-paragraph-span03-input.html
deleted file mode 100644
index 2d56468..0000000
--- a/Editor/tests/selection/deleteContents-paragraph-span03-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p id="x1"><span id="y1">One</span></p>
-<p id="x2"><span id="y2">[Two]</span></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-paragraph-span04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-paragraph-span04-expected.html b/Editor/tests/selection/deleteContents-paragraph-span04-expected.html
deleted file mode 100644
index adb8dd8..0000000
--- a/Editor/tests/selection/deleteContents-paragraph-span04-expected.html
+++ /dev/null
@@ -1,7 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p id="x1"><span id="y1">One[]</span></p>
-    <p id="x3"><span id="y3">Three</span></p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-paragraph-span04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-paragraph-span04-input.html b/Editor/tests/selection/deleteContents-paragraph-span04-input.html
deleted file mode 100644
index 5b2fe92..0000000
--- a/Editor/tests/selection/deleteContents-paragraph-span04-input.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p id="x1"><span id="y1">One</span></p>
-<p id="x2"><span id="y2">[Two]</span></p>
-<p id="x3"><span id="y3">Three</span></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-paragraph-span05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-paragraph-span05-expected.html b/Editor/tests/selection/deleteContents-paragraph-span05-expected.html
deleted file mode 100644
index fcf05df..0000000
--- a/Editor/tests/selection/deleteContents-paragraph-span05-expected.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p id="x4"><span id="y4">[]Four</span></p>
-    <p id="x5"><span id="y5">Five</span></p>
-    <p id="x6"><span id="y6">Six</span></p>
-    <p id="x7"><span id="y7">Seven</span></p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-paragraph-span05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-paragraph-span05-input.html b/Editor/tests/selection/deleteContents-paragraph-span05-input.html
deleted file mode 100644
index 641cc88..0000000
--- a/Editor/tests/selection/deleteContents-paragraph-span05-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p id="x1"><span id="y1">[One</span></p>
-<p id="x2"><span id="y2">Two</span></p>
-<p id="x3"><span id="y3">Three]</span></p>
-<p id="x4"><span id="y4">Four</span></p>
-<p id="x5"><span id="y5">Five</span></p>
-<p id="x6"><span id="y6">Six</span></p>
-<p id="x7"><span id="y7">Seven</span></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-paragraph-span06-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-paragraph-span06-expected.html b/Editor/tests/selection/deleteContents-paragraph-span06-expected.html
deleted file mode 100644
index 689bc57..0000000
--- a/Editor/tests/selection/deleteContents-paragraph-span06-expected.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p id="x1"><span id="y1">One</span></p>
-    <p id="x2"><span id="y2">Two</span></p>
-    <p id="x3"><span id="y3">Three</span></p>
-    <p id="x4"><span id="y4">Four[]</span></p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/selection/deleteContents-paragraph-span06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/selection/deleteContents-paragraph-span06-input.html b/Editor/tests/selection/deleteContents-paragraph-span06-input.html
deleted file mode 100644
index a5112d4..0000000
--- a/Editor/tests/selection/deleteContents-paragraph-span06-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Selection_deleteContents();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p id="x1"><span id="y1">One</span></p>
-<p id="x2"><span id="y2">Two</span></p>
-<p id="x3"><span id="y3">Three</span></p>
-<p id="x4"><span id="y4">Four</span></p>
-<p id="x5"><span id="y5">[Five</span></p>
-<p id="x6"><span id="y6">Six</span></p>
-<p id="x7"><span id="y7">Seven]</span></p>
-</body>
-</html>