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/16 12:57:45 UTC

[10/51] [partial] incubator-corinthia git commit: Added editorFramework in experiments.

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-hierarchy03b-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-hierarchy03b-input.html b/experiments/Editor/tests/outline/heading-hierarchy03b-input.html
deleted file mode 100644
index 3ddf170..0000000
--- a/experiments/Editor/tests/outline/heading-hierarchy03b-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-    Formatting_applyFormattingChanges("H1",{});
-    PostponedActions_perform();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li><p>One</p></li>
-  <li>
-    <p>Two</p>
-    <p>[Three]</p>
-    <p>Four</p>
-  </li>
-  <li><p>Five</p></li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-hierarchy03c-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-hierarchy03c-expected.html b/experiments/Editor/tests/outline/heading-hierarchy03c-expected.html
deleted file mode 100644
index 0ae7cc1..0000000
--- a/experiments/Editor/tests/outline/heading-hierarchy03c-expected.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li><p>One</p></li>
-      <li>
-        <p>Two</p>
-        <p>Three</p>
-      </li>
-    </ol>
-    <h1 id="item1">[Four]</h1>
-    <ol>
-      <li><p>Five</p></li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-hierarchy03c-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-hierarchy03c-input.html b/experiments/Editor/tests/outline/heading-hierarchy03c-input.html
deleted file mode 100644
index 0ab35d4..0000000
--- a/experiments/Editor/tests/outline/heading-hierarchy03c-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-    Formatting_applyFormattingChanges("H1",{});
-    PostponedActions_perform();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li><p>One</p></li>
-  <li>
-    <p>Two</p>
-    <p>Three</p>
-    <p>[Four]</p>
-  </li>
-  <li><p>Five</p></li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-hierarchy04a-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-hierarchy04a-expected.html b/experiments/Editor/tests/outline/heading-hierarchy04a-expected.html
deleted file mode 100644
index a95e2c1..0000000
--- a/experiments/Editor/tests/outline/heading-hierarchy04a-expected.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-    </ol>
-    <h1 id="item1">[Two]</h1>
-    <ol>
-      <li>
-        <ul>
-          <li>Three</li>
-          <li>Four</li>
-        </ul>
-      </li>
-      <li>Five</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-hierarchy04a-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-hierarchy04a-input.html b/experiments/Editor/tests/outline/heading-hierarchy04a-input.html
deleted file mode 100644
index 426b96e..0000000
--- a/experiments/Editor/tests/outline/heading-hierarchy04a-input.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-    Formatting_applyFormattingChanges("H1",{});
-    PostponedActions_perform();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>
-    <ul>
-      <li>[Two]</li>
-      <li>Three</li>
-      <li>Four</li>
-    </ul>
-  </li>
-  <li>Five</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-hierarchy04b-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-hierarchy04b-expected.html b/experiments/Editor/tests/outline/heading-hierarchy04b-expected.html
deleted file mode 100644
index ca2038a..0000000
--- a/experiments/Editor/tests/outline/heading-hierarchy04b-expected.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li><ul><li>Two</li></ul></li>
-    </ol>
-    <h1 id="item1">[Three]</h1>
-    <ol>
-      <li><ul><li>Four</li></ul></li>
-      <li>Five</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-hierarchy04b-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-hierarchy04b-input.html b/experiments/Editor/tests/outline/heading-hierarchy04b-input.html
deleted file mode 100644
index 34593b2..0000000
--- a/experiments/Editor/tests/outline/heading-hierarchy04b-input.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-    Formatting_applyFormattingChanges("H1",{});
-    PostponedActions_perform();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>
-    <ul>
-      <li>Two</li>
-      <li>[Three]</li>
-      <li>Four</li>
-    </ul>
-  </li>
-  <li>Five</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-hierarchy04c-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-hierarchy04c-expected.html b/experiments/Editor/tests/outline/heading-hierarchy04c-expected.html
deleted file mode 100644
index c320022..0000000
--- a/experiments/Editor/tests/outline/heading-hierarchy04c-expected.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ol>
-      <li>One</li>
-      <li>
-        <ul>
-          <li>Two</li>
-          <li>Three</li>
-        </ul>
-      </li>
-    </ol>
-    <h1 id="item1">[Four]</h1>
-    <ol>
-      <li>Five</li>
-    </ol>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-hierarchy04c-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-hierarchy04c-input.html b/experiments/Editor/tests/outline/heading-hierarchy04c-input.html
deleted file mode 100644
index 6f148fe..0000000
--- a/experiments/Editor/tests/outline/heading-hierarchy04c-input.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-    Formatting_applyFormattingChanges("H1",{});
-    PostponedActions_perform();
-    showSelection();
-}
-</script>
-</head>
-<body>
-<ol>
-  <li>One</li>
-  <li>
-    <ul>
-      <li>Two</li>
-      <li>Three</li>
-      <li>[Four]</li>
-    </ul>
-  </li>
-  <li>Five</li>
-</ol>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering01-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering01-expected.html b/experiments/Editor/tests/outline/heading-numbering01-expected.html
deleted file mode 100644
index 5673eba..0000000
--- a/experiments/Editor/tests/outline/heading-numbering01-expected.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<html>
-  <head>
-    <style>
-    </style>
-  </head>
-  <body>
-    <nav class="tableofcontents">
-      <p class="toc1"><a href="#item1">One</a></p>
-      <p class="toc2"><a href="#item2">One - first subsection</a></p>
-      <p class="toc2"><a href="#item3">One - second subsection</a></p>
-      <p class="toc1"><a href="#item4">Two</a></p>
-      <p class="toc2"><a href="#item5">Two - first subsection</a></p>
-      <p class="toc3"><a href="#item6">Two - first level 3</a></p>
-      <p class="toc3"><a href="#item7">Two - second level 3</a></p>
-      <p class="toc2"><a href="#item8">Two - second subsection</a></p>
-      <p class="toc1"><a href="#item9">Three</a></p>
-    </nav>
-    <h1 id="item1">One</h1>
-    <h2 id="item2">One - first subsection</h2>
-    <h2 id="item3">One - second subsection</h2>
-    <h1 id="item4">Two</h1>
-    <h2 id="item5">Two - first subsection</h2>
-    <h3 id="item6">Two - first level 3</h3>
-    <h3 id="item7">Two - second level 3</h3>
-    <h2 id="item8">Two - second subsection</h2>
-    <h1 id="item9">Three</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering01-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering01-input.html b/experiments/Editor/tests/outline/heading-numbering01-input.html
deleted file mode 100644
index 97f85d0..0000000
--- a/experiments/Editor/tests/outline/heading-numbering01-input.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-</style>
-<script>
-function performTest()
-{
-    Outline_init();
-    if (Outline_detectSectionNumbering())
-        setupOutlineNumbering();
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-<nav class="tableofcontents"></nav>
-<h1>One</h1>
-  <h2>One - first subsection</h2>
-  <h2>One - second subsection</h2>
-<h1>Two</h1>
-  <h2>Two - first subsection</h2>
-    <h3>Two - first level 3</h3>
-    <h3>Two - second level 3</h3>
-  <h2>Two - second subsection</h2>
-<h1>Three</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering02-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering02-expected.html b/experiments/Editor/tests/outline/heading-numbering02-expected.html
deleted file mode 100644
index 4d685d4..0000000
--- a/experiments/Editor/tests/outline/heading-numbering02-expected.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<html>
-  <head>
-    <style>
-    </style>
-  </head>
-  <body>
-    <nav class="tableofcontents">
-      <p class="toc1"><a href="#item1">1 One</a></p>
-      <p class="toc2"><a href="#item2">1.1 One - first subsection</a></p>
-      <p class="toc2"><a href="#item3">1.2 One - second subsection</a></p>
-      <p class="toc1"><a href="#item4">2 Two</a></p>
-      <p class="toc2"><a href="#item5">2.1 Two - first subsection</a></p>
-      <p class="toc3"><a href="#item6">2.1.1 Two - first level 3</a></p>
-      <p class="toc3"><a href="#item7">2.1.2 Two - second level 3</a></p>
-      <p class="toc2"><a href="#item8">2.2 Two - second subsection</a></p>
-      <p class="toc1"><a href="#item9">3 Three</a></p>
-    </nav>
-    <h1 id="item1">One</h1>
-    <h2 id="item2">One - first subsection</h2>
-    <h2 id="item3">One - second subsection</h2>
-    <h1 id="item4">Two</h1>
-    <h2 id="item5">Two - first subsection</h2>
-    <h3 id="item6">Two - first level 3</h3>
-    <h3 id="item7">Two - second level 3</h3>
-    <h2 id="item8">Two - second subsection</h2>
-    <h1 id="item9">Three</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering02-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering02-input.html b/experiments/Editor/tests/outline/heading-numbering02-input.html
deleted file mode 100644
index a5e8d03..0000000
--- a/experiments/Editor/tests/outline/heading-numbering02-input.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-</style>
-<script>
-function performTest()
-{
-    setupOutlineNumbering();
-    Outline_init();
-    PostponedActions_perform();
-    simplifyTOCs();
-}
-</script>
-</head>
-<body>
-<nav class="tableofcontents"></nav>
-<h1>One</h1>
-  <h2>One - first subsection</h2>
-  <h2>One - second subsection</h2>
-<h1>Two</h1>
-  <h2>Two - first subsection</h2>
-    <h3>Two - first level 3</h3>
-    <h3>Two - second level 3</h3>
-  <h2>Two - second subsection</h2>
-<h1>Three</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering03-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering03-expected.html b/experiments/Editor/tests/outline/heading-numbering03-expected.html
deleted file mode 100644
index 4d685d4..0000000
--- a/experiments/Editor/tests/outline/heading-numbering03-expected.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<html>
-  <head>
-    <style>
-    </style>
-  </head>
-  <body>
-    <nav class="tableofcontents">
-      <p class="toc1"><a href="#item1">1 One</a></p>
-      <p class="toc2"><a href="#item2">1.1 One - first subsection</a></p>
-      <p class="toc2"><a href="#item3">1.2 One - second subsection</a></p>
-      <p class="toc1"><a href="#item4">2 Two</a></p>
-      <p class="toc2"><a href="#item5">2.1 Two - first subsection</a></p>
-      <p class="toc3"><a href="#item6">2.1.1 Two - first level 3</a></p>
-      <p class="toc3"><a href="#item7">2.1.2 Two - second level 3</a></p>
-      <p class="toc2"><a href="#item8">2.2 Two - second subsection</a></p>
-      <p class="toc1"><a href="#item9">3 Three</a></p>
-    </nav>
-    <h1 id="item1">One</h1>
-    <h2 id="item2">One - first subsection</h2>
-    <h2 id="item3">One - second subsection</h2>
-    <h1 id="item4">Two</h1>
-    <h2 id="item5">Two - first subsection</h2>
-    <h3 id="item6">Two - first level 3</h3>
-    <h3 id="item7">Two - second level 3</h3>
-    <h2 id="item8">Two - second subsection</h2>
-    <h1 id="item9">Three</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering03-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering03-input.html b/experiments/Editor/tests/outline/heading-numbering03-input.html
deleted file mode 100644
index 34a4a5d..0000000
--- a/experiments/Editor/tests/outline/heading-numbering03-input.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-</style>
-<script>
-function performTest()
-{
-    Outline_init();
-    if (Outline_detectSectionNumbering())
-        setupOutlineNumbering();
-    PostponedActions_perform();
-    simplifyTOCs();
-}
-</script>
-</head>
-<body>
-<nav class="tableofcontents"></nav>
-<h1>9 One</h1>
-  <h2>9 One - first subsection</h2>
-  <h2>9 One - second subsection</h2>
-<h1>91.331 Two</h1>
-  <h2>4. Two - first subsection</h2>
-    <h3>441 Two - first level 3</h3>
-    <h3>9.55.41 Two - second level 3</h3>
-  <h2>4.24 Two - second subsection</h2>
-<h1>1.2.3.4.5 Three</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering04-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering04-expected.html b/experiments/Editor/tests/outline/heading-numbering04-expected.html
deleted file mode 100644
index 8261741..0000000
--- a/experiments/Editor/tests/outline/heading-numbering04-expected.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<html>
-  <head>
-    <style>
-    </style>
-  </head>
-  <body>
-    <nav class="tableofcontents">
-      <p class="toc1"><a href="#item1">One</a></p>
-      <p class="toc2"><a href="#item2">One - first subsection</a></p>
-      <p class="toc2"><a href="#item3">One - second subsection</a></p>
-      <p class="toc1"><a href="#item4">Two</a></p>
-      <p class="toc2"><a href="#item5">Two - first subsection</a></p>
-      <p class="toc3"><a href="#item6">Two - first level 3</a></p>
-      <p class="toc3"><a href="#item7">Two - second level 3</a></p>
-      <p class="toc2"><a href="#item8">Two - second subsection</a></p>
-      <p class="toc1"><a href="#item9">Three</a></p>
-    </nav>
-    <h1 class="Unnumbered" id="item1">One</h1>
-    <h2 class="Unnumbered" id="item2">One - first subsection</h2>
-    <h2 class="Unnumbered" id="item3">One - second subsection</h2>
-    <h1 class="Unnumbered" id="item4">Two</h1>
-    <h2 class="Unnumbered" id="item5">Two - first subsection</h2>
-    <h3 class="Unnumbered" id="item6">Two - first level 3</h3>
-    <h3 class="Unnumbered" id="item7">Two - second level 3</h3>
-    <h2 class="Unnumbered" id="item8">Two - second subsection</h2>
-    <h1 class="Unnumbered" id="item9">Three</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering04-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering04-input.html b/experiments/Editor/tests/outline/heading-numbering04-input.html
deleted file mode 100644
index bc6e0c5..0000000
--- a/experiments/Editor/tests/outline/heading-numbering04-input.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-</style>
-<script>
-function performTest()
-{
-    Outline_init();
-    if (Outline_detectSectionNumbering())
-        setupOutlineNumbering();
-    PostponedActions_perform();
-    setNumbering(false);
-    PostponedActions_perform();
-    simplifyTOCs();
-}
-</script>
-</head>
-<body>
-<nav class="tableofcontents"></nav>
-<h1>9 One</h1>
-  <h2>9 One - first subsection</h2>
-  <h2>9 One - second subsection</h2>
-<h1>91.331 Two</h1>
-  <h2>4. Two - first subsection</h2>
-    <h3>441 Two - first level 3</h3>
-    <h3>9.55.41 Two - second level 3</h3>
-  <h2>4.24 Two - second subsection</h2>
-<h1>1.2.3.4.5 Three</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering05-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering05-expected.html b/experiments/Editor/tests/outline/heading-numbering05-expected.html
deleted file mode 100644
index 9391a21..0000000
--- a/experiments/Editor/tests/outline/heading-numbering05-expected.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<html>
-  <head>
-    <style>
-    </style>
-  </head>
-  <body>
-    <nav class="tableofcontents">
-      <p class="toc1"><a href="#item1">1 One</a></p>
-      <p class="toc1"><a href="#item2">2 Two</a></p>
-      <p class="toc1"><a href="#item3">3 Three</a></p>
-    </nav>
-    <h1 id="item1">One</h1>
-    <h1 id="item2">Two</h1>
-    <h1 id="item3">Three</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering05-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering05-input.html b/experiments/Editor/tests/outline/heading-numbering05-input.html
deleted file mode 100644
index f508c81..0000000
--- a/experiments/Editor/tests/outline/heading-numbering05-input.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-</style>
-<script>
-function performTest()
-{
-    setupOutlineNumbering();
-    Outline_init();
-    PostponedActions_perform();
-    Formatting_applyFormattingChanges("H1",{});
-    PostponedActions_perform();
-    simplifyTOCs();
-}
-</script>
-</head>
-<body>
-<nav class="tableofcontents"></nav>
-[<p>One</p>
-<p>Two</p>
-<p>Three</p>]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering06-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering06-expected.html b/experiments/Editor/tests/outline/heading-numbering06-expected.html
deleted file mode 100644
index 6164cfb..0000000
--- a/experiments/Editor/tests/outline/heading-numbering06-expected.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<html>
-  <head>
-    <style>
-    </style>
-  </head>
-  <body>
-    <nav class="tableofcontents">
-      <p class="toc1"><a href="#item1">One</a></p>
-      <p class="toc1"><a href="#item3">Two</a></p>
-      <p class="toc1"><a href="#item2">Three</a></p>
-    </nav>
-    <h1 id="item1">One</h1>
-    <h1 id="item3">Two</h1>
-    <h1 id="item2">Three</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering06-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering06-input.html b/experiments/Editor/tests/outline/heading-numbering06-input.html
deleted file mode 100644
index 8c11784..0000000
--- a/experiments/Editor/tests/outline/heading-numbering06-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-</style>
-<script>
-function performTest()
-{
-    Outline_init();
-    if (Outline_detectSectionNumbering())
-        setupOutlineNumbering();
-    PostponedActions_perform();
-    Formatting_applyFormattingChanges("H1",{});
-    PostponedActions_perform();
-    simplifyTOCs();
-}
-</script>
-</head>
-<body>
-<nav class="tableofcontents"></nav>
-<h1>One</h1>
-[<p>Two</p>]
-<h1>Three</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering07-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering07-expected.html b/experiments/Editor/tests/outline/heading-numbering07-expected.html
deleted file mode 100644
index 293b448..0000000
--- a/experiments/Editor/tests/outline/heading-numbering07-expected.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<html>
-  <head>
-    <style>
-    </style>
-  </head>
-  <body>
-    <nav class="tableofcontents">
-      <p class="toc1"><a href="#item1">1 One</a></p>
-      <p class="toc1"><a href="#item3">2 Two</a></p>
-      <p class="toc1"><a href="#item2">Three</a></p>
-    </nav>
-    <h1 id="item1">One</h1>
-    <h1 id="item3">Two</h1>
-    <h1 class="Unnumbered" id="item2">Three</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering07-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering07-input.html b/experiments/Editor/tests/outline/heading-numbering07-input.html
deleted file mode 100644
index 11c1b6f..0000000
--- a/experiments/Editor/tests/outline/heading-numbering07-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-</style>
-<script>
-function performTest()
-{
-    Outline_init();
-    if (Outline_detectSectionNumbering())
-        setupOutlineNumbering();
-    PostponedActions_perform();
-    Formatting_applyFormattingChanges("H1",{});
-    PostponedActions_perform();
-    simplifyTOCs();
-}
-</script>
-</head>
-<body>
-<nav class="tableofcontents"></nav>
-<h1>7 One</h1>
-[<p>Two</p>]
-<h1>Three</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering08-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering08-expected.html b/experiments/Editor/tests/outline/heading-numbering08-expected.html
deleted file mode 100644
index bfea97f..0000000
--- a/experiments/Editor/tests/outline/heading-numbering08-expected.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<html>
-  <head>
-    <style>
-    </style>
-  </head>
-  <body>
-    <nav class="tableofcontents">
-      <p class="toc1"><a href="#item1">One</a></p>
-      <p class="toc1"><a href="#item3">1 Two</a></p>
-      <p class="toc1"><a href="#item2">2 Three</a></p>
-    </nav>
-    <h1 class="Unnumbered" id="item1">One</h1>
-    <h1 id="item3">Two</h1>
-    <h1 id="item2">Three</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering08-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering08-input.html b/experiments/Editor/tests/outline/heading-numbering08-input.html
deleted file mode 100644
index 6a00d8a..0000000
--- a/experiments/Editor/tests/outline/heading-numbering08-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-</style>
-<script>
-function performTest()
-{
-    Outline_init();
-    if (Outline_detectSectionNumbering())
-        setupOutlineNumbering();
-    PostponedActions_perform();
-    Formatting_applyFormattingChanges("H1",{});
-    PostponedActions_perform();
-    simplifyTOCs();
-}
-</script>
-</head>
-<body>
-<nav class="tableofcontents"></nav>
-<h1>One</h1>
-[<p>Two</p>]
-<h1>7 Three</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering09-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering09-expected.html b/experiments/Editor/tests/outline/heading-numbering09-expected.html
deleted file mode 100644
index 0fcb631..0000000
--- a/experiments/Editor/tests/outline/heading-numbering09-expected.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<html>
-  <head>
-    <style>
-    </style>
-  </head>
-  <body>
-    <nav class="tableofcontents">
-      <p class="toc1"><a href="#item1">1 One</a></p>
-      <p class="toc1"><a href="#item3">2 Two</a></p>
-      <p class="toc1"><a href="#item2">3 Three</a></p>
-    </nav>
-    <h1 id="item1">One</h1>
-    <h1 id="item3">Two</h1>
-    <h1 id="item2">Three</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering09-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering09-input.html b/experiments/Editor/tests/outline/heading-numbering09-input.html
deleted file mode 100644
index 2fbff2f..0000000
--- a/experiments/Editor/tests/outline/heading-numbering09-input.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-</style>
-<script>
-function performTest()
-{
-    Outline_init();
-    if (Outline_detectSectionNumbering())
-        setupOutlineNumbering();
-    PostponedActions_perform();
-    Formatting_applyFormattingChanges("H1",{});
-    PostponedActions_perform();
-    simplifyTOCs();
-}
-</script>
-</head>
-<body>
-<nav class="tableofcontents"></nav>
-<h1>7. One</h1>
-[<p>Two</p>]
-<h1>7. Three</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering10-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering10-expected.html b/experiments/Editor/tests/outline/heading-numbering10-expected.html
deleted file mode 100644
index 2dfecf7..0000000
--- a/experiments/Editor/tests/outline/heading-numbering10-expected.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html>
-  <head>
-    <style>
-    </style>
-  </head>
-  <body>
-    <h1 id="item1">One</h1>
-    <nav class="tableofcontents">
-      <p class="toc1"><a href="#item1">1 One</a></p>
-      <p class="toc1"><a href="#item2">2 Two</a></p>
-    </nav>
-    <h1 id="item2">Two</h1>
-    <p><br/></p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/heading-numbering10-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/heading-numbering10-input.html b/experiments/Editor/tests/outline/heading-numbering10-input.html
deleted file mode 100644
index 0b447a7..0000000
--- a/experiments/Editor/tests/outline/heading-numbering10-input.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-</style>
-<script>
-function performTest()
-{
-    Outline_init();
-    if (Outline_detectSectionNumbering())
-        setupOutlineNumbering();
-    PostponedActions_perform();
-
-    Outline_insertTableOfContents();
-    PostponedActions_perform();
-
-    Cursor_insertCharacter("Two");
-    Formatting_applyFormattingChanges("h1",null);
-    PostponedActions_perform();
-    simplifyTOCs();
-}
-</script>
-</head>
-<body>
-<h1>1 One</h1>
-<p>[]<br></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/headings01-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/headings01-expected.html b/experiments/Editor/tests/outline/headings01-expected.html
deleted file mode 100644
index 3e783b7..0000000
--- a/experiments/Editor/tests/outline/headings01-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head>
-    <style>
-    </style>
-  </head>
-  <body>
-    <nav class="tableofcontents">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          []
-        </a>
-      </p>
-    </nav>
-    <h1 id="item1">
-      []
-      <br/>
-    </h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/headings01-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/headings01-input.html b/experiments/Editor/tests/outline/headings01-input.html
deleted file mode 100644
index 362df1e..0000000
--- a/experiments/Editor/tests/outline/headings01-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    setupOutlineNumbering();
-    Outline_init();
-    PostponedActions_perform();
-    Formatting_applyFormattingChanges("H1",{});
-    PostponedActions_perform();
-    showSelection();
-    prependTableOfContents();
-}
-</script>
-</head>
-<body>
-[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/headings02-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/headings02-expected.html b/experiments/Editor/tests/outline/headings02-expected.html
deleted file mode 100644
index 3e783b7..0000000
--- a/experiments/Editor/tests/outline/headings02-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head>
-    <style>
-    </style>
-  </head>
-  <body>
-    <nav class="tableofcontents">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          []
-        </a>
-      </p>
-    </nav>
-    <h1 id="item1">
-      []
-      <br/>
-    </h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/headings02-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/headings02-input.html b/experiments/Editor/tests/outline/headings02-input.html
deleted file mode 100644
index 03f4b66..0000000
--- a/experiments/Editor/tests/outline/headings02-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    setupOutlineNumbering();
-    Outline_init();
-    PostponedActions_perform();
-    Formatting_applyFormattingChanges("H1",{});
-    PostponedActions_perform();
-    showSelection();
-    prependTableOfContents();
-}
-</script>
-</head>
-<body>
-<p>[]<br/></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/headings03-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/headings03-expected.html b/experiments/Editor/tests/outline/headings03-expected.html
deleted file mode 100644
index 5c278a4..0000000
--- a/experiments/Editor/tests/outline/headings03-expected.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<html>
-  <head>
-    <style>
-    </style>
-  </head>
-  <body>
-    <nav class="tableofcontents">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          A[]
-        </a>
-      </p>
-    </nav>
-    <h1 id="item1">A[]</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/headings03-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/headings03-input.html b/experiments/Editor/tests/outline/headings03-input.html
deleted file mode 100644
index 1915e19..0000000
--- a/experiments/Editor/tests/outline/headings03-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    setupOutlineNumbering();
-    Outline_init();
-    PostponedActions_perform();
-    Formatting_applyFormattingChanges("H1",{});
-    PostponedActions_perform();
-    Cursor_insertCharacter("A");
-    showSelection();
-    prependTableOfContents();
-}
-</script>
-</head>
-<body>
-<p>[]<br/></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/headings04-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/headings04-expected.html b/experiments/Editor/tests/outline/headings04-expected.html
deleted file mode 100644
index 1da4740..0000000
--- a/experiments/Editor/tests/outline/headings04-expected.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<html>
-  <head>
-    <style>
-    </style>
-  </head>
-  <body>
-    <nav class="tableofcontents">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          [Test]
-        </a>
-      </p>
-    </nav>
-    <h1 id="item1">[Test]</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/headings04-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/headings04-input.html b/experiments/Editor/tests/outline/headings04-input.html
deleted file mode 100644
index b8e414a..0000000
--- a/experiments/Editor/tests/outline/headings04-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    setupOutlineNumbering();
-    Outline_init();
-    PostponedActions_perform();
-    Formatting_applyFormattingChanges("H1",{});
-    PostponedActions_perform();
-    showSelection();
-    prependTableOfContents();
-}
-</script>
-</head>
-<body>
-<p>[Test]</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/headings05-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/headings05-expected.html b/experiments/Editor/tests/outline/headings05-expected.html
deleted file mode 100644
index 1da4740..0000000
--- a/experiments/Editor/tests/outline/headings05-expected.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<html>
-  <head>
-    <style>
-    </style>
-  </head>
-  <body>
-    <nav class="tableofcontents">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          [Test]
-        </a>
-      </p>
-    </nav>
-    <h1 id="item1">[Test]</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/headings05-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/headings05-input.html b/experiments/Editor/tests/outline/headings05-input.html
deleted file mode 100644
index f913948..0000000
--- a/experiments/Editor/tests/outline/headings05-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    setupOutlineNumbering();
-    Outline_init();
-    PostponedActions_perform();
-    Formatting_applyFormattingChanges("H1",{});
-    PostponedActions_perform();
-    showSelection();
-    prependTableOfContents();
-}
-</script>
-</head>
-<body>
-[Test]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/itemtypes01-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/itemtypes01-expected.html b/experiments/Editor/tests/outline/itemtypes01-expected.html
deleted file mode 100644
index 09530eb..0000000
--- a/experiments/Editor/tests/outline/itemtypes01-expected.html
+++ /dev/null
@@ -1,82 +0,0 @@
-Sections:
-    1 Heading A (item1)
-        1.1 Heading B (item2)
-        1.2 Heading C (item3)
-    2 Heading D (item4)
-        2.1 Heading E (item5)
-        2.2 Heading F (item6)
-Figures:
-    1 First figure caption (item8)
-    2 Second figure caption (item10)
-    3 (item12)
-Tables:
-    1 First table caption (item7)
-    2 Second table caption (item9)
-    3 (item11)
-<html>
-  <head>
-    <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
-    <title>Test document</title>
-    <style>
-    </style>
-  </head>
-  <body>
-    <h1 id="item1">Heading A</h1>
-    <h2 id="item2">Heading B</h2>
-    <h2 id="item3">Heading C</h2>
-    <h1 id="item4">Heading D</h1>
-    <h2 id="item5">Heading E</h2>
-    <h2 id="item6">Heading F</h2>
-    <table align="center" id="item7" width="80%">
-      <caption>First table caption</caption>
-      <tbody>
-        <tr>
-          <td>First</td>
-          <td>First</td>
-        </tr>
-        <tr>
-          <td>First</td>
-          <td>First</td>
-        </tr>
-      </tbody>
-    </table>
-    <figure id="item8">
-      <p>First figure content</p>
-      <figcaption>First figure caption</figcaption>
-    </figure>
-    <table align="center" id="item9" width="80%">
-      <caption>Second table caption</caption>
-      <tbody>
-        <tr>
-          <td>Second</td>
-          <td>Second</td>
-        </tr>
-        <tr>
-          <td>Second</td>
-          <td>Second</td>
-        </tr>
-      </tbody>
-    </table>
-    <figure id="item10">
-      <p>[Second figure content]</p>
-      <figcaption>Second figure caption</figcaption>
-    </figure>
-    <table align="center" id="item11" width="80%">
-      <caption/>
-      <tbody>
-        <tr>
-          <td>Third</td>
-          <td>Third</td>
-        </tr>
-        <tr>
-          <td>Third</td>
-          <td>Third</td>
-        </tr>
-      </tbody>
-    </table>
-    <figure id="item12">
-      <p>[Third figure content]</p>
-      <figcaption/>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/itemtypes01-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/itemtypes01-input.html b/experiments/Editor/tests/outline/itemtypes01-input.html
deleted file mode 100644
index 01fe246..0000000
--- a/experiments/Editor/tests/outline/itemtypes01-input.html
+++ /dev/null
@@ -1,78 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<title>Test document</title>
-<style>
-</style>
-<script type="text/javascript">
-
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-    setNumbering(true);
-    return Outline_plainText()+PrettyPrinter.getHTML(document.documentElement);
-}
-</script>
-</head>
-<body>
-
-<h1>Heading A</h1>
-<h2>Heading B</h2>
-<h2>Heading C</h2>
-<h1>Heading D</h1>
-<h2>Heading E</h2>
-<h2>Heading F</h2>
-
-<table width="80%" align="center">
-  <caption>First table caption</caption>
-  <tr>
-    <td>First</td>
-    <td>First</td>
-  </tr>
-  <tr>
-    <td>First</td>
-    <td>First</td>
-  </tr>
-</table>
-
-<figure>
-  <p>[First figure content]</p>
-  <figcaption>First figure caption</figcaption>
-</figure>
-
-<table width="80%" align="center">
-  <caption>Second table caption</caption>
-  <tr>
-    <td>Second</td>
-    <td>Second</td>
-  </tr>
-  <tr>
-    <td>Second</td>
-    <td>Second</td>
-  </tr>
-</table>
-
-<figure>
-  <p>[Second figure content]</p>
-  <figcaption>Second figure caption</figcaption>
-</figure>
-
-<table width="80%" align="center">
-  <tr>
-    <td>Third</td>
-    <td>Third</td>
-  </tr>
-  <tr>
-    <td>Third</td>
-    <td>Third</td>
-  </tr>
-</table>
-
-<figure>
-  <p>[Third figure content]</p>
-</figure>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures01-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures01-expected.html b/experiments/Editor/tests/outline/listOfFigures01-expected.html
deleted file mode 100644
index 34e9a8f..0000000
--- a/experiments/Editor/tests/outline/listOfFigures01-expected.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoffigures">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          Test figure A
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item2">
-          2
-          Test figure B
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item3">
-          3
-          Test figure C
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item4">
-          4
-          Test figure D
-        </a>
-      </p>
-    </nav>
-    <figure id="item1">
-      (figure content)
-      <figcaption>Test figure A</figcaption>
-    </figure>
-    <figure id="item2">
-      (figure content)
-      <figcaption>Test figure B</figcaption>
-    </figure>
-    <figure id="item3">
-      (figure content)
-      <figcaption>Test figure C</figcaption>
-    </figure>
-    <figure id="item4">
-      (figure content)
-      <figcaption>Test figure D</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures01-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures01-input.html b/experiments/Editor/tests/outline/listOfFigures01-input.html
deleted file mode 100644
index 3e22f5a..0000000
--- a/experiments/Editor/tests/outline/listOfFigures01-input.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    // Create a series of figures
-    createTestFigures(4);
-
-    // Add a list of figures
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfFigures();
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures02-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures02-expected.html b/experiments/Editor/tests/outline/listOfFigures02-expected.html
deleted file mode 100644
index 73833c7..0000000
--- a/experiments/Editor/tests/outline/listOfFigures02-expected.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoffigures">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          Test figure A
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item2">
-          2
-          Test figure BXYZ
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item3">
-          3
-          Test figure C
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item4">
-          4
-          Test figure D
-        </a>
-      </p>
-    </nav>
-    <figure id="item1">
-      (figure content)
-      <figcaption>Test figure A</figcaption>
-    </figure>
-    <figure id="item2">
-      (figure content)
-      <figcaption>
-        Test figure B
-        XYZ
-      </figcaption>
-    </figure>
-    <figure id="item3">
-      (figure content)
-      <figcaption>Test figure C</figcaption>
-    </figure>
-    <figure id="item4">
-      (figure content)
-      <figcaption>Test figure D</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures02-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures02-input.html b/experiments/Editor/tests/outline/listOfFigures02-input.html
deleted file mode 100644
index 81d0b70..0000000
--- a/experiments/Editor/tests/outline/listOfFigures02-input.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    // Create a series of figures
-    createTestFigures(4);
-
-    // Add a list of figures
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfFigures();
-    PostponedActions_perform();
-
-    // Modify the second figure caption, to verify that the change is reflected in the LOF
-    var figcaption = document.getElementsByTagName("figcaption")[1];
-    DOM_appendChild(figcaption,DOM_createTextNode(document,"XYZ"));
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures03-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures03-expected.html b/experiments/Editor/tests/outline/listOfFigures03-expected.html
deleted file mode 100644
index cc14ffe..0000000
--- a/experiments/Editor/tests/outline/listOfFigures03-expected.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoffigures">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          Test figure A
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item2">
-          2
-          TeXYZst figure B
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item3">
-          3
-          Test figure C
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item4">
-          4
-          Test figure D
-        </a>
-      </p>
-    </nav>
-    <figure id="item1">
-      (figure content)
-      <figcaption>Test figure A</figcaption>
-    </figure>
-    <figure id="item2">
-      (figure content)
-      <figcaption>TeXYZst figure B</figcaption>
-    </figure>
-    <figure id="item3">
-      (figure content)
-      <figcaption>Test figure C</figcaption>
-    </figure>
-    <figure id="item4">
-      (figure content)
-      <figcaption>Test figure D</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures03-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures03-input.html b/experiments/Editor/tests/outline/listOfFigures03-input.html
deleted file mode 100644
index a87177f..0000000
--- a/experiments/Editor/tests/outline/listOfFigures03-input.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    // Create a series of figures
-    createTestFigures(4);
-
-    // Add a list of figures
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfFigures();
-    PostponedActions_perform();
-
-    // Modify the second figure caption, to verify that the change is reflected in the LOF
-    var figcaption = document.getElementsByTagName("figcaption")[1];
-    DOM_insertCharacters(figcaption.lastChild,2,"XYZ");
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures04-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures04-expected.html b/experiments/Editor/tests/outline/listOfFigures04-expected.html
deleted file mode 100644
index 28578f1..0000000
--- a/experiments/Editor/tests/outline/listOfFigures04-expected.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoffigures">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          Test figure A
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item2">
-          2
-          Tegure B
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item3">
-          3
-          Test figure C
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item4">
-          4
-          Test figure D
-        </a>
-      </p>
-    </nav>
-    <figure id="item1">
-      (figure content)
-      <figcaption>Test figure A</figcaption>
-    </figure>
-    <figure id="item2">
-      (figure content)
-      <figcaption>Tegure B</figcaption>
-    </figure>
-    <figure id="item3">
-      (figure content)
-      <figcaption>Test figure C</figcaption>
-    </figure>
-    <figure id="item4">
-      (figure content)
-      <figcaption>Test figure D</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures04-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures04-input.html b/experiments/Editor/tests/outline/listOfFigures04-input.html
deleted file mode 100644
index 99c107b..0000000
--- a/experiments/Editor/tests/outline/listOfFigures04-input.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    // Create a series of figures
-    createTestFigures(4);
-
-    // Add a list of figures
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfFigures();
-    PostponedActions_perform();
-
-    // Modify the second figure caption, to verify that the change is reflected in the LOF
-    var figcaption = document.getElementsByTagName("figcaption")[1];
-    DOM_deleteCharacters(figcaption.lastChild,2,7);
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures05-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures05-expected.html b/experiments/Editor/tests/outline/listOfFigures05-expected.html
deleted file mode 100644
index 34e9a8f..0000000
--- a/experiments/Editor/tests/outline/listOfFigures05-expected.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoffigures">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          Test figure A
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item2">
-          2
-          Test figure B
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item3">
-          3
-          Test figure C
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item4">
-          4
-          Test figure D
-        </a>
-      </p>
-    </nav>
-    <figure id="item1">
-      (figure content)
-      <figcaption>Test figure A</figcaption>
-    </figure>
-    <figure id="item2">
-      (figure content)
-      <figcaption>Test figure B</figcaption>
-    </figure>
-    <figure id="item3">
-      (figure content)
-      <figcaption>Test figure C</figcaption>
-    </figure>
-    <figure id="item4">
-      (figure content)
-      <figcaption>Test figure D</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures05-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures05-input.html b/experiments/Editor/tests/outline/listOfFigures05-input.html
deleted file mode 100644
index f7cfb67..0000000
--- a/experiments/Editor/tests/outline/listOfFigures05-input.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    Outline_detectSectionNumbering();
-    PostponedActions_perform();
-
-    // Add a list of figures
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfFigures();
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-<figure>
-(figure content)
-<figcaption>Figure 9: Test figure A</figcaption>
-</figure>
-<figure>
-(figure content)
-<figcaption>Figure 9: Test figure B</figcaption>
-</figure>
-<figure>
-(figure content)
-<figcaption>Figure 9: Test figure C</figcaption>
-</figure>
-<figure>
-(figure content)
-<figcaption>Figure 9: Test figure D</figcaption>
-</figure>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures06-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures06-expected.html b/experiments/Editor/tests/outline/listOfFigures06-expected.html
deleted file mode 100644
index d182840..0000000
--- a/experiments/Editor/tests/outline/listOfFigures06-expected.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoffigures">
-      <p class="toc1"><a href="#item1">Test figure A</a></p>
-      <p class="toc1"><a href="#item2">Test figure B</a></p>
-      <p class="toc1"><a href="#item3">Test figure C</a></p>
-      <p class="toc1"><a href="#item4">Test figure D</a></p>
-    </nav>
-    <figure id="item1">
-      (figure content)
-      <figcaption class="Unnumbered">Test figure A</figcaption>
-    </figure>
-    <figure id="item2">
-      (figure content)
-      <figcaption class="Unnumbered">Test figure B</figcaption>
-    </figure>
-    <figure id="item3">
-      (figure content)
-      <figcaption class="Unnumbered">Test figure C</figcaption>
-    </figure>
-    <figure id="item4">
-      (figure content)
-      <figcaption class="Unnumbered">Test figure D</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures06-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures06-input.html b/experiments/Editor/tests/outline/listOfFigures06-input.html
deleted file mode 100644
index 77120bb..0000000
--- a/experiments/Editor/tests/outline/listOfFigures06-input.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    Outline_detectSectionNumbering();
-    PostponedActions_perform();
-
-    // Add a list of figures
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfFigures();
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-<figure>
-(figure content)
-<figcaption>Test figure A</figcaption>
-</figure>
-<figure>
-(figure content)
-<figcaption>Test figure B</figcaption>
-</figure>
-<figure>
-(figure content)
-<figcaption>Test figure C</figcaption>
-</figure>
-<figure>
-(figure content)
-<figcaption>Test figure D</figcaption>
-</figure>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures07-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures07-expected.html b/experiments/Editor/tests/outline/listOfFigures07-expected.html
deleted file mode 100644
index d182840..0000000
--- a/experiments/Editor/tests/outline/listOfFigures07-expected.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoffigures">
-      <p class="toc1"><a href="#item1">Test figure A</a></p>
-      <p class="toc1"><a href="#item2">Test figure B</a></p>
-      <p class="toc1"><a href="#item3">Test figure C</a></p>
-      <p class="toc1"><a href="#item4">Test figure D</a></p>
-    </nav>
-    <figure id="item1">
-      (figure content)
-      <figcaption class="Unnumbered">Test figure A</figcaption>
-    </figure>
-    <figure id="item2">
-      (figure content)
-      <figcaption class="Unnumbered">Test figure B</figcaption>
-    </figure>
-    <figure id="item3">
-      (figure content)
-      <figcaption class="Unnumbered">Test figure C</figcaption>
-    </figure>
-    <figure id="item4">
-      (figure content)
-      <figcaption class="Unnumbered">Test figure D</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures07-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures07-input.html b/experiments/Editor/tests/outline/listOfFigures07-input.html
deleted file mode 100644
index bafd7d4..0000000
--- a/experiments/Editor/tests/outline/listOfFigures07-input.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    // Create a series of figures
-    createTestFigures(4);
-
-    // Turn numbering off for all figures
-    setNumbering(false);
-    PostponedActions_perform();
-
-    // Add a list of figures
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfFigures();
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures08-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures08-expected.html b/experiments/Editor/tests/outline/listOfFigures08-expected.html
deleted file mode 100644
index d182840..0000000
--- a/experiments/Editor/tests/outline/listOfFigures08-expected.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoffigures">
-      <p class="toc1"><a href="#item1">Test figure A</a></p>
-      <p class="toc1"><a href="#item2">Test figure B</a></p>
-      <p class="toc1"><a href="#item3">Test figure C</a></p>
-      <p class="toc1"><a href="#item4">Test figure D</a></p>
-    </nav>
-    <figure id="item1">
-      (figure content)
-      <figcaption class="Unnumbered">Test figure A</figcaption>
-    </figure>
-    <figure id="item2">
-      (figure content)
-      <figcaption class="Unnumbered">Test figure B</figcaption>
-    </figure>
-    <figure id="item3">
-      (figure content)
-      <figcaption class="Unnumbered">Test figure C</figcaption>
-    </figure>
-    <figure id="item4">
-      (figure content)
-      <figcaption class="Unnumbered">Test figure D</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures08-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures08-input.html b/experiments/Editor/tests/outline/listOfFigures08-input.html
deleted file mode 100644
index 23a589a..0000000
--- a/experiments/Editor/tests/outline/listOfFigures08-input.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    // Create a series of figures
-    createTestFigures(4);
-
-    // Add a list of figures
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfFigures();
-    PostponedActions_perform();
-
-    // Turn numbering off for all figures
-    setNumbering(false);
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures09-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures09-expected.html b/experiments/Editor/tests/outline/listOfFigures09-expected.html
deleted file mode 100644
index 91189e5..0000000
--- a/experiments/Editor/tests/outline/listOfFigures09-expected.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoffigures">
-      <p class="toc1"><a href="#item1">Test figure A</a></p>
-      <p class="toc1"><a href="#item2">Test figure B</a></p>
-      <p class="toc1">
-        <a href="#item3">
-          1
-          Test figure C
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item4">
-          2
-          Test figure D
-        </a>
-      </p>
-    </nav>
-    <figure id="item1">
-      (figure content)
-      <figcaption class="Unnumbered">Test figure A</figcaption>
-    </figure>
-    <figure id="item2">
-      (figure content)
-      <figcaption class="Unnumbered">Test figure B</figcaption>
-    </figure>
-    <figure id="item3">
-      (figure content)
-      <figcaption>Test figure C</figcaption>
-    </figure>
-    <figure id="item4">
-      (figure content)
-      <figcaption>Test figure D</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures09-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures09-input.html b/experiments/Editor/tests/outline/listOfFigures09-input.html
deleted file mode 100644
index 3016e7b..0000000
--- a/experiments/Editor/tests/outline/listOfFigures09-input.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    // Create a series of figures
-    createTestFigures(4);
-
-    // Turn numbering off for all figures
-    setNumbering(false);
-    PostponedActions_perform();
-
-    // Add a list of figures
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfFigures();
-    PostponedActions_perform();
-
-    // Turn numbering on for the last two figures
-    var figcaptions = document.getElementsByTagName("figure");
-    Outline_setNumbered(figcaptions[2].getAttribute("id"),true);
-    Outline_setNumbered(figcaptions[3].getAttribute("id"),true);
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures09a-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures09a-expected.html b/experiments/Editor/tests/outline/listOfFigures09a-expected.html
deleted file mode 100644
index 34e9a8f..0000000
--- a/experiments/Editor/tests/outline/listOfFigures09a-expected.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoffigures">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          Test figure A
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item2">
-          2
-          Test figure B
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item3">
-          3
-          Test figure C
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item4">
-          4
-          Test figure D
-        </a>
-      </p>
-    </nav>
-    <figure id="item1">
-      (figure content)
-      <figcaption>Test figure A</figcaption>
-    </figure>
-    <figure id="item2">
-      (figure content)
-      <figcaption>Test figure B</figcaption>
-    </figure>
-    <figure id="item3">
-      (figure content)
-      <figcaption>Test figure C</figcaption>
-    </figure>
-    <figure id="item4">
-      (figure content)
-      <figcaption>Test figure D</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures09a-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures09a-input.html b/experiments/Editor/tests/outline/listOfFigures09a-input.html
deleted file mode 100644
index e1c0bc8..0000000
--- a/experiments/Editor/tests/outline/listOfFigures09a-input.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    // Create a series of figures
-    createTestFigures(4);
-
-    // Turn numbering off for all figures
-    setNumbering(false);
-    PostponedActions_perform();
-
-    // Add a list of figures
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfFigures();
-    PostponedActions_perform();
-
-    // Turn numbering on for the last two figures
-    var figcaptions = document.getElementsByTagName("figure");
-    Outline_setNumbered(figcaptions[2].getAttribute("id"),true);
-    Outline_setNumbered(figcaptions[3].getAttribute("id"),true);
-    PostponedActions_perform();
-
-    // Now turn numbering on for the first two figures - the numbers for the others
-    // should be adjusted
-    Outline_setNumbered(figcaptions[0].getAttribute("id"),true);
-    Outline_setNumbered(figcaptions[1].getAttribute("id"),true);
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures10-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures10-expected.html b/experiments/Editor/tests/outline/listOfFigures10-expected.html
deleted file mode 100644
index d2216f7..0000000
--- a/experiments/Editor/tests/outline/listOfFigures10-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoffigures">
-      <p class="toc1">[No figures defined]</p>
-    </nav>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures10-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures10-input.html b/experiments/Editor/tests/outline/listOfFigures10-input.html
deleted file mode 100644
index e658a51..0000000
--- a/experiments/Editor/tests/outline/listOfFigures10-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    // Add a list of figures
-    Outline_insertListOfFigures();
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures11-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures11-expected.html b/experiments/Editor/tests/outline/listOfFigures11-expected.html
deleted file mode 100644
index d2216f7..0000000
--- a/experiments/Editor/tests/outline/listOfFigures11-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoffigures">
-      <p class="toc1">[No figures defined]</p>
-    </nav>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfFigures11-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfFigures11-input.html b/experiments/Editor/tests/outline/listOfFigures11-input.html
deleted file mode 100644
index ea94624..0000000
--- a/experiments/Editor/tests/outline/listOfFigures11-input.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    // Create a series of figures
-    createTestFigures(4);
-
-    // Add a list of figures
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfFigures();
-    PostponedActions_perform();
-
-    // Delete all figures
-    var current = document.getElementsByTagName("figure")[0];
-    var next;
-    for (; current != null; current = next) {
-        next = current.nextSibling;
-        DOM_deleteNode(current);
-    }
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfTables01-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfTables01-expected.html b/experiments/Editor/tests/outline/listOfTables01-expected.html
deleted file mode 100644
index 431c04a..0000000
--- a/experiments/Editor/tests/outline/listOfTables01-expected.html
+++ /dev/null
@@ -1,69 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoftables">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          Test table A
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item2">
-          2
-          Test table B
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item3">
-          3
-          Test table C
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item4">
-          4
-          Test table D
-        </a>
-      </p>
-    </nav>
-    <table id="item1" style="width: 100%">
-      <caption>Test table A</caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-    <table id="item2" style="width: 100%">
-      <caption>Test table B</caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-    <table id="item3" style="width: 100%">
-      <caption>Test table C</caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-    <table id="item4" style="width: 100%">
-      <caption>Test table D</caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfTables01-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfTables01-input.html b/experiments/Editor/tests/outline/listOfTables01-input.html
deleted file mode 100644
index a55383c..0000000
--- a/experiments/Editor/tests/outline/listOfTables01-input.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    // Create a series of tables
-    createTestTables(4);
-
-    // Add a list of tables
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfTables();
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfTables02-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfTables02-expected.html b/experiments/Editor/tests/outline/listOfTables02-expected.html
deleted file mode 100644
index 56cb8d6..0000000
--- a/experiments/Editor/tests/outline/listOfTables02-expected.html
+++ /dev/null
@@ -1,72 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoftables">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          Test table A
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item2">
-          2
-          Test table BXYZ
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item3">
-          3
-          Test table C
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item4">
-          4
-          Test table D
-        </a>
-      </p>
-    </nav>
-    <table id="item1" style="width: 100%">
-      <caption>Test table A</caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-    <table id="item2" style="width: 100%">
-      <caption>
-        Test table B
-        XYZ
-      </caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-    <table id="item3" style="width: 100%">
-      <caption>Test table C</caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-    <table id="item4" style="width: 100%">
-      <caption>Test table D</caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfTables02-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfTables02-input.html b/experiments/Editor/tests/outline/listOfTables02-input.html
deleted file mode 100644
index c510ecc..0000000
--- a/experiments/Editor/tests/outline/listOfTables02-input.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    // Create a series of tables
-    createTestTables(4);
-
-    // Add a list of tables
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfTables();
-    PostponedActions_perform();
-
-    // Modify the second table caption, to verify that the change is reflected in the LOT
-    var caption = document.getElementsByTagName("caption")[1];
-    DOM_appendChild(caption,DOM_createTextNode(document,"XYZ"));
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfTables03-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfTables03-expected.html b/experiments/Editor/tests/outline/listOfTables03-expected.html
deleted file mode 100644
index 8d55a43..0000000
--- a/experiments/Editor/tests/outline/listOfTables03-expected.html
+++ /dev/null
@@ -1,69 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoftables">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          Test table A
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item2">
-          2
-          TeXYZst table B
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item3">
-          3
-          Test table C
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item4">
-          4
-          Test table D
-        </a>
-      </p>
-    </nav>
-    <table id="item1" style="width: 100%">
-      <caption>Test table A</caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-    <table id="item2" style="width: 100%">
-      <caption>TeXYZst table B</caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-    <table id="item3" style="width: 100%">
-      <caption>Test table C</caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-    <table id="item4" style="width: 100%">
-      <caption>Test table D</caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfTables03-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfTables03-input.html b/experiments/Editor/tests/outline/listOfTables03-input.html
deleted file mode 100644
index 05bdc92..0000000
--- a/experiments/Editor/tests/outline/listOfTables03-input.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    // Create a series of tables
-    createTestTables(4);
-
-    // Add a list of tables
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfTables();
-    PostponedActions_perform();
-
-    // Modify the second table caption, to verify that the change is reflected in the LOT
-    var caption = document.getElementsByTagName("caption")[1];
-    DOM_insertCharacters(caption.lastChild,2,"XYZ");
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfTables04-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfTables04-expected.html b/experiments/Editor/tests/outline/listOfTables04-expected.html
deleted file mode 100644
index b6b451b..0000000
--- a/experiments/Editor/tests/outline/listOfTables04-expected.html
+++ /dev/null
@@ -1,69 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoftables">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          Test table A
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item2">
-          2
-          Teble B
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item3">
-          3
-          Test table C
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item4">
-          4
-          Test table D
-        </a>
-      </p>
-    </nav>
-    <table id="item1" style="width: 100%">
-      <caption>Test table A</caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-    <table id="item2" style="width: 100%">
-      <caption>Teble B</caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-    <table id="item3" style="width: 100%">
-      <caption>Test table C</caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-    <table id="item4" style="width: 100%">
-      <caption>Test table D</caption>
-      <col width="100%"/>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfTables04-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfTables04-input.html b/experiments/Editor/tests/outline/listOfTables04-input.html
deleted file mode 100644
index a747fd1..0000000
--- a/experiments/Editor/tests/outline/listOfTables04-input.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    // Create a series of tables
-    createTestTables(4);
-
-    // Add a list of tables
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfTables();
-    PostponedActions_perform();
-
-    // Modify the second table caption, to verify that the change is reflected in the LOT
-    var caption = document.getElementsByTagName("caption")[1];
-    DOM_deleteCharacters(caption.lastChild,2,7);
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfTables05-expected.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfTables05-expected.html b/experiments/Editor/tests/outline/listOfTables05-expected.html
deleted file mode 100644
index d630969..0000000
--- a/experiments/Editor/tests/outline/listOfTables05-expected.html
+++ /dev/null
@@ -1,77 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <nav class="listoftables">
-      <p class="toc1">
-        <a href="#item1">
-          1
-          Test table A
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item2">
-          2
-          Test table B
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item3">
-          3
-          Test table C
-        </a>
-      </p>
-      <p class="toc1">
-        <a href="#item4">
-          4
-          Test table D
-        </a>
-      </p>
-    </nav>
-    <table id="item1" style="width: 100%">
-      <caption>Test table A</caption>
-      <colgroup>
-        <col width="100%"/>
-      </colgroup>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-    <table id="item2" style="width: 100%">
-      <caption>Test table B</caption>
-      <colgroup>
-        <col width="100%"/>
-      </colgroup>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-    <table id="item3" style="width: 100%">
-      <caption>Test table C</caption>
-      <colgroup>
-        <col width="100%"/>
-      </colgroup>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-    <table id="item4" style="width: 100%">
-      <caption>Test table D</caption>
-      <colgroup>
-        <col width="100%"/>
-      </colgroup>
-      <tbody>
-        <tr>
-          <td><p><br/></p></td>
-        </tr>
-      </tbody>
-    </table>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/26f461e7/experiments/Editor/tests/outline/listOfTables05-input.html
----------------------------------------------------------------------
diff --git a/experiments/Editor/tests/outline/listOfTables05-input.html b/experiments/Editor/tests/outline/listOfTables05-input.html
deleted file mode 100644
index 79bccc9..0000000
--- a/experiments/Editor/tests/outline/listOfTables05-input.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script type="text/javascript" src="OutlineTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    Outline_detectSectionNumbering();
-    PostponedActions_perform();
-
-    // Add a list of tables
-    Selection_set(document.body,0,document.body,0);
-    Outline_insertListOfTables();
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-<table id="item1" style="width: 100%">
-  <caption>Table 9: Test table A</caption>
-  <col width="100%"/>
-  <tr><td><p><br/></p></td></tr>
-</table>
-<table id="item2" style="width: 100%">
-  <caption>Table 9: Test table B</caption>
-  <col width="100%"/>
-  <tr><td><p><br/></p></td></tr>
-</table>
-<table id="item3" style="width: 100%">
-  <caption>Table 9: Test table C</caption>
-  <col width="100%"/>
-  <tr><td><p><br/></p></td></tr>
-</table>
-<table id="item4" style="width: 100%">
-  <caption>Table 9: Test table D</caption>
-  <col width="100%"/>
-  <tr><td><p><br/></p></td></tr>
-</table>
-</body>
-</html>