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

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style01-input.html b/Editor/tests/formatting/style01-input.html
deleted file mode 100644
index 6f577ac..0000000
--- a/Editor/tests/formatting/style01-input.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-
-    // Need to make a copy of this array, because it is "live" and the P elements will disappear
-    // from it as we apply formatting changes, changing them into heading elements
-    var ps = arrayCopy(document.getElementsByTagName("P"));
-
-    selectNode(ps[0]);
-    Formatting_applyFormattingChanges("",null);
-    selectNode(ps[1]);
-    Formatting_applyFormattingChanges("H1",null);
-    selectNode(ps[2]);
-    Formatting_applyFormattingChanges("H2",null);
-    selectNode(ps[3]);
-    Formatting_applyFormattingChanges("H3",null);
-    selectNode(ps[4]);
-    Formatting_applyFormattingChanges("H4",null);
-    selectNode(ps[5]);
-    Formatting_applyFormattingChanges("H5",null);
-    selectNode(ps[6]);
-    Formatting_applyFormattingChanges("H6",null);
-    selectNode(ps[7]);
-    Formatting_applyFormattingChanges(".hello",null);
-    selectNode(ps[8]);
-    Formatting_applyFormattingChanges(null,null);
-
-    // An unrelated part of the code adds "id" attributes to heading elements to keep track of
-    // sections - we're not testing that functionality here, so we want to ignore them
-    removeIds();
-}
-</script>
-</head>
-<body>
-<p>Normal</p>
-<p>Heading 1</p>
-<p>Heading 2</p>
-<p>Heading 3</p>
-<p>Heading 4</p>
-<p>Heading 5</p>
-<p>Heading 6</p>
-<p>Class "hello"</p>
-<p>Unchanged (normal)</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style02-expected.html b/Editor/tests/formatting/style02-expected.html
deleted file mode 100644
index 840c7f7..0000000
--- a/Editor/tests/formatting/style02-expected.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Normal</p>
-    <h1>Heading 1</h1>
-    <h2>Heading 2</h2>
-    <h3>Heading 3</h3>
-    <h4>Heading 4</h4>
-    <h5>Heading 5</h5>
-    <h6>Heading 6</h6>
-    <p class="hello">Class "hello"</p>
-    <h1>Unchanged (heading 1)</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style02-input.html b/Editor/tests/formatting/style02-input.html
deleted file mode 100644
index 53b955e..0000000
--- a/Editor/tests/formatting/style02-input.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-
-    // Need to make a copy of this array, because it is "live" and the H1 elements will disappear
-    // from it as we apply formatting changes, changing them into heading elements
-    var h1s = arrayCopy(document.getElementsByTagName("H1"));
-
-    selectNode(h1s[0]);
-    Formatting_applyFormattingChanges("",null);
-    selectNode(h1s[1]);
-    Formatting_applyFormattingChanges("H1",null);
-    selectNode(h1s[2]);
-    Formatting_applyFormattingChanges("H2",null);
-    selectNode(h1s[3]);
-    Formatting_applyFormattingChanges("H3",null);
-    selectNode(h1s[4]);
-    Formatting_applyFormattingChanges("H4",null);
-    selectNode(h1s[5]);
-    Formatting_applyFormattingChanges("H5",null);
-    selectNode(h1s[6]);
-    Formatting_applyFormattingChanges("H6",null);
-    selectNode(h1s[7]);
-    Formatting_applyFormattingChanges(".hello",null);
-    selectNode(h1s[8]);
-    Formatting_applyFormattingChanges(null,null);
-
-    // An unrelated part of the code adds "id" attributes to heading elements to keep track of
-    // sections - we're not testing that functionality here, so we want to ignore them
-    removeIds();
-}
-</script>
-</head>
-<body>
-<h1>Normal</h1>
-<h1>Heading 1</h1>
-<h1>Heading 2</h1>
-<h1>Heading 3</h1>
-<h1>Heading 4</h1>
-<h1>Heading 5</h1>
-<h1>Heading 6</h1>
-<h1>Class "hello"</h1>
-<h1>Unchanged (heading 1)</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style03-expected.html b/Editor/tests/formatting/style03-expected.html
deleted file mode 100644
index 97fd91f..0000000
--- a/Editor/tests/formatting/style03-expected.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Normal</p>
-    <h1>Heading 1</h1>
-    <h2>Heading 2</h2>
-    <h3>Heading 3</h3>
-    <h4>Heading 4</h4>
-    <h5>Heading 5</h5>
-    <h6>Heading 6</h6>
-    <p class="hello">Class "hello"</p>
-    <p class="other">Unchanged (class "other")</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style03-input.html b/Editor/tests/formatting/style03-input.html
deleted file mode 100644
index 4cf5e86..0000000
--- a/Editor/tests/formatting/style03-input.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-
-    // Need to make a copy of this array, because it is "live" and the P elements will disappear
-    // from it as we apply formatting changes, changing them into heading elements
-    var ps = arrayCopy(document.getElementsByTagName("P"));
-
-    selectNode(ps[0]);
-    Formatting_applyFormattingChanges("",null);
-    selectNode(ps[1]);
-    Formatting_applyFormattingChanges("H1",null);
-    selectNode(ps[2]);
-    Formatting_applyFormattingChanges("H2",null);
-    selectNode(ps[3]);
-    Formatting_applyFormattingChanges("H3",null);
-    selectNode(ps[4]);
-    Formatting_applyFormattingChanges("H4",null);
-    selectNode(ps[5]);
-    Formatting_applyFormattingChanges("H5",null);
-    selectNode(ps[6]);
-    Formatting_applyFormattingChanges("H6",null);
-    selectNode(ps[7]);
-    Formatting_applyFormattingChanges(".hello",null);
-    selectNode(ps[8]);
-    Formatting_applyFormattingChanges(null,null);
-
-    // An unrelated part of the code adds "id" attributes to heading elements to keep track of
-    // sections - we're not testing that functionality here, so we want to ignore them
-    removeIds();
-}
-</script>
-</head>
-<body>
-<p class="other">Normal</p>
-<p class="other">Heading 1</p>
-<p class="other">Heading 2</p>
-<p class="other">Heading 3</p>
-<p class="other">Heading 4</p>
-<p class="other">Heading 5</p>
-<p class="other">Heading 6</p>
-<p class="other">Class "hello"</p>
-<p class="other">Unchanged (class "other")</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style04-expected.html b/Editor/tests/formatting/style04-expected.html
deleted file mode 100644
index 159df8c..0000000
--- a/Editor/tests/formatting/style04-expected.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p align="center" style="color: blue">Normal</p>
-    <h1 align="center" style="color: blue">Heading 1</h1>
-    <h2 align="center" style="color: blue">Heading 2</h2>
-    <h3 align="center" style="color: blue">Heading 3</h3>
-    <h4 align="center" style="color: blue">Heading 4</h4>
-    <h5 align="center" style="color: blue">Heading 5</h5>
-    <h6 align="center" style="color: blue">Heading 6</h6>
-    <p align="center" class="hello" style="color: blue">Class "hello"</p>
-    <p align="center" style="color: blue">Unchanged (normal)</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style04-input.html b/Editor/tests/formatting/style04-input.html
deleted file mode 100644
index 6b3e3f5..0000000
--- a/Editor/tests/formatting/style04-input.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-
-    // Need to make a copy of this array, because it is "live" and the P elements will disappear
-    // from it as we apply formatting changes, changing them into heading elements
-    var ps = arrayCopy(document.getElementsByTagName("P"));
-
-    selectNode(ps[0]);
-    Formatting_applyFormattingChanges("",null);
-    selectNode(ps[1]);
-    Formatting_applyFormattingChanges("H1",null);
-    selectNode(ps[2]);
-    Formatting_applyFormattingChanges("H2",null);
-    selectNode(ps[3]);
-    Formatting_applyFormattingChanges("H3",null);
-    selectNode(ps[4]);
-    Formatting_applyFormattingChanges("H4",null);
-    selectNode(ps[5]);
-    Formatting_applyFormattingChanges("H5",null);
-    selectNode(ps[6]);
-    Formatting_applyFormattingChanges("H6",null);
-    selectNode(ps[7]);
-    Formatting_applyFormattingChanges(".hello",null);
-    selectNode(ps[8]);
-    Formatting_applyFormattingChanges(null,null);
-
-    // An unrelated part of the code adds "id" attributes to heading elements to keep track of
-    // sections - we're not testing that functionality here, so we want to ignore them
-    removeIds();
-}
-</script>
-</head>
-<body>
-<p align="center" style="color: blue">Normal</p>
-<p align="center" style="color: blue">Heading 1</p>
-<p align="center" style="color: blue">Heading 2</p>
-<p align="center" style="color: blue">Heading 3</p>
-<p align="center" style="color: blue">Heading 4</p>
-<p align="center" style="color: blue">Heading 5</p>
-<p align="center" style="color: blue">Heading 6</p>
-<p align="center" style="color: blue">Class "hello"</p>
-<p align="center" style="color: blue">Unchanged (normal)</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style05-expected.html b/Editor/tests/formatting/style05-expected.html
deleted file mode 100644
index fdb480d..0000000
--- a/Editor/tests/formatting/style05-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <h1>Paragraph two</h1>
-    <h1>Paragraph three</h1>
-    <h1>Paragraph four</h1>
-    <p>Paragraph five</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style05-input.html b/Editor/tests/formatting/style05-input.html
deleted file mode 100644
index f8acf24..0000000
--- a/Editor/tests/formatting/style05-input.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    Formatting_applyFormattingChanges("h1",null);
-
-    // An unrelated part of the code adds "id" attributes to heading elements to keep track of
-    // sections - we're not testing that functionality here, so we want to ignore them
-    removeIds();
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-<p>Par[agraph two</p>
-<p>Paragraph three</p>
-<p>Paragraph fo]ur</p>
-<p>Paragraph five</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style06-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style06-expected.html b/Editor/tests/formatting/style06-expected.html
deleted file mode 100644
index 452ce51..0000000
--- a/Editor/tests/formatting/style06-expected.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <i>
-        Paragraph
-        <u>one</u>
-      </i>
-    </p>
-    <h1>
-      <i>
-        Paragraph
-        <u>two</u>
-      </i>
-    </h1>
-    <h1>
-      <i>
-        Paragraph
-        <u>three</u>
-      </i>
-    </h1>
-    <h1>
-      <i>
-        Paragraph
-        <u>four</u>
-      </i>
-    </h1>
-    <p>
-      <i>
-        Paragraph
-        <u>five</u>
-      </i>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style06-input.html b/Editor/tests/formatting/style06-input.html
deleted file mode 100644
index ba3422c..0000000
--- a/Editor/tests/formatting/style06-input.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    Formatting_applyFormattingChanges("h1",null);
-
-    // An unrelated part of the code adds "id" attributes to heading elements to keep track of
-    // sections - we're not testing that functionality here, so we want to ignore them
-    removeIds();
-}
-</script>
-</head>
-<body>
-<p><i>Paragraph <u>one</u></i></p>
-<p><i>Paragraph <u>t[wo</u></i></p>
-<p><i>Paragraph <u>three</u></i></p>
-<p><i>Paragraph <u>fou]r</u></i></p>
-<p><i>Paragraph <u>five</u></i></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style07-expected.html b/Editor/tests/formatting/style07-expected.html
deleted file mode 100644
index def4a40..0000000
--- a/Editor/tests/formatting/style07-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <h1>Paragraph one</h1>
-    <h1>Paragraph two</h1>
-    <h1>Paragraph three</h1>
-    <h1>Paragraph four</h1>
-    <h1>Paragraph five</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style07-input.html b/Editor/tests/formatting/style07-input.html
deleted file mode 100644
index a37f865..0000000
--- a/Editor/tests/formatting/style07-input.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    Formatting_applyFormattingChanges("h1",null);
-
-    // An unrelated part of the code adds "id" attributes to heading elements to keep track of
-    // sections - we're not testing that functionality here, so we want to ignore them
-    removeIds();
-}
-</script>
-</head>
-<body>
-[<p>Paragraph one</p>
-<p>Paragraph two</p>
-<p>Paragraph three</p>
-<p>Paragraph four</p>
-<p>Paragraph five</p>]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style08-expected.html b/Editor/tests/formatting/style08-expected.html
deleted file mode 100644
index fdb480d..0000000
--- a/Editor/tests/formatting/style08-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <h1>Paragraph two</h1>
-    <h1>Paragraph three</h1>
-    <h1>Paragraph four</h1>
-    <p>Paragraph five</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style08-input.html b/Editor/tests/formatting/style08-input.html
deleted file mode 100644
index 0a4d1fe..0000000
--- a/Editor/tests/formatting/style08-input.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    Formatting_applyFormattingChanges("h1",null);
-
-    // An unrelated part of the code adds "id" attributes to heading elements to keep track of
-    // sections - we're not testing that functionality here, so we want to ignore them
-    removeIds();
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-[<p>Paragraph two</p>
-<p>Paragraph three</p>
-<p>Paragraph four</p>]
-<p>Paragraph five</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style09-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style09-expected.html b/Editor/tests/formatting/style09-expected.html
deleted file mode 100644
index 452ce51..0000000
--- a/Editor/tests/formatting/style09-expected.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <i>
-        Paragraph
-        <u>one</u>
-      </i>
-    </p>
-    <h1>
-      <i>
-        Paragraph
-        <u>two</u>
-      </i>
-    </h1>
-    <h1>
-      <i>
-        Paragraph
-        <u>three</u>
-      </i>
-    </h1>
-    <h1>
-      <i>
-        Paragraph
-        <u>four</u>
-      </i>
-    </h1>
-    <p>
-      <i>
-        Paragraph
-        <u>five</u>
-      </i>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style09-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style09-input.html b/Editor/tests/formatting/style09-input.html
deleted file mode 100644
index 2570885..0000000
--- a/Editor/tests/formatting/style09-input.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    Formatting_applyFormattingChanges("h1",null);
-
-    // An unrelated part of the code adds "id" attributes to heading elements to keep track of
-    // sections - we're not testing that functionality here, so we want to ignore them
-    removeIds();
-}
-</script>
-</head>
-<body>
-<p><i>Paragraph <u>one</u></i></p>
-[<p><i>Paragraph <u>two</u></i></p>
-<p><i>Paragraph <u>three</u></i></p>
-<p><i>Paragraph <u>fou]r</u></i></p>
-<p><i>Paragraph <u>five</u></i></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style10-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style10-expected.html b/Editor/tests/formatting/style10-expected.html
deleted file mode 100644
index 452ce51..0000000
--- a/Editor/tests/formatting/style10-expected.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <i>
-        Paragraph
-        <u>one</u>
-      </i>
-    </p>
-    <h1>
-      <i>
-        Paragraph
-        <u>two</u>
-      </i>
-    </h1>
-    <h1>
-      <i>
-        Paragraph
-        <u>three</u>
-      </i>
-    </h1>
-    <h1>
-      <i>
-        Paragraph
-        <u>four</u>
-      </i>
-    </h1>
-    <p>
-      <i>
-        Paragraph
-        <u>five</u>
-      </i>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style10-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style10-input.html b/Editor/tests/formatting/style10-input.html
deleted file mode 100644
index bde1e8a..0000000
--- a/Editor/tests/formatting/style10-input.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    Formatting_applyFormattingChanges("h1",null);
-
-    // An unrelated part of the code adds "id" attributes to heading elements to keep track of
-    // sections - we're not testing that functionality here, so we want to ignore them
-    removeIds();
-}
-</script>
-</head>
-<body>
-<p><i>Paragraph <u>one</u></i></p>
-<p><i>Paragraph <u>t[wo</u></i></p>
-<p><i>Paragraph <u>three</u></i></p>
-<p><i>Paragraph <u>four</u></i></p>]
-<p><i>Paragraph <u>five</u></i></p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style11-nop-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style11-nop-expected.html b/Editor/tests/formatting/style11-nop-expected.html
deleted file mode 100644
index c95b4aa..0000000
--- a/Editor/tests/formatting/style11-nop-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ul>
-      <li><p class="test">Item one</p></li>
-      <li><p class="test">Item two</p></li>
-      <li><p class="test">Item three</p></li>
-    </ul>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style11-nop-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style11-nop-input.html b/Editor/tests/formatting/style11-nop-input.html
deleted file mode 100644
index a68b915..0000000
--- a/Editor/tests/formatting/style11-nop-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-[<ul>
-  <li>Item one</li>
-  <li>Item two</li>
-  <li>Item three</li>
-</ul>]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style11-p-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style11-p-expected.html b/Editor/tests/formatting/style11-p-expected.html
deleted file mode 100644
index c95b4aa..0000000
--- a/Editor/tests/formatting/style11-p-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ul>
-      <li><p class="test">Item one</p></li>
-      <li><p class="test">Item two</p></li>
-      <li><p class="test">Item three</p></li>
-    </ul>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style11-p-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style11-p-input.html b/Editor/tests/formatting/style11-p-input.html
deleted file mode 100644
index 7fbe211..0000000
--- a/Editor/tests/formatting/style11-p-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-[<ul>
-  <li><p>Item one</p></li>
-  <li><p>Item two</p></li>
-  <li><p>Item three</p></li>
-</ul>]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style12-nop-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style12-nop-expected.html b/Editor/tests/formatting/style12-nop-expected.html
deleted file mode 100644
index 119160b..0000000
--- a/Editor/tests/formatting/style12-nop-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ul>
-      <li>Item one</li>
-      <li><p class="test">Item two</p></li>
-      <li><p class="test">Item three</p></li>
-      <li><p class="test">Item four</p></li>
-      <li>Item five</li>
-    </ul>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style12-nop-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style12-nop-input.html b/Editor/tests/formatting/style12-nop-input.html
deleted file mode 100644
index 111dc22..0000000
--- a/Editor/tests/formatting/style12-nop-input.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<ul>
-  <li>Item one</li>
-  <li>Item [two</li>
-  <li>Item three</li>
-  <li>Item] four</li>
-  <li>Item five</li>
-</ul>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style12-p-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style12-p-expected.html b/Editor/tests/formatting/style12-p-expected.html
deleted file mode 100644
index 6d6b164..0000000
--- a/Editor/tests/formatting/style12-p-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ul>
-      <li><p>Item one</p></li>
-      <li><p class="test">Item two</p></li>
-      <li><p class="test">Item three</p></li>
-      <li><p class="test">Item four</p></li>
-      <li><p>Item five</p></li>
-    </ul>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style12-p-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style12-p-input.html b/Editor/tests/formatting/style12-p-input.html
deleted file mode 100644
index 7ced3a3..0000000
--- a/Editor/tests/formatting/style12-p-input.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<ul>
-  <li><p>Item one</p></li>
-  <li><p>Item [two</p></li>
-  <li><p>Item three</p></li>
-  <li><p>Item] four</p></li>
-  <li><p>Item five</p></li>
-</ul>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style13-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style13-expected.html b/Editor/tests/formatting/style13-expected.html
deleted file mode 100644
index a2d6274..0000000
--- a/Editor/tests/formatting/style13-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ul>
-      <li>Item one</li>
-      <li><p class="test">Item two</p></li>
-      <li><p class="test">Item three</p></li>
-      <li><p class="test">Item four</p></li>
-      <li><p class="test">Item five</p></li>
-    </ul>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style13-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style13-input.html b/Editor/tests/formatting/style13-input.html
deleted file mode 100644
index 82750ff..0000000
--- a/Editor/tests/formatting/style13-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<ul>
-  <li>Item one</li>
-  <li>Item [two</li>
-  <li>Item three</li>
-  <li>Item four</li>
-  <li>Item five</li>
-</ul>
-]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style14-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style14-expected.html b/Editor/tests/formatting/style14-expected.html
deleted file mode 100644
index a517d03..0000000
--- a/Editor/tests/formatting/style14-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ul>
-      <li><p class="test">Item one</p></li>
-      <li><p class="test">Item two</p></li>
-      <li><p class="test">Item three</p></li>
-      <li><p class="test">Item four</p></li>
-      <li>Item five</li>
-    </ul>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style14-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style14-input.html b/Editor/tests/formatting/style14-input.html
deleted file mode 100644
index fd56133..0000000
--- a/Editor/tests/formatting/style14-input.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-[<ul>
-  <li>Item one</li>
-  <li>Item two</li>
-  <li>Item three</li>
-  <li>Item] four</li>
-  <li>Item five</li>
-</ul>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style15-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style15-expected.html b/Editor/tests/formatting/style15-expected.html
deleted file mode 100644
index 119160b..0000000
--- a/Editor/tests/formatting/style15-expected.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ul>
-      <li>Item one</li>
-      <li><p class="test">Item two</p></li>
-      <li><p class="test">Item three</p></li>
-      <li><p class="test">Item four</p></li>
-      <li>Item five</li>
-    </ul>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style15-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style15-input.html b/Editor/tests/formatting/style15-input.html
deleted file mode 100644
index 205ac20..0000000
--- a/Editor/tests/formatting/style15-input.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<ul>
-  <li>Item one</li>
-  [<li>Item two</li>
-  <li>Item three</li>
-  <li>Item four</li>]
-  <li>Item five</li>
-</ul>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style16-nop-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style16-nop-expected.html b/Editor/tests/formatting/style16-nop-expected.html
deleted file mode 100644
index 884cf6d..0000000
--- a/Editor/tests/formatting/style16-nop-expected.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <p class="test">Paragraph two</p>
-    <table border="1">
-      <tbody>
-        <tr>
-          <td><p class="test">One</p></td>
-          <td><p class="test">Two</p></td>
-        </tr>
-        <tr>
-          <td><p class="test">Three</p></td>
-          <td><p class="test">Four</p></td>
-        </tr>
-      </tbody>
-    </table>
-    <p class="test">Paragraph three</p>
-    <p>Paragraph four</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style16-nop-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style16-nop-input.html b/Editor/tests/formatting/style16-nop-input.html
deleted file mode 100644
index 555bc5a..0000000
--- a/Editor/tests/formatting/style16-nop-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-[<p>Paragraph two</p>
-<table border="1">
-  <tr>
-    <td>One</td>
-    <td>Two</td>
-  </tr>
-  <tr>
-    <td>Three</td>
-    <td>Four</td>
-  </tr>
-</table>
-<p>Paragraph three</p>]
-<p>Paragraph four</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style16-p-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style16-p-expected.html b/Editor/tests/formatting/style16-p-expected.html
deleted file mode 100644
index 884cf6d..0000000
--- a/Editor/tests/formatting/style16-p-expected.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <p class="test">Paragraph two</p>
-    <table border="1">
-      <tbody>
-        <tr>
-          <td><p class="test">One</p></td>
-          <td><p class="test">Two</p></td>
-        </tr>
-        <tr>
-          <td><p class="test">Three</p></td>
-          <td><p class="test">Four</p></td>
-        </tr>
-      </tbody>
-    </table>
-    <p class="test">Paragraph three</p>
-    <p>Paragraph four</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style16-p-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style16-p-input.html b/Editor/tests/formatting/style16-p-input.html
deleted file mode 100644
index 9a9d56c..0000000
--- a/Editor/tests/formatting/style16-p-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-[<p>Paragraph two</p>
-<table border="1">
-  <tr>
-    <td><p>One</p></td>
-    <td><p>Two</p></td>
-  </tr>
-  <tr>
-    <td><p>Three</p></td>
-    <td><p>Four</p></td>
-  </tr>
-</table>
-<p>Paragraph three</p>]
-<p>Paragraph four</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style17-nop-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style17-nop-expected.html b/Editor/tests/formatting/style17-nop-expected.html
deleted file mode 100644
index c90eca3..0000000
--- a/Editor/tests/formatting/style17-nop-expected.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <p>Paragraph two</p>
-    <table border="1">
-      <tbody>
-        <tr>
-          <td><p class="test">One</p></td>
-          <td><p class="test">Two</p></td>
-        </tr>
-        <tr>
-          <td><p class="test">Three</p></td>
-          <td><p class="test">Four</p></td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Paragraph three</p>
-    <p>Paragraph four</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style17-nop-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style17-nop-input.html b/Editor/tests/formatting/style17-nop-input.html
deleted file mode 100644
index 71f821b..0000000
--- a/Editor/tests/formatting/style17-nop-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-<p>Paragraph two</p>
-[<table border="1">
-  <tr>
-    <td>One</td>
-    <td>Two</td>
-  </tr>
-  <tr>
-    <td>Three</td>
-    <td>Four</td>
-  </tr>
-</table>]
-<p>Paragraph three</p>
-<p>Paragraph four</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style17-p-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style17-p-expected.html b/Editor/tests/formatting/style17-p-expected.html
deleted file mode 100644
index c90eca3..0000000
--- a/Editor/tests/formatting/style17-p-expected.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <p>Paragraph two</p>
-    <table border="1">
-      <tbody>
-        <tr>
-          <td><p class="test">One</p></td>
-          <td><p class="test">Two</p></td>
-        </tr>
-        <tr>
-          <td><p class="test">Three</p></td>
-          <td><p class="test">Four</p></td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Paragraph three</p>
-    <p>Paragraph four</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style17-p-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style17-p-input.html b/Editor/tests/formatting/style17-p-input.html
deleted file mode 100644
index 1976fc6..0000000
--- a/Editor/tests/formatting/style17-p-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-<p>Paragraph two</p>
-[<table border="1">
-  <tr>
-    <td><p>One</p></td>
-    <td><p>Two</p></td>
-  </tr>
-  <tr>
-    <td><p>Three</p></td>
-    <td><p>Four</p></td>
-  </tr>
-</table>]
-<p>Paragraph three</p>
-<p>Paragraph four</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style18-nop-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style18-nop-expected.html b/Editor/tests/formatting/style18-nop-expected.html
deleted file mode 100644
index fb6bd1f..0000000
--- a/Editor/tests/formatting/style18-nop-expected.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <p>Paragraph two</p>
-    <table border="1">
-      <tbody>
-        <tr>
-          <td>One</td>
-          <td>Two</td>
-        </tr>
-        <tr>
-          <td><p class="test">Three</p></td>
-          <td><p class="test">Four</p></td>
-        </tr>
-        <tr>
-          <td><p class="test">Five</p></td>
-          <td><p class="test">Six</p></td>
-        </tr>
-        <tr>
-          <td>Seven</td>
-          <td>Eight</td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Paragraph three</p>
-    <p>Paragraph four</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style18-nop-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style18-nop-input.html b/Editor/tests/formatting/style18-nop-input.html
deleted file mode 100644
index a318f41..0000000
--- a/Editor/tests/formatting/style18-nop-input.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    // Have to set the selection manually here, since putting in [ and ] is invalid HTML and
-    // WebKit's parser will move the selection to cover the whole table if we do that
-    var table = document.getElementsByTagName("TABLE")[0];
-    var trs = document.getElementsByTagName("TR");
-    var tr1Offset = DOM_nodeOffset(trs[1]);
-    var tr2Offset = DOM_nodeOffset(trs[2]);
-
-    // The table is not the parent of the TRs - the parser automatically inserts a TBODY
-    // between them
-    Selection_set(trs[1].parentNode,tr1Offset,trs[2].parentNode,tr2Offset+1);
-
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-<p>Paragraph two</p>
-<table border="1">
-  <tr>
-    <td>One</td>
-    <td>Two</td>
-  </tr>
-  <tr>
-    <td>Three</td>
-    <td>Four</td>
-  </tr>
-  <tr>
-    <td>Five</td>
-    <td>Six</td>
-  </tr>
-  <tr>
-    <td>Seven</td>
-    <td>Eight</td>
-  </tr>
-</table>
-<p>Paragraph three</p>
-<p>Paragraph four</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style18-p-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style18-p-expected.html b/Editor/tests/formatting/style18-p-expected.html
deleted file mode 100644
index 648bf50..0000000
--- a/Editor/tests/formatting/style18-p-expected.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <p>Paragraph two</p>
-    <table border="1">
-      <tbody>
-        <tr>
-          <td><p>One</p></td>
-          <td><p>Two</p></td>
-        </tr>
-        <tr>
-          <td><p class="test">Three</p></td>
-          <td><p class="test">Four</p></td>
-        </tr>
-        <tr>
-          <td><p class="test">Five</p></td>
-          <td><p class="test">Six</p></td>
-        </tr>
-        <tr>
-          <td><p>Seven</p></td>
-          <td><p>Eight</p></td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Paragraph three</p>
-    <p>Paragraph four</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style18-p-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style18-p-input.html b/Editor/tests/formatting/style18-p-input.html
deleted file mode 100644
index 787b629..0000000
--- a/Editor/tests/formatting/style18-p-input.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    // Have to set the selection manually here, since putting in [ and ] is invalid HTML and
-    // WebKit's parser will move the selection to cover the whole table if we do that
-    var table = document.getElementsByTagName("TABLE")[0];
-    var trs = document.getElementsByTagName("TR");
-    var tr1Offset = DOM_nodeOffset(trs[1]);
-    var tr2Offset = DOM_nodeOffset(trs[2]);
-
-    // The table is not the parent of the TRs - the parser automatically inserts a TBODY
-    // between them
-    Selection_set(trs[1].parentNode,tr1Offset,trs[2].parentNode,tr2Offset+1);
-
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-<p>Paragraph two</p>
-<table border="1">
-  <tr>
-    <td><p>One</p></td>
-    <td><p>Two</p></td>
-  </tr>
-  <tr>
-    <td><p>Three</p></td>
-    <td><p>Four</p></td>
-  </tr>
-  <tr>
-    <td><p>Five</p></td>
-    <td><p>Six</p></td>
-  </tr>
-  <tr>
-    <td><p>Seven</p></td>
-    <td><p>Eight</p></td>
-  </tr>
-</table>
-<p>Paragraph three</p>
-<p>Paragraph four</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style19-nop-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style19-nop-expected.html b/Editor/tests/formatting/style19-nop-expected.html
deleted file mode 100644
index 525fb2a..0000000
--- a/Editor/tests/formatting/style19-nop-expected.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <p>Paragraph two</p>
-    <table border="1">
-      <tbody>
-        <tr>
-          <td>One</td>
-          <td><p class="test">Two</p></td>
-        </tr>
-        <tr>
-          <td><p class="test">Three</p></td>
-          <td>Four</td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Paragraph three</p>
-    <p>Paragraph four</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style19-nop-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style19-nop-input.html b/Editor/tests/formatting/style19-nop-input.html
deleted file mode 100644
index 9b2818e..0000000
--- a/Editor/tests/formatting/style19-nop-input.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    // Have to set the selection manually here, since putting in [ and ] is invalid HTML and
-    // WebKit's parser will move the selection to before the table if we do that
-    var table = document.getElementsByTagName("TABLE")[0];
-    var tds = document.getElementsByTagName("TD");
-    var td1Offset = DOM_nodeOffset(tds[1]);
-    var td2Offset = DOM_nodeOffset(tds[2]);
-
-    Selection_set(tds[1].parentNode,td1Offset,tds[2].parentNode,td2Offset+1);
-
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-<p>Paragraph two</p>
-<table border="1">
-  <tr>
-    <td>One</td>
-    <td>Two</td>
-  </tr>
-  <tr>
-    <td>Three</td>
-    <td>Four</td>
-  </tr>
-</table>
-<p>Paragraph three</p>
-<p>Paragraph four</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style19-p-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style19-p-expected.html b/Editor/tests/formatting/style19-p-expected.html
deleted file mode 100644
index 1e5ee8c..0000000
--- a/Editor/tests/formatting/style19-p-expected.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <p>Paragraph two</p>
-    <table border="1">
-      <tbody>
-        <tr>
-          <td><p>One</p></td>
-          <td><p class="test">Two</p></td>
-        </tr>
-        <tr>
-          <td><p class="test">Three</p></td>
-          <td><p>Four</p></td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Paragraph three</p>
-    <p>Paragraph four</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style19-p-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style19-p-input.html b/Editor/tests/formatting/style19-p-input.html
deleted file mode 100644
index 98291ee..0000000
--- a/Editor/tests/formatting/style19-p-input.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    // Have to set the selection manually here, since putting in [ and ] is invalid HTML and
-    // WebKit's parser will move the selection to before the table if we do that
-    var table = document.getElementsByTagName("TABLE")[0];
-    var tds = document.getElementsByTagName("TD");
-    var td1Offset = DOM_nodeOffset(tds[1]);
-    var td2Offset = DOM_nodeOffset(tds[2]);
-
-    Selection_set(tds[1].parentNode,td1Offset,tds[2].parentNode,td2Offset+1);
-
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-<p>Paragraph two</p>
-<table border="1">
-  <tr>
-    <td><p>One</p></td>
-    <td><p>Two</p></td>
-  </tr>
-  <tr>
-    <td><p>Three</p></td>
-    <td><p>Four</p></td>
-  </tr>
-</table>
-<p>Paragraph three</p>
-<p>Paragraph four</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style20-nop-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style20-nop-expected.html b/Editor/tests/formatting/style20-nop-expected.html
deleted file mode 100644
index 525fb2a..0000000
--- a/Editor/tests/formatting/style20-nop-expected.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <p>Paragraph two</p>
-    <table border="1">
-      <tbody>
-        <tr>
-          <td>One</td>
-          <td><p class="test">Two</p></td>
-        </tr>
-        <tr>
-          <td><p class="test">Three</p></td>
-          <td>Four</td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Paragraph three</p>
-    <p>Paragraph four</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style20-nop-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style20-nop-input.html b/Editor/tests/formatting/style20-nop-input.html
deleted file mode 100644
index efb5624..0000000
--- a/Editor/tests/formatting/style20-nop-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-<p>Paragraph two</p>
-<table border="1">
-  <tr>
-    <td>One</td>
-    <td>[Two</td>
-  </tr>
-  <tr>
-    <td>Three]</td>
-    <td>Four</td>
-  </tr>
-</table>
-<p>Paragraph three</p>
-<p>Paragraph four</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style20-p-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style20-p-expected.html b/Editor/tests/formatting/style20-p-expected.html
deleted file mode 100644
index 1e5ee8c..0000000
--- a/Editor/tests/formatting/style20-p-expected.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <p>Paragraph two</p>
-    <table border="1">
-      <tbody>
-        <tr>
-          <td><p>One</p></td>
-          <td><p class="test">Two</p></td>
-        </tr>
-        <tr>
-          <td><p class="test">Three</p></td>
-          <td><p>Four</p></td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Paragraph three</p>
-    <p>Paragraph four</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style20-p-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style20-p-input.html b/Editor/tests/formatting/style20-p-input.html
deleted file mode 100644
index d714523..0000000
--- a/Editor/tests/formatting/style20-p-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-<p>Paragraph two</p>
-<table border="1">
-  <tr>
-    <td><p>One</p></td>
-    <td>[<p>Two</p></td>
-  </tr>
-  <tr>
-    <td><p>Three</p>]</td>
-    <td><p>Four</p></td>
-  </tr>
-</table>
-<p>Paragraph three</p>
-<p>Paragraph four</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style21-nop-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style21-nop-expected.html b/Editor/tests/formatting/style21-nop-expected.html
deleted file mode 100644
index 525fb2a..0000000
--- a/Editor/tests/formatting/style21-nop-expected.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <p>Paragraph two</p>
-    <table border="1">
-      <tbody>
-        <tr>
-          <td>One</td>
-          <td><p class="test">Two</p></td>
-        </tr>
-        <tr>
-          <td><p class="test">Three</p></td>
-          <td>Four</td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Paragraph three</p>
-    <p>Paragraph four</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style21-nop-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style21-nop-input.html b/Editor/tests/formatting/style21-nop-input.html
deleted file mode 100644
index 445a0d7..0000000
--- a/Editor/tests/formatting/style21-nop-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-<p>Paragraph two</p>
-<table border="1">
-  <tr>
-    <td>One</td>
-    <td>T[wo</td>
-  </tr>
-  <tr>
-    <td>Thr]ee</td>
-    <td>Four</td>
-  </tr>
-</table>
-<p>Paragraph three</p>
-<p>Paragraph four</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style21-p-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style21-p-expected.html b/Editor/tests/formatting/style21-p-expected.html
deleted file mode 100644
index 1e5ee8c..0000000
--- a/Editor/tests/formatting/style21-p-expected.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <p>Paragraph two</p>
-    <table border="1">
-      <tbody>
-        <tr>
-          <td><p>One</p></td>
-          <td><p class="test">Two</p></td>
-        </tr>
-        <tr>
-          <td><p class="test">Three</p></td>
-          <td><p>Four</p></td>
-        </tr>
-      </tbody>
-    </table>
-    <p>Paragraph three</p>
-    <p>Paragraph four</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style21-p-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style21-p-input.html b/Editor/tests/formatting/style21-p-input.html
deleted file mode 100644
index 86116e4..0000000
--- a/Editor/tests/formatting/style21-p-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-<p>Paragraph two</p>
-<table border="1">
-  <tr>
-    <td><p>One</p></td>
-    <td><p>T[wo</p></td>
-  </tr>
-  <tr>
-    <td><p>Thr]ee</p></td>
-    <td><p>Four</p></td>
-  </tr>
-</table>
-<p>Paragraph three</p>
-<p>Paragraph four</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style22-nop-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style22-nop-expected.html b/Editor/tests/formatting/style22-nop-expected.html
deleted file mode 100644
index 8fd7237..0000000
--- a/Editor/tests/formatting/style22-nop-expected.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <h1>
-      <i>
-        Paragraph
-        <u>two</u>
-      </i>
-    </h1>
-    <p>Paragraph three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style22-nop-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style22-nop-input.html b/Editor/tests/formatting/style22-nop-input.html
deleted file mode 100644
index fc69997..0000000
--- a/Editor/tests/formatting/style22-nop-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    Formatting_applyFormattingChanges("h1",null);
-
-    // An unrelated part of the code adds "id" attributes to heading elements to keep track of
-    // sections - we're not testing that functionality here, so we want to ignore them
-    removeIds();
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-<i>Paragraph <u>t[]wo</u></i>
-<p>Paragraph three</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style22-p-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style22-p-expected.html b/Editor/tests/formatting/style22-p-expected.html
deleted file mode 100644
index 8fd7237..0000000
--- a/Editor/tests/formatting/style22-p-expected.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <h1>
-      <i>
-        Paragraph
-        <u>two</u>
-      </i>
-    </h1>
-    <p>Paragraph three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style22-p-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style22-p-input.html b/Editor/tests/formatting/style22-p-input.html
deleted file mode 100644
index 2b60ba3..0000000
--- a/Editor/tests/formatting/style22-p-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    Formatting_applyFormattingChanges("h1",null);
-
-    // An unrelated part of the code adds "id" attributes to heading elements to keep track of
-    // sections - we're not testing that functionality here, so we want to ignore them
-    removeIds();
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-<p><i>Paragraph <u>t[]wo</u></i></p>
-<p>Paragraph three</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style23-nop-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style23-nop-expected.html b/Editor/tests/formatting/style23-nop-expected.html
deleted file mode 100644
index 0a56f25..0000000
--- a/Editor/tests/formatting/style23-nop-expected.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <h1>Paragraph two</h1>
-    <p>Paragraph three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style23-nop-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style23-nop-input.html b/Editor/tests/formatting/style23-nop-input.html
deleted file mode 100644
index 561307b..0000000
--- a/Editor/tests/formatting/style23-nop-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    Formatting_applyFormattingChanges("h1",null);
-
-    // An unrelated part of the code adds "id" attributes to heading elements to keep track of
-    // sections - we're not testing that functionality here, so we want to ignore them
-    removeIds();
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-Paragraph t[]wo
-<p>Paragraph three</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style23-p-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style23-p-expected.html b/Editor/tests/formatting/style23-p-expected.html
deleted file mode 100644
index 0a56f25..0000000
--- a/Editor/tests/formatting/style23-p-expected.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>Paragraph one</p>
-    <h1>Paragraph two</h1>
-    <p>Paragraph three</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style23-p-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style23-p-input.html b/Editor/tests/formatting/style23-p-input.html
deleted file mode 100644
index 7242cbb..0000000
--- a/Editor/tests/formatting/style23-p-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-
-function performTest()
-{
-    Formatting_applyFormattingChanges("h1",null);
-
-    // An unrelated part of the code adds "id" attributes to heading elements to keep track of
-    // sections - we're not testing that functionality here, so we want to ignore them
-    removeIds();
-}
-</script>
-</head>
-<body>
-<p>Paragraph one</p>
-<p>Paragraph t[]wo</p>
-<p>Paragraph three</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style24-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style24-expected.html b/Editor/tests/formatting/style24-expected.html
deleted file mode 100644
index 7de4a92..0000000
--- a/Editor/tests/formatting/style24-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <h1>
-      One two
-      <i>three</i>
-      four five
-    </h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/style24-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/style24-input.html b/Editor/tests/formatting/style24-input.html
deleted file mode 100644
index 885f283..0000000
--- a/Editor/tests/formatting/style24-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges("H1",{});
-}
-</script>
-</head>
-<body>
-
-  <p>One [two <i>three</i> four] five</p>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/generic.css
----------------------------------------------------------------------
diff --git a/Editor/tests/generic.css b/Editor/tests/generic.css
deleted file mode 100644
index 5b93e8e..0000000
--- a/Editor/tests/generic.css
+++ /dev/null
@@ -1,62 +0,0 @@
-body {
-    counter-reset: h1 h2 h3 h4 h5 h6 figure table;
-}
-
-table {
-    border-collapse: collapse;
-    margin-left: auto;
-    margin-right: auto;
-}
-td > :first-child, th > :first-child {
-    margin-top: 0;
-}
-td > :last-child, th > :last-child {
-    margin-bottom: 0;
-}
-td, th {
-    border: 1px solid black;
-}
-
-figure {
-    margin-left: auto;
-    margin-right: auto;
-    text-align: center;
-}
-
-.toc1 {
-    margin-bottom: 6pt;
-    margin-left: 0pt;
-    margin-top: 12pt;
-}
-.toc2 {
-    margin-bottom: 6pt;
-    margin-left: 24pt;
-    margin-top: 6pt;
-}
-.toc3 {
-    margin-bottom: 6pt;
-    margin-left: 48pt;
-    margin-top: 6pt;
-}
-
-caption {
-  caption-side: bottom;
-  counter-increment: table;
-}
-
-caption::before {
-  content: "Table " counter(table) ": ";
-}
-
-figcaption {
-  counter-increment: figure;
-}
-
-figcaption::before {
-  content: "Figure " counter(figure) ": ";
-}
-
-.uxwrite-autocorrect { background-color: #c0ffc0; }
-.uxwrite-selection { background-color: rgb(201,221,238); }
-.uxwrite-spelling { background-color: rgb(255,128,128); }
-.uxwrite-match { background-color: rgb(255,255,0); }

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/genindex.sh
----------------------------------------------------------------------
diff --git a/Editor/tests/genindex.sh b/Editor/tests/genindex.sh
deleted file mode 100755
index 3c99da3..0000000
--- a/Editor/tests/genindex.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-(
-prevdir=""
-echo "// This file was generated by genindex.sh"
-echo "var tests = [";
-for dir in *; do
-    if [ -d $dir ]; then
-        if [ ! -z "$prevdir" ]; then
-            echo ","
-        fi
-        echo "  { dir: \"$dir\","
-        echo -n "    files: ["
-        prevfile=""
-        for file in $(cd $dir && echo *-input.html); do
-            if [ ! -z "$prevfile" ]; then
-                echo ","
-                echo -n "            "
-            fi
-            shortname=`echo $file | sed -e 's/-input.html//'`
-            echo -n "\"$shortname\""
-            prevfile="$file"
-        done
-        echo -n "] }"
-        prevdir="$dir"
-    fi
-done
-echo
-echo "];"
-) > index.js

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/htmltotext.html
----------------------------------------------------------------------
diff --git a/Editor/tests/htmltotext.html b/Editor/tests/htmltotext.html
deleted file mode 100644
index 01fbb41..0000000
--- a/Editor/tests/htmltotext.html
+++ /dev/null
@@ -1,125 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html> <head>
-<title></title>
-
-<script src="../tests/nulleditor.js"></script>
-<script src="../Clipboard_js"></script>
-<script src="../Cursor_js"></script>
-<script src="../DOM_js"></script>
-<script src="../Formatting_js"></script>
-<script src="../Hierarchy_js"></script>
-<script src="../init.js"></script>
-<script src="../Lists_js"></script>
-<script src="../NodeSet.js"></script>
-<script src="../Outline_js"></script>
-<script src="../Position.js"></script>
-<script src="../PostponedActions_js"></script>
-<script src="../Range.js"></script>
-<script src="../StringBuilder.js"></script>
-<script src="../traversal.js"></script>
-<script src="../types.js"></script>
-<script src="../UndoManager_js"></script>
-<script src="../util.js"></script>
-<script src="../Viewport_js"></script>
-<script src="../Selection_js"></script>
-<script src="../tests/testlib.js"></script>
-<script>
-function debug(str)
-{
-    console.log(str);
-}
-
-function loaded()
-{
-    DOM_assignNodeIds(document);
-    var text = Clipboard_htmlToText(document.body);
-    DOM_deleteAllChildren(document.body);
-    var pre = DOM_createElement(document,"PRE");
-    DOM_setStyleProperties(pre,{"white-space": "pre-wrap"});
-    DOM_appendChild(pre,DOM_createTextNode(document,text));
-    DOM_appendChild(document.body,pre);
-}
-</script>
-
-</head>
-
-<body onload="loaded()">
-
-<blockquote>
-<p>Here is some text in a blockquote. Here is some text in a blockquote.Here is some text in a blockquote.Here is some text in a blockquote.Here is some text in a blockquote.Here is some text in a blockquote.</p>
-
-<p>Here is some text in a blockquote. Here is some text in a blockquote.Here is some text in a blockquote.Here is some text in a blockquote.Here is some text in a blockquote.Here is some text in a blockquote.</p>
-
-<p>Here is some text in a blockquote. Here is some text in a blockquote.Here is some text in a blockquote.Here is some text in a blockquote.Here is some text in a blockquote.Here is some text in a blockquote.</p>
-
-<blockquote>
-This is a nested blockquote. This is a nested blockquote. This is a nested blockquote. This is a nested blockquote. This is a nested blockquote. This is a nested blockquote. This is a nested blockquote. This is a nested blockquote. 
-</blockquote>
-
-<ul>
-    <li>One</li>
-    <li>Two</li>
-    <li>Three</li>
-</ul>
-
-</blockquote>
-
-<p>First paragraph</p>
-<p>Third paragraph</p>
-<h1>Heading 1</h1>
-<h2>Heading 2</h2>
-<h3>Heading 3</h3>
-<h4>Heading 4</h4>
-<h5>Heading 5</h5>
-<h6>Heading 6</h6>
-<div><div><div>Content inside nested div</div></div></div>
-<p>One <b>Two</b> <i>Three</i></p>
-<ul><li>Item one</li><li>Item two</li><li>Item three</li><li>Item four<ul><li>AAAAA</li><li>BBBBB</li><li>CCCCC</li></ul></li><li><p>Item five para 1</p><p>Item five para 2</p><p>Item five para 3</p></li>
-</ul>
-<p>Fourth paragraph</p>
-<p>Fifth paragraph</p>
-
-
-Some text that is not in a paragraph. Some text that is not in a paragraph. Some text that is not in a paragraph. Some text that is not in a paragraph. Some text that is not in a paragraph. Some text that is not in a paragraph. Some text that is not in a paragraph. Some text that is not in a paragraph. Some text that is not in a paragraph. Some text that is not in a paragraph. Some text that is not in a paragraph. Some text that is not in a paragraph. Some text that is not in a paragraph. Some text that is not in a paragraph.
-
-<i>italic</i> <b>bold</b> <em>emphasis</em> <strong>strong</strong>
-
-<p><u>one</u><u>two</u><u>three</u></p>
-
-<p><u>one </u> <u> two </u> <u> three</u></p>
-
-Here is a link to the <a href="http://daringfireball.net/projects/markdown/syntax">Markdown syntax</a> (a good reference)
-
-<p>First paragraph</p>
-
-<p>Third paragraph</p>
-<p>One <b>Two</b> <i>Three</i></p>
-
-<ol>
-  <li>Item one</li>
-  <li>Item two</li>
-  <li>Item three</li>
-  <li>Item four
-    <ol>
-      <li>AAAAA</li>
-      <li>BBBBB<p>BBBBB</p>BBBBB<p>BBBBB</p>BBBBB<ul><li>one<p>x</p></li><li>two</li></ul></li>
-      <li>CCCCC</li>
-    </ol>
-  </li>
-  <li>Item five</li>
-  <li>Item</li>
-  <li>Item</li>
-  <li>Item</li>
-  <li>Item</li>
-  <li>Item<h1>Heading 1</h1><h2>Heading 2</h2>Rest of item</li>
-  <li>Item</li>
-  <li>Item</li>
-  <li>Item</li>
-</ol>
-
-<p>Fourth paragraph</p>
-
-<p>Fifth paragraph</p>
-
-</body>
-</html>