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

[28/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/cursor/nbsp01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/nbsp01-input.html b/Editor/tests/cursor/nbsp01-input.html
deleted file mode 100644
index c855459..0000000
--- a/Editor/tests/cursor/nbsp01-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter(" ");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>Sample text[]</p>
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/nbsp02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/nbsp02-input.html b/Editor/tests/cursor/nbsp02-input.html
deleted file mode 100644
index 4c70a52..0000000
--- a/Editor/tests/cursor/nbsp02-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter(" ");
-    UndoManager_newGroup();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>Sample text[]</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/nbsp03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/nbsp03-expected.html b/Editor/tests/cursor/nbsp03-expected.html
deleted file mode 100644
index 61c2a8a..0000000
--- a/Editor/tests/cursor/nbsp03-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Sample text a[]</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/nbsp03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/nbsp03-input.html b/Editor/tests/cursor/nbsp03-input.html
deleted file mode 100644
index b8a4a1d..0000000
--- a/Editor/tests/cursor/nbsp03-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter(" ");
-    Cursor_insertCharacter("a");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>Sample text[]</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/nbsp04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/nbsp04-expected.html b/Editor/tests/cursor/nbsp04-expected.html
deleted file mode 100644
index 8098ad9..0000000
--- a/Editor/tests/cursor/nbsp04-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Sample text&nbsp;[]</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/nbsp04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/nbsp04-input.html b/Editor/tests/cursor/nbsp04-input.html
deleted file mode 100644
index d0218b9..0000000
--- a/Editor/tests/cursor/nbsp04-input.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter(" ");
-    Cursor_insertCharacter("a");
-    Cursor_deleteCharacter();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>Sample text[]</p>
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/nbsp05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/nbsp05-input.html b/Editor/tests/cursor/nbsp05-input.html
deleted file mode 100644
index 00f9f41..0000000
--- a/Editor/tests/cursor/nbsp05-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter(" ");
-    Cursor_insertCharacter("a");
-    Cursor_deleteCharacter();
-    UndoManager_newGroup();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>Sample text[]</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/position-br01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/position-br01-expected.html b/Editor/tests/cursor/position-br01-expected.html
deleted file mode 100644
index 83e1635..0000000
--- a/Editor/tests/cursor/position-br01-expected.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    .L.i.n.e. .1.
-    <br/>
-    .L.i.n.e. .2.
-    <br/>
-    .L.i.n.e. .3.
-    <br/>
-    .
-    <br/>
-    .
-    <br/>
-    .
-    <br/>
-    .L.i.n.e. .7.
-    <br/>
-    .L.i.n.e. .8.
-    <br/>
-    .L.i.n.e. .9.[]
-    <br/>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/position-br01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/position-br01-input.html b/Editor/tests/cursor/position-br01-input.html
deleted file mode 100644
index a4a7145..0000000
--- a/Editor/tests/cursor/position-br01-input.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    for (var i = 0; i < 45; i++) {
-        Cursor_insertCharacter(".",false,true);
-        Cursor_moveRight();
-    }
-    showSelection();
-}
-</script>
-</head>
-<body>
-[]Line 1<br>
-Line 2<br>
-Line 3<br>
-<br>
-<br>
-<br>
-Line 7<br>
-Line 8<br>
-Line 9<br>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/position-br02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/position-br02-expected.html b/Editor/tests/cursor/position-br02-expected.html
deleted file mode 100644
index dacf76d..0000000
--- a/Editor/tests/cursor/position-br02-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>.</p>
-    <p>.</p>
-    <p>.</p>
-    <p>.</p>
-    <p>.[]</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/position-br02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/position-br02-input.html b/Editor/tests/cursor/position-br02-input.html
deleted file mode 100644
index 3e50268..0000000
--- a/Editor/tests/cursor/position-br02-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    for (var i = 0; i < 5; i++) {
-        Cursor_insertCharacter(".",false,true);
-        Cursor_moveRight();
-    }
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>[]<br></p>
-<p><br></p>
-<p><br></p>
-<p><br></p>
-<p><br></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/position-br03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/position-br03-expected.html b/Editor/tests/cursor/position-br03-expected.html
deleted file mode 100644
index a3cd77f..0000000
--- a/Editor/tests/cursor/position-br03-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>.L.i.n.e. .1.</p>
-    .
-    <br/>
-    <p>.L.i.n.e. .2.</p>
-    .
-    <br/>
-    <p>.L.i.n.e. .3.</p>
-    .
-    <br/>
-    <p>.L.i.n.e. .4.</p>
-    .
-    <br/>
-    <p>.L.i.n.e. .5.</p>
-    .[]
-    <br/>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/position-br03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/position-br03-input.html b/Editor/tests/cursor/position-br03-input.html
deleted file mode 100644
index 847e17c..0000000
--- a/Editor/tests/cursor/position-br03-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    for (var i = 0; i < 40; i++) {
-        Cursor_insertCharacter(".",false,true);
-        Cursor_moveRight();
-    }
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>[]Line 1</p><br>
-<p>Line 2</p><br>
-<p>Line 3</p><br>
-<p>Line 4</p><br>
-<p>Line 5</p><br>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/position-br04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/position-br04-expected.html b/Editor/tests/cursor/position-br04-expected.html
deleted file mode 100644
index ccf0795..0000000
--- a/Editor/tests/cursor/position-br04-expected.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>.L.i.n.e. .1.</p>
-    .
-    <br/>
-    <p>.L.i.n.e. .2.</p>
-    .
-    <br/>
-    .
-    <br/>
-    <p>.L.i.n.e. .3.</p>
-    .
-    <br/>
-    .
-    <br/>
-    <p>.L.i.n.e. .4.</p>
-    .
-    <br/>
-    .
-    <br/>
-    <p>.L.i.n.e. .5.</p>
-    .
-    <br/>
-    .[]
-    <br/>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/position-br04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/position-br04-input.html b/Editor/tests/cursor/position-br04-input.html
deleted file mode 100644
index ad5b1ad..0000000
--- a/Editor/tests/cursor/position-br04-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    for (var i = 0; i < 44; i++) {
-        Cursor_insertCharacter(".",false,true);
-        Cursor_moveRight();
-    }
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>[]Line 1</p><br>
-<p>Line 2</p><br><br>
-<p>Line 3</p><br><br>
-<p>Line 4</p><br><br>
-<p>Line 5</p><br><br>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textAfterFigure01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textAfterFigure01-expected.html b/Editor/tests/cursor/textAfterFigure01-expected.html
deleted file mode 100644
index 5498785..0000000
--- a/Editor/tests/cursor/textAfterFigure01-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <figure>
-      <img src="../figures/nothing.png"/>
-    </figure>
-    <p>X[]</p>
-    <p>one two three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textAfterFigure01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textAfterFigure01-input.html b/Editor/tests/cursor/textAfterFigure01-input.html
deleted file mode 100644
index 94f51cd..0000000
--- a/Editor/tests/cursor/textAfterFigure01-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter("X");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<figure>
-  <img src="../figures/nothing.png">
-</figure>[]
-<p>one two three</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textAfterFigure02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textAfterFigure02-expected.html b/Editor/tests/cursor/textAfterFigure02-expected.html
deleted file mode 100644
index 5163f29..0000000
--- a/Editor/tests/cursor/textAfterFigure02-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <figure>
-      <img src="../figures/nothing.png"/>
-    </figure>
-    <p>aX[]</p>
-    <p>one two three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textAfterFigure02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textAfterFigure02-input.html b/Editor/tests/cursor/textAfterFigure02-input.html
deleted file mode 100644
index 2dd1105..0000000
--- a/Editor/tests/cursor/textAfterFigure02-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter("X");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<figure>
-  <img src="../figures/nothing.png">
-</figure>a[]
-<p>one two three</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textAfterFigure03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textAfterFigure03-expected.html b/Editor/tests/cursor/textAfterFigure03-expected.html
deleted file mode 100644
index 6035b43..0000000
--- a/Editor/tests/cursor/textAfterFigure03-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <figure>
-      <img src="../figures/nothing.png"/>
-    </figure>
-    <p>X[]a</p>
-    <p>one two three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textAfterFigure03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textAfterFigure03-input.html b/Editor/tests/cursor/textAfterFigure03-input.html
deleted file mode 100644
index cec8ad3..0000000
--- a/Editor/tests/cursor/textAfterFigure03-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter("X");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<figure>
-  <img src="../figures/nothing.png">
-</figure>[]a
-<p>one two three</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textAfterTable01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textAfterTable01-expected.html b/Editor/tests/cursor/textAfterTable01-expected.html
deleted file mode 100644
index 85d005a..0000000
--- a/Editor/tests/cursor/textAfterTable01-expected.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <table>
-      <tbody>
-        <tr>
-          <td>Cell</td>
-          <td>Cell</td>
-        </tr>
-        <tr>
-          <td>Cell</td>
-          <td>Cell</td>
-        </tr>
-      </tbody>
-    </table>
-    <p>X[]</p>
-    <p>one two three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textAfterTable01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textAfterTable01-input.html b/Editor/tests/cursor/textAfterTable01-input.html
deleted file mode 100644
index 680af18..0000000
--- a/Editor/tests/cursor/textAfterTable01-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter("X");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<table>
-  <tr>
-    <td>Cell</td>
-    <td>Cell</td>
-  </tr>
-  <tr>
-    <td>Cell</td>
-    <td>Cell</td>
-  </tr>
-</table>[]
-<p>one two three</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textAfterTable02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textAfterTable02-expected.html b/Editor/tests/cursor/textAfterTable02-expected.html
deleted file mode 100644
index 0fb0003..0000000
--- a/Editor/tests/cursor/textAfterTable02-expected.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <table>
-      <tbody>
-        <tr>
-          <td>Cell</td>
-          <td>Cell</td>
-        </tr>
-        <tr>
-          <td>Cell</td>
-          <td>Cell</td>
-        </tr>
-      </tbody>
-    </table>
-    <p>aX[]</p>
-    <p>one two three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textAfterTable02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textAfterTable02-input.html b/Editor/tests/cursor/textAfterTable02-input.html
deleted file mode 100644
index acddf8c..0000000
--- a/Editor/tests/cursor/textAfterTable02-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter("X");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<table>
-  <tr>
-    <td>Cell</td>
-    <td>Cell</td>
-  </tr>
-  <tr>
-    <td>Cell</td>
-    <td>Cell</td>
-  </tr>
-</table>a[]
-<p>one two three</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textAfterTable03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textAfterTable03-expected.html b/Editor/tests/cursor/textAfterTable03-expected.html
deleted file mode 100644
index cf2c37c..0000000
--- a/Editor/tests/cursor/textAfterTable03-expected.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <table>
-      <tbody>
-        <tr>
-          <td>Cell</td>
-          <td>Cell</td>
-        </tr>
-        <tr>
-          <td>Cell</td>
-          <td>Cell</td>
-        </tr>
-      </tbody>
-    </table>
-    <p>X[]a</p>
-    <p>one two three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textAfterTable03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textAfterTable03-input.html b/Editor/tests/cursor/textAfterTable03-input.html
deleted file mode 100644
index 45aacd6..0000000
--- a/Editor/tests/cursor/textAfterTable03-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter("X");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<table>
-  <tr>
-    <td>Cell</td>
-    <td>Cell</td>
-  </tr>
-  <tr>
-    <td>Cell</td>
-    <td>Cell</td>
-  </tr>
-</table>[]a
-<p>one two three</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textBeforeFigure01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textBeforeFigure01-expected.html b/Editor/tests/cursor/textBeforeFigure01-expected.html
deleted file mode 100644
index 99ccaa9..0000000
--- a/Editor/tests/cursor/textBeforeFigure01-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>one two three</p>
-    <p>X[]</p>
-    <figure>
-      <img src="../figures/nothing.png"/>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textBeforeFigure01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textBeforeFigure01-input.html b/Editor/tests/cursor/textBeforeFigure01-input.html
deleted file mode 100644
index 497d51d..0000000
--- a/Editor/tests/cursor/textBeforeFigure01-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter("X");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>one two three</p>
-[]<figure>
-  <img src="../figures/nothing.png">
-</figure>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textBeforeFigure02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textBeforeFigure02-expected.html b/Editor/tests/cursor/textBeforeFigure02-expected.html
deleted file mode 100644
index 92b6ebe..0000000
--- a/Editor/tests/cursor/textBeforeFigure02-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>one two three</p>
-    <p>aX[]</p>
-    <figure>
-      <img src="../figures/nothing.png"/>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textBeforeFigure02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textBeforeFigure02-input.html b/Editor/tests/cursor/textBeforeFigure02-input.html
deleted file mode 100644
index 481b99f..0000000
--- a/Editor/tests/cursor/textBeforeFigure02-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter("X");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>one two three</p>
-a[]<figure>
-  <img src="../figures/nothing.png">
-</figure>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textBeforeFigure03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textBeforeFigure03-expected.html b/Editor/tests/cursor/textBeforeFigure03-expected.html
deleted file mode 100644
index 37ef96c..0000000
--- a/Editor/tests/cursor/textBeforeFigure03-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>one two three</p>
-    <p>X[]a</p>
-    <figure>
-      <img src="../figures/nothing.png"/>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textBeforeFigure03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textBeforeFigure03-input.html b/Editor/tests/cursor/textBeforeFigure03-input.html
deleted file mode 100644
index 9489405..0000000
--- a/Editor/tests/cursor/textBeforeFigure03-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter("X");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>one two three</p>
-[]a<figure>
-  <img src="../figures/nothing.png">
-</figure>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textBeforeTable01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textBeforeTable01-expected.html b/Editor/tests/cursor/textBeforeTable01-expected.html
deleted file mode 100644
index 240c213..0000000
--- a/Editor/tests/cursor/textBeforeTable01-expected.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>one two three</p>
-    <p>X[]</p>
-    <table>
-      <tbody>
-        <tr>
-          <td>Cell</td>
-          <td>Cell</td>
-        </tr>
-        <tr>
-          <td>Cell</td>
-          <td>Cell</td>
-        </tr>
-      </tbody>
-    </table>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textBeforeTable01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textBeforeTable01-input.html b/Editor/tests/cursor/textBeforeTable01-input.html
deleted file mode 100644
index 6123d87..0000000
--- a/Editor/tests/cursor/textBeforeTable01-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter("X");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>one two three</p>
-[]<table>
-  <tr>
-    <td>Cell</td>
-    <td>Cell</td>
-  </tr>
-  <tr>
-    <td>Cell</td>
-    <td>Cell</td>
-  </tr>
-</table>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textBeforeTable02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textBeforeTable02-expected.html b/Editor/tests/cursor/textBeforeTable02-expected.html
deleted file mode 100644
index 0ba5dd0..0000000
--- a/Editor/tests/cursor/textBeforeTable02-expected.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>one two three</p>
-    <p>aX[]</p>
-    <table>
-      <tbody>
-        <tr>
-          <td>Cell</td>
-          <td>Cell</td>
-        </tr>
-        <tr>
-          <td>Cell</td>
-          <td>Cell</td>
-        </tr>
-      </tbody>
-    </table>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textBeforeTable02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textBeforeTable02-input.html b/Editor/tests/cursor/textBeforeTable02-input.html
deleted file mode 100644
index f8fcf12..0000000
--- a/Editor/tests/cursor/textBeforeTable02-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter("X");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>one two three</p>
-a[]<table>
-  <tr>
-    <td>Cell</td>
-    <td>Cell</td>
-  </tr>
-  <tr>
-    <td>Cell</td>
-    <td>Cell</td>
-  </tr>
-</table>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textBeforeTable03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textBeforeTable03-expected.html b/Editor/tests/cursor/textBeforeTable03-expected.html
deleted file mode 100644
index 36a0f77..0000000
--- a/Editor/tests/cursor/textBeforeTable03-expected.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>one two three</p>
-    <p>X[]a</p>
-    <table>
-      <tbody>
-        <tr>
-          <td>Cell</td>
-          <td>Cell</td>
-        </tr>
-        <tr>
-          <td>Cell</td>
-          <td>Cell</td>
-        </tr>
-      </tbody>
-    </table>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/cursor/textBeforeTable03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/cursor/textBeforeTable03-input.html b/Editor/tests/cursor/textBeforeTable03-input.html
deleted file mode 100644
index f1193b1..0000000
--- a/Editor/tests/cursor/textBeforeTable03-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter("X");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>one two three</p>
-[]a<table>
-  <tr>
-    <td>Cell</td>
-    <td>Cell</td>
-  </tr>
-  <tr>
-    <td>Cell</td>
-    <td>Cell</td>
-  </tr>
-</table>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/Position_next-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/Position_next-expected.html b/Editor/tests/dom/Position_next-expected.html
deleted file mode 100644
index e960157..0000000
--- a/Editor/tests/dom/Position_next-expected.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<html>
-  <head>
-  </head>
-  <body>
-    allPositions.length = 84
-    <br/>
-    Test results: total 84, pass 84, fail 0
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/Position_next-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/Position_next-input.html b/Editor/tests/dom/Position_next-input.html
deleted file mode 100644
index 7884c75..0000000
--- a/Editor/tests/dom/Position_next-input.html
+++ /dev/null
@@ -1,106 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script type="text/javascript" src="RangeTest.js"></script>
-<script>
-
-function arraysEqual(a,b)
-{
-    if (a.length != b.length)
-        return false;
-
-    for (var i = 0; i < a.length; i++) {
-        if (a[i] != b[i])
-            return false;
-    }
-
-    return true;
-}
-
-function performTest()
-{
-    var root = document.body;
-    removeWhitespaceTextNodes(root);
-    setup(root);
-
-    var total = 0;
-    var pass = 0;
-    var fail = 0;
-    for (var index = 0; index < allPositions.length; index++) {
-        var pos = allPositions[index];
-
-        total++;
-
-        var actual = Position_next(pos);
-        var expected = allPositions[index+1];
-
-        if (comparePositions(actual,expected))
-            pass++;
-        else {
-            debug("fail: "+actual+" and "+expected+" (index "+index+")");
-            fail++;
-        }
-    }
-
-    var message1 = "allPositions.length = "+allPositions.length;
-    var message2 = "Test results: total "+total+", pass "+pass+", fail "+fail;
-    DOM_deleteAllChildren(document.body);
-    DOM_appendChild(document.body,DOM_createTextNode(document,message1));
-    DOM_appendChild(document.body,DOM_createElement(document,"BR"));
-    DOM_appendChild(document.body,DOM_createTextNode(document,message2));
-
-    function comparePositions(a,b)
-    {
-        if ((a == null) && (b == null))
-            return true;
-        if ((a != null) && (b != null) &&
-            (a.node == b.node) && (a.offset == b.offset))
-            return true;
-        return false;
-    }
-}
-</script>
-</head>
-<body>
-
-<div style="display: none">
-    <div>
-        <div>
-            <div></div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div></div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div>One</div>
-            <div>Two</div>
-            <div></div>
-        </div>
-    </div>
-    <div>
-        <div>ONE</div>
-        <div>TWO</div>
-        <div>THREE</div>
-    </div>
-    <div>
-        <div>
-            <div></div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div></div>
-        </div>
-    </div>
-</div>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/Position_prev-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/Position_prev-expected.html b/Editor/tests/dom/Position_prev-expected.html
deleted file mode 100644
index e960157..0000000
--- a/Editor/tests/dom/Position_prev-expected.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<html>
-  <head>
-  </head>
-  <body>
-    allPositions.length = 84
-    <br/>
-    Test results: total 84, pass 84, fail 0
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/Position_prev-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/Position_prev-input.html b/Editor/tests/dom/Position_prev-input.html
deleted file mode 100644
index 010737a..0000000
--- a/Editor/tests/dom/Position_prev-input.html
+++ /dev/null
@@ -1,104 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script type="text/javascript" src="RangeTest.js"></script>
-<script>
-
-function arraysEqual(a,b)
-{
-    if (a.length != b.length)
-        return false;
-
-    for (var i = 0; i < a.length; i++) {
-        if (a[i] != b[i])
-            return false;
-    }
-
-    return true;
-}
-
-function performTest()
-{
-    var root = document.body;
-    removeWhitespaceTextNodes(root);
-    setup(root);
-
-    var total = 0;
-    var pass = 0;
-    var fail = 0;
-    for (var index = 0; index < allPositions.length; index++) {
-        var pos = allPositions[index];
-
-        total++;
-
-        var actual = Position_prev(pos);
-        var expected = allPositions[index-1];
-
-        if (comparePositions(actual,expected))
-            pass++;
-        else
-            fail++;
-    }
-
-    var message1 = "allPositions.length = "+allPositions.length;
-    var message2 = "Test results: total "+total+", pass "+pass+", fail "+fail;
-    DOM_deleteAllChildren(document.body);
-    DOM_appendChild(document.body,DOM_createTextNode(document,message1));
-    DOM_appendChild(document.body,DOM_createElement(document,"BR"));
-    DOM_appendChild(document.body,DOM_createTextNode(document,message2));
-
-    function comparePositions(a,b)
-    {
-        if ((a == null) && (b == null))
-            return true;
-        if ((a != null) && (b != null) &&
-            (a.node == b.node) && (a.offset == b.offset))
-            return true;
-        return false;
-    }
-}
-</script>
-</head>
-<body>
-
-<div style="display: none">
-    <div>
-        <div>
-            <div></div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div></div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div>One</div>
-            <div>Two</div>
-            <div></div>
-        </div>
-    </div>
-    <div>
-        <div>ONE</div>
-        <div>TWO</div>
-        <div>THREE</div>
-    </div>
-    <div>
-        <div>
-            <div></div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div></div>
-        </div>
-    </div>
-</div>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/RangeTest.js
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/RangeTest.js b/Editor/tests/dom/RangeTest.js
deleted file mode 100644
index 2d69cc3..0000000
--- a/Editor/tests/dom/RangeTest.js
+++ /dev/null
@@ -1,182 +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.
-
-var allPositions;
-var allPositionsIndexMap;
-
-function positionKey(pos)
-{
-    return pos.node._nodeId+","+pos.offset;
-}
-
-function removeWhitespaceTextNodes(parent)
-{
-    var next;
-    for (var child = parent.firstChild; child != null; child = next) {
-        next = child.nextSibling;
-        if (isWhitespaceTextNode(child) || (child.nodeType == Node.COMMENT_NODE))
-            DOM_deleteNode(child);
-        else
-            removeWhitespaceTextNodes(child);
-    }
-}
-
-function setup(root)
-{
-    allPositions = getAllPositions(root);
-
-    allPositionsIndexMap = new Object();
-    for (var i = 0; i < allPositions.length; i++) {
-        var pos = allPositions[i];
-        allPositionsIndexMap[positionKey(pos)] = i;
-    }
-}
-
-function comparePositionsBeforeAndAfter(fun)
-{
-    var messages = new Array();
-    var positions = getAllPositions(document.body);
-    var positionStrings = new Array();
-    for (var i = 0; i < positions.length; i++) {
-        messages.push("Before: positions["+i+"] = "+positions[i]);
-        positionStrings[i] = positions[i].toString();
-    }
-
-    Position_trackWhileExecuting(positions,function() {
-        fun();
-
-    });
-
-    messages.push("");
-    for (var i = 0; i < positions.length; i++) {
-        if (positionStrings[i] != positions[i].toString())
-            messages.push("After: positions["+i+"] = "+positions[i]+" - changed from "+
-                          positionStrings[i]);
-        else
-            messages.push("After: positions["+i+"] = "+positions[i]);
-    }
-
-    return messages.join("\n");
-}
-
-function getAllPositions(root)
-{
-    var includeEmptyElements = true;
-
-    var positions = new Array();
-    var rootOffset = DOM_nodeOffset(root);
-//    positions.push(new Position(root.parentNode,rootOffset));
-    recurse(root);
-//    positions.push(new Position(root.parentNode,rootOffset+1));
-    return positions;
-
-    function recurse(node)
-    {
-        if (node.nodeType == Node.TEXT_NODE) {
-            for (var offset = 0; offset <= node.nodeValue.length; offset++)
-                positions.push(new Position(node,offset));
-        }
-        else if ((node.nodeType == Node.ELEMENT_NODE) &&
-                 (node.firstChild != null) || includeEmptyElements) {
-            var offset = 0;
-            for (var child = node.firstChild; child != null; child = child.nextSibling) {
-                positions.push(new Position(node,offset));
-                recurse(child);
-                offset++;
-            }
-            positions.push(new Position(node,offset));
-        }
-    }
-}
-
-function getPositionIndex(pos)
-{
-    var result = allPositionsIndexMap[pos.node._nodeId+","+pos.offset];
-    if (result == null)
-        throw new Error(pos+": no index for position");
-    return result;
-}
-
-function isForwardsSimple(range)
-{
-    var startIndex = getPositionIndex(range.start);
-    var endIndex = getPositionIndex(range.end);
-//    debug("startIndex = "+indices.startIndex+", endIndex = "+indices.endIndex);
-    return (endIndex >= startIndex);
-}
-
-function getOutermostNodesSimple(range)
-{
-    if (!isForwardsSimple(range)) {
-        var reverse = new Range(range.end.node,range.end.offset,
-                                range.start.node,range.start.offset);
-        if (!Range_isForwards(reverse)) {
-            var startIndex = getPositionIndex(range.start);
-            var endIndex = getPositionIndex(range.end);
-            debug("startIndex = "+startIndex+", endIndex = "+endIndex);
-            throw new Error("Both range "+range+" and its reverse are not forwards");
-        }
-        return getOutermostNodesSimple(reverse);
-    }
-
-    var startIndex = getPositionIndex(range.start);
-    var endIndex = getPositionIndex(range.end);
-    var havePositions = new Object();
-
-    var allArray = new Array();
-    var allSet = new NodeSet();
-
-    for (var i = startIndex; i <= endIndex; i++) {
-        var pos = allPositions[i];
-
-        if ((pos.node.nodeType == Node.TEXT_NODE) && (i < endIndex)) {
-            allArray.push(pos.node);
-            allSet.add(pos.node);
-        }
-        else if (pos.node.nodeType == Node.ELEMENT_NODE) {
-            var prev = new Position(pos.node,pos.offset-1);
-            if (havePositions[positionKey(prev)]) {
-                var target = pos.node.childNodes[pos.offset-1];
-                allArray.push(target);
-                allSet.add(target);
-            }
-            havePositions[positionKey(pos)] = true;
-        }
-
-    }
-
-    var outermostArray = new Array();
-    var outermostSet = new NodeSet();
-
-    allArray.forEach(function (node) {
-        if (!outermostSet.contains(node) && !setContainsAncestor(allSet,node)) {
-            outermostArray.push(node);
-            outermostSet.add(node);
-        }
-    });
-
-    return outermostArray;
-
-    function setContainsAncestor(set,node)
-    {
-        for (var ancestor = node.parentNode; ancestor != null; ancestor = ancestor.parentNode) {
-            if (set.contains(ancestor))
-                return true;
-        }
-        return false;
-    }
-}

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/Range_getOutermostNodes-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/Range_getOutermostNodes-expected.html b/Editor/tests/dom/Range_getOutermostNodes-expected.html
deleted file mode 100644
index a4a0331..0000000
--- a/Editor/tests/dom/Range_getOutermostNodes-expected.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<html>
-  <head>
-  </head>
-  <body>
-    allPositions.length = 82
-    <br/>
-    Test results: total 6724, pass 6724, fail 0
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/Range_getOutermostNodes-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/Range_getOutermostNodes-input.html b/Editor/tests/dom/Range_getOutermostNodes-input.html
deleted file mode 100644
index 6518538..0000000
--- a/Editor/tests/dom/Range_getOutermostNodes-input.html
+++ /dev/null
@@ -1,97 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script type="text/javascript" src="RangeTest.js"></script>
-<script>
-
-function arraysEqual(a,b)
-{
-    if (a.length != b.length)
-        return false;
-
-    for (var i = 0; i < a.length; i++) {
-        if (a[i] != b[i])
-            return false;
-    }
-
-    return true;
-}
-
-function performTest()
-{
-    var root = document.getElementById("root");
-    removeWhitespaceTextNodes(root);
-    setup(root);
-
-    var total = 0;
-    var pass = 0;
-    var fail = 0;
-    for (var startIndex = 0; startIndex < allPositions.length; startIndex++) {
-        for (var endIndex = 0; endIndex < allPositions.length; endIndex++) {
-            var start = allPositions[startIndex];
-            var end = allPositions[endIndex];
-            var range = new Range(start.node,start.offset,end.node,end.offset);
-
-            total++;
-
-            var actual = Range_getOutermostNodes(range);
-            var expected = getOutermostNodesSimple(range);
-            if (arraysEqual(actual,expected))
-                pass++;
-            else
-                fail++;
-        }
-    }
-
-    var message1 = "allPositions.length = "+allPositions.length;
-    var message2 = "Test results: total "+total+", pass "+pass+", fail "+fail;
-    DOM_deleteAllChildren(document.body);
-    DOM_appendChild(document.body,DOM_createTextNode(document,message1));
-    DOM_appendChild(document.body,DOM_createElement(document,"BR"));
-    DOM_appendChild(document.body,DOM_createTextNode(document,message2));
-}
-</script>
-</head>
-<body>
-
-<div id="root" style="display: none">
-    <div>
-        <div>
-            <div></div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div></div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div>One</div>
-            <div>Two</div>
-            <div></div>
-        </div>
-    </div>
-    <div>
-        <div>ONE</div>
-        <div>TWO</div>
-        <div>THREE</div>
-    </div>
-    <div>
-        <div>
-            <div></div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div></div>
-        </div>
-    </div>
-</div>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/Range_isForward-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/Range_isForward-expected.html b/Editor/tests/dom/Range_isForward-expected.html
deleted file mode 100644
index a4a0331..0000000
--- a/Editor/tests/dom/Range_isForward-expected.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<html>
-  <head>
-  </head>
-  <body>
-    allPositions.length = 82
-    <br/>
-    Test results: total 6724, pass 6724, fail 0
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/Range_isForward-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/Range_isForward-input.html b/Editor/tests/dom/Range_isForward-input.html
deleted file mode 100644
index d301a25..0000000
--- a/Editor/tests/dom/Range_isForward-input.html
+++ /dev/null
@@ -1,97 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script type="text/javascript" src="RangeTest.js"></script>
-<script>
-
-function arraysEqual(a,b)
-{
-    if (a.length != b.length)
-        return false;
-
-    for (var i = 0; i < a.length; i++) {
-        if (a[i] != b[i])
-            return false;
-    }
-
-    return true;
-}
-
-function performTest()
-{
-    var root = document.getElementById("root");
-    removeWhitespaceTextNodes(root);
-    setup(root);
-
-    var total = 0;
-    var pass = 0;
-    var fail = 0;
-    for (var startIndex = 0; startIndex < allPositions.length; startIndex++) {
-        for (var endIndex = 0; endIndex < allPositions.length; endIndex++) {
-            var start = allPositions[startIndex];
-            var end = allPositions[endIndex];
-            var range = new Range(start.node,start.offset,end.node,end.offset);
-
-            total++;
-
-            var actual = Range_isForwards(range);
-            var expected = isForwardsSimple(range);
-            if (actual == expected)
-                pass++;
-            else
-                fail++;
-        }
-    }
-
-    var message1 = "allPositions.length = "+allPositions.length;
-    var message2 = "Test results: total "+total+", pass "+pass+", fail "+fail;
-    DOM_deleteAllChildren(document.body);
-    DOM_appendChild(document.body,DOM_createTextNode(document,message1));
-    DOM_appendChild(document.body,DOM_createElement(document,"BR"));
-    DOM_appendChild(document.body,DOM_createTextNode(document,message2));
-}
-</script>
-</head>
-<body>
-
-<div id="root" style="display: none">
-    <div>
-        <div>
-            <div></div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div></div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div>One</div>
-            <div>Two</div>
-            <div></div>
-        </div>
-    </div>
-    <div>
-        <div>ONE</div>
-        <div>TWO</div>
-        <div>THREE</div>
-    </div>
-    <div>
-        <div>
-            <div></div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div></div>
-            <div></div>
-        </div>
-        <div>
-            <div></div>
-        </div>
-    </div>
-</div>
-
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/avoidInline01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/avoidInline01-input.html b/Editor/tests/dom/avoidInline01-input.html
deleted file mode 100644
index 2918fa6..0000000
--- a/Editor/tests/dom/avoidInline01-input.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Hierarchy_avoidInlineChildren(document.body);
-}
-</script>
-</head>
-<body>
-One
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/avoidInline02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/avoidInline02-input.html b/Editor/tests/dom/avoidInline02-input.html
deleted file mode 100644
index d73d41b..0000000
--- a/Editor/tests/dom/avoidInline02-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Hierarchy_avoidInlineChildren(document.body);
-}
-</script>
-</head>
-<body>
-One
-<p>Two</p>
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/avoidInline03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/avoidInline03-input.html b/Editor/tests/dom/avoidInline03-input.html
deleted file mode 100644
index 3ed1274..0000000
--- a/Editor/tests/dom/avoidInline03-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Hierarchy_avoidInlineChildren(document.body);
-}
-</script>
-</head>
-<body>
-<p>One</p>
-Two
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/avoidInline04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/avoidInline04-input.html b/Editor/tests/dom/avoidInline04-input.html
deleted file mode 100644
index 2610418..0000000
--- a/Editor/tests/dom/avoidInline04-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Hierarchy_avoidInlineChildren(document.body);
-}
-</script>
-</head>
-<body>
-One
-<p>Two</p>
-Three
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/avoidInline05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/avoidInline05-input.html b/Editor/tests/dom/avoidInline05-input.html
deleted file mode 100644
index cd8f440..0000000
--- a/Editor/tests/dom/avoidInline05-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Hierarchy_avoidInlineChildren(document.body);
-}
-</script>
-</head>
-<body>
-<p>One</p>
-Two
-<p>Three</p>
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/avoidInline06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/avoidInline06-input.html b/Editor/tests/dom/avoidInline06-input.html
deleted file mode 100644
index fff9662..0000000
--- a/Editor/tests/dom/avoidInline06-input.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Hierarchy_avoidInlineChildren(document.body);
-}
-</script>
-</head>
-<body>
-One <b>Two</b> Three
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/avoidInline07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/avoidInline07-input.html b/Editor/tests/dom/avoidInline07-input.html
deleted file mode 100644
index 2b0ffb6..0000000
--- a/Editor/tests/dom/avoidInline07-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Hierarchy_avoidInlineChildren(document.body);
-}
-</script>
-</head>
-<body>
-One <b>Two</b> Three
-<p>Test</p>
-Four <b>Five</b> Six
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/avoidInline08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/avoidInline08-expected.html b/Editor/tests/dom/avoidInline08-expected.html
deleted file mode 100644
index 6d06b64..0000000
--- a/Editor/tests/dom/avoidInline08-expected.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Test 1</p>
-    <p>
-      One
-      <b>Two</b>
-      Three
-    </p>
-    <p>Test 2</p>
-    <p>
-      Four
-      <b>Five</b>
-      Six
-    </p>
-    <p>Test 3</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/avoidInline08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/avoidInline08-input.html b/Editor/tests/dom/avoidInline08-input.html
deleted file mode 100644
index ab28de1..0000000
--- a/Editor/tests/dom/avoidInline08-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Hierarchy_avoidInlineChildren(document.body);
-}
-</script>
-</head>
-<body>
-<p>Test 1</p>
-One <b>Two</b> Three
-<p>Test 2</p>
-Four <b>Five</b> Six
-<p>Test 3</p>
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph01-input.html b/Editor/tests/dom/ensureInlineNodesInParagraph01-input.html
deleted file mode 100644
index 9660b9d..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph01-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-   Hierarchy_ensureInlineNodesInParagraph(document.body.firstChild,true);
-}
-</script>
-</head>
-<body>
-
-Test
-
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph02-input.html b/Editor/tests/dom/ensureInlineNodesInParagraph02-input.html
deleted file mode 100644
index b46f632..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph02-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-   var br = document.getElementsByTagName("BR")[0];
-   Hierarchy_ensureInlineNodesInParagraph(br,true);
-}
-</script>
-</head>
-<body>
-
-<br>
-One
-<br>
-Two
-<br>
-
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph03-input.html b/Editor/tests/dom/ensureInlineNodesInParagraph03-input.html
deleted file mode 100644
index aaeacf0..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph03-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-   var br = document.getElementsByTagName("BR")[1];
-   Hierarchy_ensureInlineNodesInParagraph(br,true);
-}
-</script>
-</head>
-<body>
-
-<br>
-One
-<br>
-Two
-<br>
-
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph04-input.html b/Editor/tests/dom/ensureInlineNodesInParagraph04-input.html
deleted file mode 100644
index 584b550..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph04-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-   var br = document.getElementsByTagName("BR")[2];
-   Hierarchy_ensureInlineNodesInParagraph(br,true);
-}
-</script>
-</head>
-<body>
-
-<br>
-One
-<br>
-Two
-<br>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph05-expected.html b/Editor/tests/dom/ensureInlineNodesInParagraph05-expected.html
deleted file mode 100644
index a88c020..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph05-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <br/>
-      One
-      <br id="first"/>
-      Two
-      <br/>
-    </p>
-    <p>Explicit paragraph</p>
-    <p>
-      <br/>
-      Three
-      <br id="second"/>
-      Four
-      <br/>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph05-input.html b/Editor/tests/dom/ensureInlineNodesInParagraph05-input.html
deleted file mode 100644
index 920df14..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph05-input.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var first = document.getElementById("first");
-    var second = document.getElementById("second");
-    Hierarchy_ensureInlineNodesInParagraph(first,true);
-    Hierarchy_ensureInlineNodesInParagraph(second,true);
-}
-</script>
-</head>
-<body>
-
-<br>
-One
-<br id="first">
-Two
-<br>
-
-<p>Explicit paragraph</p>
-
-<br>
-Three
-<br id="second">
-Four
-<br>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph06-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph06-expected.html b/Editor/tests/dom/ensureInlineNodesInParagraph06-expected.html
deleted file mode 100644
index b59738c..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph06-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <br id="first"/>
-      One
-      <br/>
-      Two
-      <br/>
-    </p>
-    <p>Explicit paragraph</p>
-    <p>
-      <br id="second"/>
-      Three
-      <br/>
-      Four
-      <br/>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph06-input.html b/Editor/tests/dom/ensureInlineNodesInParagraph06-input.html
deleted file mode 100644
index 840ce1f..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph06-input.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var first = document.getElementById("first");
-    var second = document.getElementById("second");
-    Hierarchy_ensureInlineNodesInParagraph(first,true);
-    Hierarchy_ensureInlineNodesInParagraph(second,true);
-}
-</script>
-</head>
-<body>
-
-<br id="first">
-One
-<br>
-Two
-<br>
-
-<p>Explicit paragraph</p>
-
-<br id="second">
-Three
-<br>
-Four
-<br>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph07-expected.html b/Editor/tests/dom/ensureInlineNodesInParagraph07-expected.html
deleted file mode 100644
index c6ce7c7..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph07-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <br/>
-      One
-      <br/>
-      Two
-      <br id="first"/>
-    </p>
-    <p>Explicit paragraph</p>
-    <p>
-      <br/>
-      Three
-      <br/>
-      Four
-      <br id="second"/>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph07-input.html b/Editor/tests/dom/ensureInlineNodesInParagraph07-input.html
deleted file mode 100644
index e084d85..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph07-input.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var first = document.getElementById("first");
-    var second = document.getElementById("second");
-    Hierarchy_ensureInlineNodesInParagraph(first,true);
-    Hierarchy_ensureInlineNodesInParagraph(second,true);
-}
-</script>
-</head>
-<body>
-
-<br>
-One
-<br>
-Two
-<br id="first">
-
-<p>Explicit paragraph</p>
-
-<br>
-Three
-<br>
-Four
-<br id="second">
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph08-expected.html b/Editor/tests/dom/ensureInlineNodesInParagraph08-expected.html
deleted file mode 100644
index 8825c42..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph08-expected.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <br/>
-      One
-      <br id="first"/>
-      Two
-      <br/>
-    </p>
-    <ol>
-      <li>Item 1</li>
-      <li>Item 2</li>
-      <li>Item 3</li>
-    </ol>
-    <p>
-      <br/>
-      Three
-      <br id="second"/>
-      Four
-      <br/>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph08-input.html b/Editor/tests/dom/ensureInlineNodesInParagraph08-input.html
deleted file mode 100644
index 2985dbc..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph08-input.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var first = document.getElementById("first");
-    var second = document.getElementById("second");
-    Hierarchy_ensureInlineNodesInParagraph(first,true);
-    Hierarchy_ensureInlineNodesInParagraph(second,true);
-}
-</script>
-</head>
-<body>
-
-<br>
-One
-<br id="first">
-Two
-<br>
-
-<ol>
-  <li>Item 1</li>
-  <li>Item 2</li>
-  <li>Item 3</li>
-</ol>
-
-<br>
-Three
-<br id="second">
-Four
-<br>
-
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph09-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph09-input.html b/Editor/tests/dom/ensureInlineNodesInParagraph09-input.html
deleted file mode 100644
index 369ce25..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph09-input.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var text1 = DOM_createTextNode(document,"One");
-    var text2 = DOM_createTextNode(document,"Two");
-    var text3 = DOM_createTextNode(document,"Three");
-    DOM_deleteAllChildren(document.body);
-    DOM_appendChild(document.body,text1);
-    DOM_appendChild(document.body,text2);
-    DOM_appendChild(document.body,text3);
-
-    var range = new Range(document.body,1,document.body,2);
-
-    Range_trackWhileExecuting(range,function() {
-        Hierarchy_ensureInlineNodesInParagraph(text1);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph10-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph10-input.html b/Editor/tests/dom/ensureInlineNodesInParagraph10-input.html
deleted file mode 100644
index 98abf06..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph10-input.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var text1 = DOM_createTextNode(document,"One");
-    var text2 = DOM_createTextNode(document,"Two");
-    var text3 = DOM_createTextNode(document,"Three");
-    DOM_deleteAllChildren(document.body);
-    DOM_appendChild(document.body,text1);
-    DOM_appendChild(document.body,text2);
-    DOM_appendChild(document.body,text3);
-
-    var range = new Range(document.body,1,document.body,2);
-
-    Range_trackWhileExecuting(range,function() {
-        Hierarchy_ensureInlineNodesInParagraph(text2);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph11-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph11-input.html b/Editor/tests/dom/ensureInlineNodesInParagraph11-input.html
deleted file mode 100644
index d012315..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph11-input.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var text1 = DOM_createTextNode(document,"One");
-    var text2 = DOM_createTextNode(document,"Two");
-    var text3 = DOM_createTextNode(document,"Three");
-    DOM_deleteAllChildren(document.body);
-    DOM_appendChild(document.body,text1);
-    DOM_appendChild(document.body,text2);
-    DOM_appendChild(document.body,text3);
-
-    var range = new Range(document.body,1,document.body,2);
-
-    Range_trackWhileExecuting(range,function() {
-        Hierarchy_ensureInlineNodesInParagraph(text3);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph12-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph12-input.html b/Editor/tests/dom/ensureInlineNodesInParagraph12-input.html
deleted file mode 100644
index 754d737..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph12-input.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var text1 = DOM_createTextNode(document,"One");
-    var text2 = DOM_createTextNode(document,"Two");
-    var text3 = DOM_createTextNode(document,"Three");
-    DOM_deleteAllChildren(document.body);
-    DOM_appendChild(document.body,text1);
-    DOM_appendChild(document.body,text2);
-    DOM_appendChild(document.body,text3);
-
-    var range = new Range(document.body,1,document.body,2);
-
-    Range_trackWhileExecuting(range,function() {
-        Range_ensureInlineNodesInParagraph(range);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-</body>
-</html>

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

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

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

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

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

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

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/8eda56a5/Editor/tests/dom/ensureInlineNodesInParagraph16-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/ensureInlineNodesInParagraph16-input.html b/Editor/tests/dom/ensureInlineNodesInParagraph16-input.html
deleted file mode 100644
index 96d7002..0000000
--- a/Editor/tests/dom/ensureInlineNodesInParagraph16-input.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var text1 = DOM_createTextNode(document,"One");
-    var text2 = DOM_createTextNode(document,"Two");
-    var text3 = DOM_createTextNode(document,"Three");
-    DOM_deleteAllChildren(document.body);
-    DOM_appendChild(document.body,text1);
-    DOM_appendChild(document.body,text2);
-    DOM_appendChild(document.body,text3);
-
-    var range = new Range(document.body,0,document.body,3);
-
-    Range_trackWhileExecuting(range,function() {
-        Range_ensureInlineNodesInParagraph(range);
-    });
-    showRangeAsBrackets(range);
-}
-</script>
-</head>
-<body>
-</body>
-</html>

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

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

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

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

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

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

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

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

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