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

[24/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/dom/tracking1-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/tracking1-input.html b/Editor/tests/dom/tracking1-input.html
deleted file mode 100644
index f819e8e..0000000
--- a/Editor/tests/dom/tracking1-input.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-
-    var messages = new Array();
-    var nodeCount = document.body.childNodes.length;
-    for (var posOffset = 0; posOffset <= nodeCount; posOffset++) {
-        for (var nodeOffset = 0; nodeOffset <= nodeCount; nodeOffset++) {
-            var position = new Position(document.body,posOffset);
-            var temp = DOM_createElement(document,"B");
-            Position_trackWhileExecuting([position],function() {
-                var message = "posOffset "+posOffset+", nodeOffset "+nodeOffset+": "+position;
-                DOM_insertBefore(document.body,temp,document.body.childNodes[nodeOffset]);
-                message += " "+position;
-                DOM_deleteNode(temp);
-                message += " "+position;
-                messages.push(message);
-            });
-        }
-    }
-
-    DOM_deleteAllChildren(document.body);
-    DOM_appendChild(document.body,DOM_createTextNode(document,"-\n"+messages.join("\n")+"\n-"));
-}
-</script>
-</head>
-<body><p>One</p><p>Two</p><p>Three</p></body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/dom/tracking2-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/tracking2-expected.html b/Editor/tests/dom/tracking2-expected.html
deleted file mode 100644
index bfde537..0000000
--- a/Editor/tests/dom/tracking2-expected.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    -
-Before insertion: position = (BODY,4)
-After insertion: position = (BODY,4)
-Before removal: position = (BODY,4)
-After removal: position = (BODY,4)
--
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/dom/tracking2-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/tracking2-input.html b/Editor/tests/dom/tracking2-input.html
deleted file mode 100644
index a17a42b..0000000
--- a/Editor/tests/dom/tracking2-input.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var messages = new Array();
-
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(document.body,document.body.childNodes.length);
-    messages.push("Before insertion: position = "+position);
-    Position_trackWhileExecuting([position],function() {
-        DOM_appendChild(ps[0],DOM_createTextNode(document,"X"));
-    });
-    messages.push("After insertion: position = "+position);
-
-    var position = new Position(document.body,document.body.childNodes.length);
-    messages.push("Before removal: position = "+position);
-    Position_trackWhileExecuting([position],function() {
-        DOM_deleteNode(ps[0].firstChild);
-    });
-    messages.push("After removal: position = "+position);
-
-    DOM_deleteAllChildren(document.body);
-    DOM_appendChild(document.body,DOM_createTextNode(document,"-\n"+messages.join("\n")+"\n-"));
-}
-</script>
-</head>
-<body><p>One</p><p>Two</p><p>Three</p></body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/dom/tracking3-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/tracking3-input.html b/Editor/tests/dom/tracking3-input.html
deleted file mode 100644
index 609fd52..0000000
--- a/Editor/tests/dom/tracking3-input.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var position = new Position(ps[0],1);
-
-    Position_trackWhileExecuting([position],function() {
-        DOM_removeNodeButKeepChildren(ps[0]);
-    });
-
-    var tt = DOM_createElement(document,"tt");
-    insertAtPosition(position,tt);
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/dom/tracking4-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/tracking4-input.html b/Editor/tests/dom/tracking4-input.html
deleted file mode 100644
index 3f78b47..0000000
--- a/Editor/tests/dom/tracking4-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var ps = document.getElementsByTagName("P");
-    var pos1 = new Position(ps[0],0);
-    var pos2 = new Position(ps[0],2);
-
-    Position_trackWhileExecuting([pos1,pos2],function() {
-        insertAtPosition(pos1,DOM_createElement(document,"b"));
-        insertAtPosition(pos2,DOM_createElement(document,"i"));
-    });
-}
-</script>
-</head>
-<body><p><span>Zero</span><span>One</span></p><p>Two</p><p>Three</p></body></html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/dom/wrapSiblings01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/wrapSiblings01-expected.html b/Editor/tests/dom/wrapSiblings01-expected.html
deleted file mode 100644
index 30ede3c..0000000
--- a/Editor/tests/dom/wrapSiblings01-expected.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      (P,0)
-      <b>A</b>
-      (P,1)
-      <b>B</b>
-      <i>
-        (I,0)
-        <b>C</b>
-        (I,1)
-        <b>D</b>
-        (I,2)
-        <b>E</b>
-        (I,3)
-        <b>F</b>
-        (I,4)
-      </i>
-      <b>G</b>
-      (P,4)
-      <b>H</b>
-      (P,5)
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/dom/wrapSiblings01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/wrapSiblings01-input.html b/Editor/tests/dom/wrapSiblings01-input.html
deleted file mode 100644
index 4dcb25a..0000000
--- a/Editor/tests/dom/wrapSiblings01-input.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = DOM_createElement(document,"P");
-    var nchildren = 8;
-    var positions = new Array();
-    var baseCode = "A".charCodeAt(0);
-    for (var i = 0; i < nchildren; i++) {
-        var b = DOM_createElement(document,"B");
-        DOM_appendChild(b,DOM_createTextNode(document,String.fromCharCode(baseCode+i)));
-        DOM_appendChild(p,b);
-        positions.push(new Position(p,i));
-    }
-    positions.push(new Position(p,nchildren));
-    DOM_appendChild(document.body,p);
-
-    Position_trackWhileExecuting(positions,function() {
-        DOM_wrapSiblings(p.childNodes[2],p.childNodes[5],"I");
-    });
-
-    var lines = new Array();
-    for (var i = 0; i < positions.length; i++)
-        lines.push(positions[i].toString()+"\n");
-
-    for (var i = positions.length-1; i >= 0; i--) {
-        var pos = positions[i];
-        var text = DOM_createTextNode(document,pos.toString());
-        DOM_insertBefore(pos.node,text,pos.node.childNodes[pos.offset]);
-    }
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/dom/wrapSiblings02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/wrapSiblings02-expected.html b/Editor/tests/dom/wrapSiblings02-expected.html
deleted file mode 100644
index 2152c93..0000000
--- a/Editor/tests/dom/wrapSiblings02-expected.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      (P,0)
-      <b>A</b>
-      (P,1)
-      <b>B</b>
-      <i>
-        (I,0)
-        <b>C</b>
-        (I,1)
-      </i>
-      <b>D</b>
-      (P,4)
-      <b>E</b>
-      (P,5)
-      <b>F</b>
-      (P,6)
-      <b>G</b>
-      (P,7)
-      <b>H</b>
-      (P,8)
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/dom/wrapSiblings02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/wrapSiblings02-input.html b/Editor/tests/dom/wrapSiblings02-input.html
deleted file mode 100644
index 0c70e18..0000000
--- a/Editor/tests/dom/wrapSiblings02-input.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = DOM_createElement(document,"P");
-    var nchildren = 8;
-    var positions = new Array();
-    var baseCode = "A".charCodeAt(0);
-    for (var i = 0; i < nchildren; i++) {
-        var b = DOM_createElement(document,"B");
-        DOM_appendChild(b,DOM_createTextNode(document,String.fromCharCode(baseCode+i)));
-        DOM_appendChild(p,b);
-        positions.push(new Position(p,i));
-    }
-    positions.push(new Position(p,nchildren));
-    DOM_appendChild(document.body,p);
-
-    Position_trackWhileExecuting(positions,function() {
-        DOM_wrapSiblings(p.childNodes[2],p.childNodes[2],"I");
-    });
-
-    var lines = new Array();
-    for (var i = 0; i < positions.length; i++)
-        lines.push(positions[i].toString()+"\n");
-
-    for (var i = positions.length-1; i >= 0; i--) {
-        var pos = positions[i];
-        var text = DOM_createTextNode(document,pos.toString());
-        DOM_insertBefore(pos.node,text,pos.node.childNodes[pos.offset]);
-    }
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/dom/wrapSiblings03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/wrapSiblings03-expected.html b/Editor/tests/dom/wrapSiblings03-expected.html
deleted file mode 100644
index ffdb792..0000000
--- a/Editor/tests/dom/wrapSiblings03-expected.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      <i>
-        (I,0)
-        <b>A</b>
-        (I,1)
-        <b>B</b>
-        (I,2)
-        <b>C</b>
-        (I,3)
-        <b>D</b>
-        (I,4)
-        <b>E</b>
-        (I,5)
-      </i>
-      <b>F</b>
-      (P,2)
-      <b>G</b>
-      (P,3)
-      <b>H</b>
-      (P,4)
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/dom/wrapSiblings03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/wrapSiblings03-input.html b/Editor/tests/dom/wrapSiblings03-input.html
deleted file mode 100644
index 14dffba..0000000
--- a/Editor/tests/dom/wrapSiblings03-input.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = DOM_createElement(document,"P");
-    var nchildren = 8;
-    var positions = new Array();
-    var baseCode = "A".charCodeAt(0);
-    for (var i = 0; i < nchildren; i++) {
-        var b = DOM_createElement(document,"B");
-        DOM_appendChild(b,DOM_createTextNode(document,String.fromCharCode(baseCode+i)));
-        DOM_appendChild(p,b);
-        positions.push(new Position(p,i));
-    }
-    positions.push(new Position(p,nchildren));
-    DOM_appendChild(document.body,p);
-
-    Position_trackWhileExecuting(positions,function() {
-        DOM_wrapSiblings(p.childNodes[0],p.childNodes[4],"I");
-    });
-
-    var lines = new Array();
-    for (var i = 0; i < positions.length; i++)
-        lines.push(positions[i].toString()+"\n");
-
-    for (var i = positions.length-1; i >= 0; i--) {
-        var pos = positions[i];
-        var text = DOM_createTextNode(document,pos.toString());
-        DOM_insertBefore(pos.node,text,pos.node.childNodes[pos.offset]);
-    }
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/dom/wrapSiblings04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/wrapSiblings04-expected.html b/Editor/tests/dom/wrapSiblings04-expected.html
deleted file mode 100644
index 2de899e..0000000
--- a/Editor/tests/dom/wrapSiblings04-expected.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      (P,0)
-      <b>A</b>
-      (P,1)
-      <b>B</b>
-      (P,2)
-      <b>C</b>
-      <i>
-        (I,0)
-        <b>D</b>
-        (I,1)
-        <b>E</b>
-        (I,2)
-        <b>F</b>
-        (I,3)
-        <b>G</b>
-        (I,4)
-        <b>H</b>
-        (I,5)
-      </i>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/dom/wrapSiblings04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/dom/wrapSiblings04-input.html b/Editor/tests/dom/wrapSiblings04-input.html
deleted file mode 100644
index 0516d5e..0000000
--- a/Editor/tests/dom/wrapSiblings04-input.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var p = DOM_createElement(document,"P");
-    var nchildren = 8;
-    var positions = new Array();
-    var baseCode = "A".charCodeAt(0);
-    for (var i = 0; i < nchildren; i++) {
-        var b = DOM_createElement(document,"B");
-        DOM_appendChild(b,DOM_createTextNode(document,String.fromCharCode(baseCode+i)));
-        DOM_appendChild(p,b);
-        positions.push(new Position(p,i));
-    }
-    positions.push(new Position(p,nchildren));
-    DOM_appendChild(document.body,p);
-
-    Position_trackWhileExecuting(positions,function() {
-        DOM_wrapSiblings(p.childNodes[3],p.childNodes[7],"I");
-    });
-
-    var lines = new Array();
-    for (var i = 0; i < positions.length; i++)
-        lines.push(positions[i].toString()+"\n");
-
-    for (var i = positions.length-1; i >= 0; i--) {
-        var pos = positions[i];
-        var text = DOM_createTextNode(document,pos.toString());
-        DOM_insertBefore(pos.node,text,pos.node.childNodes[pos.offset]);
-    }
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/FiguresTest.js
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/FiguresTest.js b/Editor/tests/figures/FiguresTest.js
deleted file mode 100644
index 385017a..0000000
--- a/Editor/tests/figures/FiguresTest.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// Licensed to the Apache Software Foundation (ASF) under one
-// or more contributor license agreements.  See the NOTICE file
-// distributed with this work for additional information
-// regarding copyright ownership.  The ASF licenses this file
-// to you under the Apache License, Version 2.0 (the
-// "License"); you may not use this file except in compliance
-// with the License.  You may obtain a copy of the License at
-//
-//   http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing,
-// software distributed under the License is distributed on an
-// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-// KIND, either express or implied.  See the License for the
-// specific language governing permissions and limitations
-// under the License.
-
-function figurePropertiesString(index)
-{
-    var figure = document.getElementsByTagName("FIGURE")[0];
-    var parent = figure.parentNode;
-    var offset = DOM_nodeOffset(figure);
-    Selection_set(parent,offset,parent,offset+1);
-    var properties = Figures_getProperties(Figures_getSelectedFigureId());
-    var strings = new Array();
-    var names = Object.getOwnPropertyNames(properties).sort();
-    for (var i = 0; i < names.length; i++) {
-        var name = names[i];
-        if (properties[name] == null)
-            strings.push(name+" = null");
-        else
-            strings.push(name+" = "+properties[name]);
-    }
-    return strings.join("\n");
-}

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties01-expected.html b/Editor/tests/figures/getProperties01-expected.html
deleted file mode 100644
index 4a2f422..0000000
--- a/Editor/tests/figures/getProperties01-expected.html
+++ /dev/null
@@ -1,2 +0,0 @@
-src = nothing.png
-width = null

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties01-input.html b/Editor/tests/figures/getProperties01-input.html
deleted file mode 100644
index 0c79db8..0000000
--- a/Editor/tests/figures/getProperties01-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="FiguresTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png",null,false,null);
-    PostponedActions_perform();
-
-    return figurePropertiesString(0);
-}
-</script>
-</head>
-<body>
-[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties02-expected.html b/Editor/tests/figures/getProperties02-expected.html
deleted file mode 100644
index 1de41c6..0000000
--- a/Editor/tests/figures/getProperties02-expected.html
+++ /dev/null
@@ -1,2 +0,0 @@
-src = nothing.png
-width = 60%

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties02-input.html b/Editor/tests/figures/getProperties02-input.html
deleted file mode 100644
index dfa32bd..0000000
--- a/Editor/tests/figures/getProperties02-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="FiguresTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png","60%",false,null);
-    PostponedActions_perform();
-
-    return figurePropertiesString(0);
-}
-</script>
-</head>
-<body>
-[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties03-expected.html b/Editor/tests/figures/getProperties03-expected.html
deleted file mode 100644
index dbe1cb9..0000000
--- a/Editor/tests/figures/getProperties03-expected.html
+++ /dev/null
@@ -1,2 +0,0 @@
-src = null
-width = null

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties03-input.html b/Editor/tests/figures/getProperties03-input.html
deleted file mode 100644
index 3f756af..0000000
--- a/Editor/tests/figures/getProperties03-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="FiguresTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-    return figurePropertiesString(0);
-}
-</script>
-</head>
-<body>
-  <figure>
-  </figure>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties04-expected.html b/Editor/tests/figures/getProperties04-expected.html
deleted file mode 100644
index dbe1cb9..0000000
--- a/Editor/tests/figures/getProperties04-expected.html
+++ /dev/null
@@ -1,2 +0,0 @@
-src = null
-width = null

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties04-input.html b/Editor/tests/figures/getProperties04-input.html
deleted file mode 100644
index 2362417..0000000
--- a/Editor/tests/figures/getProperties04-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="FiguresTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-    return figurePropertiesString(0);
-}
-</script>
-</head>
-<body>
-  <figure>
-    Test
-  </figure>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties05-expected.html b/Editor/tests/figures/getProperties05-expected.html
deleted file mode 100644
index 4a2f422..0000000
--- a/Editor/tests/figures/getProperties05-expected.html
+++ /dev/null
@@ -1,2 +0,0 @@
-src = nothing.png
-width = null

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties05-input.html b/Editor/tests/figures/getProperties05-input.html
deleted file mode 100644
index 4b37359..0000000
--- a/Editor/tests/figures/getProperties05-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="FiguresTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-    return figurePropertiesString(0);
-}
-</script>
-</head>
-<body>
-  <figure>
-    <span><img src="nothing.png"></span>
-  </figure>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties06-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties06-expected.html b/Editor/tests/figures/getProperties06-expected.html
deleted file mode 100644
index 1de41c6..0000000
--- a/Editor/tests/figures/getProperties06-expected.html
+++ /dev/null
@@ -1,2 +0,0 @@
-src = nothing.png
-width = 60%

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties06-input.html b/Editor/tests/figures/getProperties06-input.html
deleted file mode 100644
index 127e2d9..0000000
--- a/Editor/tests/figures/getProperties06-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="FiguresTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-    return figurePropertiesString(0);
-}
-</script>
-</head>
-<body>
-  <figure>
-    <span><img src="nothing.png" style="width: 60%"></span>
-  </figure>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties07-expected.html b/Editor/tests/figures/getProperties07-expected.html
deleted file mode 100644
index 1de41c6..0000000
--- a/Editor/tests/figures/getProperties07-expected.html
+++ /dev/null
@@ -1,2 +0,0 @@
-src = nothing.png
-width = 60%

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties07-input.html b/Editor/tests/figures/getProperties07-input.html
deleted file mode 100644
index 0318a72..0000000
--- a/Editor/tests/figures/getProperties07-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="FiguresTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-    return figurePropertiesString(0);
-}
-</script>
-</head>
-<body>
-  <figure>
-    <span><img src="nothing.png" width="60%"></span>
-  </figure>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties08-expected.html b/Editor/tests/figures/getProperties08-expected.html
deleted file mode 100644
index 0dc9cd1..0000000
--- a/Editor/tests/figures/getProperties08-expected.html
+++ /dev/null
@@ -1,2 +0,0 @@
-src = nothing.png
-width = 100%

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/getProperties08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/getProperties08-input.html b/Editor/tests/figures/getProperties08-input.html
deleted file mode 100644
index 35e98fa..0000000
--- a/Editor/tests/figures/getProperties08-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="FiguresTest.js"></script>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-    return figurePropertiesString(0);
-}
-</script>
-</head>
-<body>
-  <figure>
-    <span><img src="nothing.png" style="width: 100%" width="60%"></span>
-  </figure>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy01-expected.html b/Editor/tests/figures/insertFigure-hierarchy01-expected.html
deleted file mode 100644
index e2892dc..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy01-expected.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <figure id="item1">
-      <img src="nothing.png"/>
-      <figcaption>First figure</figcaption>
-    </figure>
-    <figure id="item2">
-      <img src="nothing.png"/>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy01-input.html b/Editor/tests/figures/insertFigure-hierarchy01-input.html
deleted file mode 100644
index cfcfb6a..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy01-input.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png",null,false,null);
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-
-<figure>
-  <img src="nothing.png"/>
-  <figcaption>First figure[]</figcaption>
-</figure>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy02-expected.html b/Editor/tests/figures/insertFigure-hierarchy02-expected.html
deleted file mode 100644
index 8b415de..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy02-expected.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <figure id="item1">
-      <img src="nothing.png"/>
-      <figcaption>First figure</figcaption>
-    </figure>
-    <figure id="item2">
-      <img src="nothing.png"/>
-      <figcaption/>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy02-input.html b/Editor/tests/figures/insertFigure-hierarchy02-input.html
deleted file mode 100644
index 5e3aaf3..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy02-input.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png",null,true,null);
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-
-<figure>
-  <img src="nothing.png"/>
-  <figcaption>First figure[]</figcaption>
-</figure>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy03-expected.html b/Editor/tests/figures/insertFigure-hierarchy03-expected.html
deleted file mode 100644
index 03529c2..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy03-expected.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <figure id="item1">
-      <img src="nothing.png"/>
-      <figcaption>First figure</figcaption>
-    </figure>
-    <figure id="item2">
-      <img src="nothing.png"/>
-      <figcaption>Second Figure</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy03-input.html b/Editor/tests/figures/insertFigure-hierarchy03-input.html
deleted file mode 100644
index 06a0cc4..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy03-input.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png",null,true,"Second Figure");
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-
-<figure>
-  <img src="nothing.png"/>
-  <figcaption>First figure[]</figcaption>
-</figure>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy04-expected.html b/Editor/tests/figures/insertFigure-hierarchy04-expected.html
deleted file mode 100644
index a0274ea..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy04-expected.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <figure id="item1">
-      <img src="nothing.png"/>
-      <figcaption>
-        First
-        figure
-      </figcaption>
-    </figure>
-    <figure id="item2">
-      <img src="nothing.png"/>
-      <figcaption>Second Figure</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy04-input.html b/Editor/tests/figures/insertFigure-hierarchy04-input.html
deleted file mode 100644
index 4c081db..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy04-input.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png",null,true,"Second Figure");
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-
-<figure>
-  <img src="nothing.png"/>
-  <figcaption>First []figure</figcaption>
-</figure>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy05-expected.html b/Editor/tests/figures/insertFigure-hierarchy05-expected.html
deleted file mode 100644
index 03529c2..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy05-expected.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <figure id="item1">
-      <img src="nothing.png"/>
-      <figcaption>First figure</figcaption>
-    </figure>
-    <figure id="item2">
-      <img src="nothing.png"/>
-      <figcaption>Second Figure</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy05-input.html b/Editor/tests/figures/insertFigure-hierarchy05-input.html
deleted file mode 100644
index 5b42703..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy05-input.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png",null,true,"Second Figure");
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-
-<figure>
-  <img src="nothing.png"/>
-  <figcaption>[]First figure</figcaption>
-</figure>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy06-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy06-expected.html b/Editor/tests/figures/insertFigure-hierarchy06-expected.html
deleted file mode 100644
index a1365b8..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy06-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <table id="item1" width="100%">
-      <caption>Table</caption>
-      <tbody>
-        <tr>
-          <td>Cell</td>
-          <td>Cell</td>
-        </tr>
-      </tbody>
-    </table>
-    <figure id="item2">
-      <img src="nothing.png"/>
-      <figcaption>Figure</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy06-input.html b/Editor/tests/figures/insertFigure-hierarchy06-input.html
deleted file mode 100644
index 9c70bda..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy06-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png",null,true,"Figure");
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-
-<table width="100%">
-  <caption>Table[]</caption>
-  <tr>
-    <td>Cell</td>
-    <td>Cell</td>
-  </tr>
-</table>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy07-expected.html b/Editor/tests/figures/insertFigure-hierarchy07-expected.html
deleted file mode 100644
index 4668fe9..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy07-expected.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <table id="item1" width="100%">
-      <caption>
-        Ta
-        ble
-      </caption>
-      <tbody>
-        <tr>
-          <td>Cell</td>
-          <td>Cell</td>
-        </tr>
-      </tbody>
-    </table>
-    <figure id="item2">
-      <img src="nothing.png"/>
-      <figcaption>Figure</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy07-input.html b/Editor/tests/figures/insertFigure-hierarchy07-input.html
deleted file mode 100644
index 776ed7a..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy07-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png",null,true,"Figure");
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-
-<table width="100%">
-  <caption>Ta[]ble</caption>
-  <tr>
-    <td>Cell</td>
-    <td>Cell</td>
-  </tr>
-</table>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy08-expected.html b/Editor/tests/figures/insertFigure-hierarchy08-expected.html
deleted file mode 100644
index a1365b8..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy08-expected.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <table id="item1" width="100%">
-      <caption>Table</caption>
-      <tbody>
-        <tr>
-          <td>Cell</td>
-          <td>Cell</td>
-        </tr>
-      </tbody>
-    </table>
-    <figure id="item2">
-      <img src="nothing.png"/>
-      <figcaption>Figure</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure-hierarchy08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure-hierarchy08-input.html b/Editor/tests/figures/insertFigure-hierarchy08-input.html
deleted file mode 100644
index 71e225d..0000000
--- a/Editor/tests/figures/insertFigure-hierarchy08-input.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png",null,true,"Figure");
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-
-<table width="100%">
-  <caption>[]Table</caption>
-  <tr>
-    <td>Cell</td>
-    <td>Cell</td>
-  </tr>
-</table>
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure01-expected.html b/Editor/tests/figures/insertFigure01-expected.html
deleted file mode 100644
index 637519d..0000000
--- a/Editor/tests/figures/insertFigure01-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <figure id="item1">
-      <img src="nothing.png"/>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure01-input.html b/Editor/tests/figures/insertFigure01-input.html
deleted file mode 100644
index a05cb6e..0000000
--- a/Editor/tests/figures/insertFigure01-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png",null,false,null);
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure02-expected.html b/Editor/tests/figures/insertFigure02-expected.html
deleted file mode 100644
index a26e458..0000000
--- a/Editor/tests/figures/insertFigure02-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <figure id="item1">
-      <img src="nothing.png" style="width: 60%"/>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure02-input.html b/Editor/tests/figures/insertFigure02-input.html
deleted file mode 100644
index b67d859..0000000
--- a/Editor/tests/figures/insertFigure02-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png","60%",false,null);
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure03-expected.html b/Editor/tests/figures/insertFigure03-expected.html
deleted file mode 100644
index 2e6fa25..0000000
--- a/Editor/tests/figures/insertFigure03-expected.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <figure id="item1">
-      <img src="nothing.png"/>
-      <figcaption/>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure03-input.html b/Editor/tests/figures/insertFigure03-input.html
deleted file mode 100644
index a458cc4..0000000
--- a/Editor/tests/figures/insertFigure03-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png",null,true,null);
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure04-expected.html b/Editor/tests/figures/insertFigure04-expected.html
deleted file mode 100644
index 9ef1998..0000000
--- a/Editor/tests/figures/insertFigure04-expected.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <figure id="item1">
-      <img src="nothing.png"/>
-      <figcaption class="Unnumbered">Sample caption</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure04-input.html b/Editor/tests/figures/insertFigure04-input.html
deleted file mode 100644
index 6662220..0000000
--- a/Editor/tests/figures/insertFigure04-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png",null,false,"Sample caption");
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure05-expected.html b/Editor/tests/figures/insertFigure05-expected.html
deleted file mode 100644
index f7ff789..0000000
--- a/Editor/tests/figures/insertFigure05-expected.html
+++ /dev/null
@@ -1,11 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <figure id="item1">
-      <img src="nothing.png"/>
-      <figcaption>Sample caption</figcaption>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/insertFigure05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/insertFigure05-input.html b/Editor/tests/figures/insertFigure05-input.html
deleted file mode 100644
index d54b63a..0000000
--- a/Editor/tests/figures/insertFigure05-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png",null,true,"Sample caption");
-    PostponedActions_perform();
-}
-</script>
-</head>
-<body>
-[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/nothing.png
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/nothing.png b/Editor/tests/figures/nothing.png
deleted file mode 100644
index 43b22cf..0000000
Binary files a/Editor/tests/figures/nothing.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/setProperties01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/setProperties01-expected.html b/Editor/tests/figures/setProperties01-expected.html
deleted file mode 100644
index 846b467..0000000
--- a/Editor/tests/figures/setProperties01-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <figure id="item1">
-      <img src="nothing.png" style="width: 50%"/>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/setProperties01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/setProperties01-input.html b/Editor/tests/figures/setProperties01-input.html
deleted file mode 100644
index a29375c..0000000
--- a/Editor/tests/figures/setProperties01-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png","20%",false,null);
-    PostponedActions_perform();
-
-    Figures_setProperties("item1","50%","nothing.png");
-}
-</script>
-</head>
-<body>
-[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/setProperties02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/setProperties02-expected.html b/Editor/tests/figures/setProperties02-expected.html
deleted file mode 100644
index 637519d..0000000
--- a/Editor/tests/figures/setProperties02-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <figure id="item1">
-      <img src="nothing.png"/>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/setProperties02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/setProperties02-input.html b/Editor/tests/figures/setProperties02-input.html
deleted file mode 100644
index 389aabc..0000000
--- a/Editor/tests/figures/setProperties02-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png","20%",false,null);
-    PostponedActions_perform();
-
-    Figures_setProperties("item1",null,"nothing.png");
-}
-</script>
-</head>
-<body>
-[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/setProperties03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/setProperties03-expected.html b/Editor/tests/figures/setProperties03-expected.html
deleted file mode 100644
index b781301..0000000
--- a/Editor/tests/figures/setProperties03-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <figure id="item1">
-      <img src="other.png" style="width: 20%"/>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/setProperties03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/setProperties03-input.html b/Editor/tests/figures/setProperties03-input.html
deleted file mode 100644
index a557ed3..0000000
--- a/Editor/tests/figures/setProperties03-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png","20%",false,null);
-    PostponedActions_perform();
-
-    Figures_setProperties("item1","20%","other.png");
-}
-</script>
-</head>
-<body>
-[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/setProperties04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/setProperties04-expected.html b/Editor/tests/figures/setProperties04-expected.html
deleted file mode 100644
index 1ce2a75..0000000
--- a/Editor/tests/figures/setProperties04-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head>
-    <link href="../generic.css" rel="stylesheet"/>
-  </head>
-  <body>
-    <figure id="item1">
-      <img style="width: 20%"/>
-    </figure>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/figures/setProperties04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/figures/setProperties04-input.html b/Editor/tests/figures/setProperties04-input.html
deleted file mode 100644
index 396f8ef..0000000
--- a/Editor/tests/figures/setProperties04-input.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link href="../generic.css" rel="stylesheet"/>
-<script>
-function performTest()
-{
-    Outline_init();
-    PostponedActions_perform();
-
-    Figures_insertFigure("nothing.png","20%",false,null);
-    PostponedActions_perform();
-
-    Figures_setProperties("item1","20%",null);
-}
-</script>
-</head>
-<body>
-[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/classNames01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/classNames01-expected.html b/Editor/tests/formatting/classNames01-expected.html
deleted file mode 100644
index a988afe..0000000
--- a/Editor/tests/formatting/classNames01-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p class="test">Sample text</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/classNames01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/classNames01-input.html b/Editor/tests/formatting/classNames01-input.html
deleted file mode 100644
index ea893dd..0000000
--- a/Editor/tests/formatting/classNames01-input.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges("p.test",null);
-}
-</script>
-</head>
-<body>
-<h1>[Sample text]</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/classNames02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/classNames02-expected.html b/Editor/tests/formatting/classNames02-expected.html
deleted file mode 100644
index a34d57e..0000000
--- a/Editor/tests/formatting/classNames02-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <h1>Sample text</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/classNames02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/classNames02-input.html b/Editor/tests/formatting/classNames02-input.html
deleted file mode 100644
index 81e24b1..0000000
--- a/Editor/tests/formatting/classNames02-input.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges("table.test",null);
-}
-</script>
-</head>
-<body>
-<h1>[Sample text]</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/classNames03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/classNames03-expected.html b/Editor/tests/formatting/classNames03-expected.html
deleted file mode 100644
index a34d57e..0000000
--- a/Editor/tests/formatting/classNames03-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <h1>Sample text</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/classNames03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/classNames03-input.html b/Editor/tests/formatting/classNames03-input.html
deleted file mode 100644
index c4ddc4d..0000000
--- a/Editor/tests/formatting/classNames03-input.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges("article.test",null);
-}
-</script>
-</head>
-<body>
-<h1>[Sample text]</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/classNames04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/classNames04-expected.html b/Editor/tests/formatting/classNames04-expected.html
deleted file mode 100644
index a988afe..0000000
--- a/Editor/tests/formatting/classNames04-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p class="test">Sample text</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/classNames04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/classNames04-input.html b/Editor/tests/formatting/classNames04-input.html
deleted file mode 100644
index bce6b4c..0000000
--- a/Editor/tests/formatting/classNames04-input.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(".test",null);
-}
-</script>
-</head>
-<body>
-<h1>[Sample text]</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/classNames05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/classNames05-expected.html b/Editor/tests/formatting/classNames05-expected.html
deleted file mode 100644
index 756d54b..0000000
--- a/Editor/tests/formatting/classNames05-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <h2 class="test">Sample text</h2>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/classNames05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/classNames05-input.html b/Editor/tests/formatting/classNames05-input.html
deleted file mode 100644
index e524381..0000000
--- a/Editor/tests/formatting/classNames05-input.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges("h2.test",null);
-}
-</script>
-</head>
-<body>
-<h1>[Sample text]</h1>
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/classNames06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/classNames06-input.html b/Editor/tests/formatting/classNames06-input.html
deleted file mode 100644
index 348a9ab..0000000
--- a/Editor/tests/formatting/classNames06-input.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges("p",null);
-}
-</script>
-</head>
-<body>
-<h1>[Sample text]</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/classNames07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/classNames07-expected.html b/Editor/tests/formatting/classNames07-expected.html
deleted file mode 100644
index a34d57e..0000000
--- a/Editor/tests/formatting/classNames07-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <h1>Sample text</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/classNames07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/classNames07-input.html b/Editor/tests/formatting/classNames07-input.html
deleted file mode 100644
index 35d7627..0000000
--- a/Editor/tests/formatting/classNames07-input.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges("table",null);
-}
-</script>
-</head>
-<body>
-<h1>[Sample text]</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/classNames08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/classNames08-expected.html b/Editor/tests/formatting/classNames08-expected.html
deleted file mode 100644
index a34d57e..0000000
--- a/Editor/tests/formatting/classNames08-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <h1>Sample text</h1>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/classNames08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/classNames08-input.html b/Editor/tests/formatting/classNames08-input.html
deleted file mode 100644
index e14d757..0000000
--- a/Editor/tests/formatting/classNames08-input.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges("article",null);
-}
-</script>
-</head>
-<body>
-<h1>[Sample text]</h1>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/empty01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/empty01-expected.html b/Editor/tests/formatting/empty01-expected.html
deleted file mode 100644
index e459bf4..0000000
--- a/Editor/tests/formatting/empty01-expected.html
+++ /dev/null
@@ -1,7 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    a
-    <i>[]</i>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/empty01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/empty01-input.html b/Editor/tests/formatting/empty01-input.html
deleted file mode 100644
index 93170ba..0000000
--- a/Editor/tests/formatting/empty01-input.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(null,{"font-style": "italic"});
-    showSelection();
-}
-</script>
-</head>
-<body>
-a[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/empty02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/empty02-expected.html b/Editor/tests/formatting/empty02-expected.html
deleted file mode 100644
index 4383c73..0000000
--- a/Editor/tests/formatting/empty02-expected.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      a
-      <i>b[]</i>
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/empty02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/empty02-input.html b/Editor/tests/formatting/empty02-input.html
deleted file mode 100644
index 7411c58..0000000
--- a/Editor/tests/formatting/empty02-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(null,{"font-style": "italic"});
-    Cursor_insertCharacter("b");
-    showSelection();
-}
-</script>
-</head>
-<body>
-a[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/empty03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/empty03-expected.html b/Editor/tests/formatting/empty03-expected.html
deleted file mode 100644
index dff6e37..0000000
--- a/Editor/tests/formatting/empty03-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      a
-      <i>b</i>
-      []
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/empty03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/empty03-input.html b/Editor/tests/formatting/empty03-input.html
deleted file mode 100644
index 82f82ef..0000000
--- a/Editor/tests/formatting/empty03-input.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(null,{"font-style": "italic"});
-    Cursor_insertCharacter("b");
-    Formatting_applyFormattingChanges(null,{"font-style": null});
-    showSelection();
-}
-</script>
-</head>
-<body>
-a[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/empty04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/empty04-expected.html b/Editor/tests/formatting/empty04-expected.html
deleted file mode 100644
index e80367f..0000000
--- a/Editor/tests/formatting/empty04-expected.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p>
-      a
-      <i>b</i>
-      c[]
-    </p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/empty04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/empty04-input.html b/Editor/tests/formatting/empty04-input.html
deleted file mode 100644
index c374430..0000000
--- a/Editor/tests/formatting/empty04-input.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(null,{"font-style": "italic"});
-    Cursor_insertCharacter("b");
-    Formatting_applyFormattingChanges(null,{"font-style": null});
-    Cursor_insertCharacter("c");
-    showSelection();
-}
-</script>
-</head>
-<body>
-a[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/empty05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/empty05-expected.html b/Editor/tests/formatting/empty05-expected.html
deleted file mode 100644
index ee0a065..0000000
--- a/Editor/tests/formatting/empty05-expected.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p><b>a[]</b></p>
-  </body>
-</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/empty05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/empty05-input.html b/Editor/tests/formatting/empty05-input.html
deleted file mode 100644
index e91c136..0000000
--- a/Editor/tests/formatting/empty05-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(null,{"font-weight": "bold"});
-    Cursor_insertCharacter("a");
-    showSelection();
-}
-</script>
-</head>
-<body>
-[]
-</body>
-</html>

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

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/empty06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/empty06-input.html b/Editor/tests/formatting/empty06-input.html
deleted file mode 100644
index c6693fe..0000000
--- a/Editor/tests/formatting/empty06-input.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Formatting_applyFormattingChanges(null,{"font-weight": "bold"});
-    Cursor_insertCharacter("a");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>[]</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/empty07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/empty07-expected.html b/Editor/tests/formatting/empty07-expected.html
deleted file mode 100644
index 259fd6e..0000000
--- a/Editor/tests/formatting/empty07-expected.html
+++ /dev/null
@@ -1,8 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <ul>
-      <li><p><b>a[]</b></p></li>
-    </ul>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/empty07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/empty07-input.html b/Editor/tests/formatting/empty07-input.html
deleted file mode 100644
index fd58ebf..0000000
--- a/Editor/tests/formatting/empty07-input.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Lists_setUnorderedList();
-    Formatting_applyFormattingChanges(null,{"font-weight": "bold"});
-    Cursor_insertCharacter("a");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>[]</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/empty08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/empty08-expected.html b/Editor/tests/formatting/empty08-expected.html
deleted file mode 100644
index 7be8c46..0000000
--- a/Editor/tests/formatting/empty08-expected.html
+++ /dev/null
@@ -1,7 +0,0 @@
-<html>
-  <head></head>
-  <body>
-    <p style="padding-left: 80px">Test</p>
-    <p>A[]</p>
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/empty08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/empty08-input.html b/Editor/tests/formatting/empty08-input.html
deleted file mode 100644
index 88b04e4..0000000
--- a/Editor/tests/formatting/empty08-input.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    Cursor_insertCharacter("Test");
-    Formatting_applyFormattingChanges(null,{"padding-left": "80px"});
-    Cursor_enterPressed();
-    Formatting_applyFormattingChanges(null,{"padding-left": null});
-    Cursor_insertCharacter("A");
-    showSelection();
-}
-</script>
-</head>
-<body>
-<p>[]</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class01-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class01-expected.html b/Editor/tests/formatting/getFormatting-class01-expected.html
deleted file mode 100644
index cf47ff1..0000000
--- a/Editor/tests/formatting/getFormatting-class01-expected.html
+++ /dev/null
@@ -1 +0,0 @@
--uxwrite-paragraph-style = p

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class01-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class01-input.html b/Editor/tests/formatting/getFormatting-class01-input.html
deleted file mode 100644
index 222cbfa..0000000
--- a/Editor/tests/formatting/getFormatting-class01-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var properties = Formatting_getFormatting();
-    delete properties["-uxwrite-shift"];
-    Selection_clearSelection();
-
-    var lines = new Array();
-    var names = Object.getOwnPropertyNames(properties).sort();
-    for (var i = 0; i < names.length; i++)
-        lines.push(names[i]+" = "+properties[names[i]]+"\n");
-    return lines.join("");
-}
-</script>
-</head>
-<body>
-<p>Text[]</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class02-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class02-expected.html b/Editor/tests/formatting/getFormatting-class02-expected.html
deleted file mode 100644
index 820013e..0000000
--- a/Editor/tests/formatting/getFormatting-class02-expected.html
+++ /dev/null
@@ -1 +0,0 @@
--uxwrite-paragraph-style = p.Something

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class02-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class02-input.html b/Editor/tests/formatting/getFormatting-class02-input.html
deleted file mode 100644
index d412a1f..0000000
--- a/Editor/tests/formatting/getFormatting-class02-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var properties = Formatting_getFormatting();
-    delete properties["-uxwrite-shift"];
-    Selection_clearSelection();
-
-    var lines = new Array();
-    var names = Object.getOwnPropertyNames(properties).sort();
-    for (var i = 0; i < names.length; i++)
-        lines.push(names[i]+" = "+properties[names[i]]+"\n");
-    return lines.join("");
-}
-</script>
-</head>
-<body>
-<p class="Something">Text[]</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class03-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class03-expected.html b/Editor/tests/formatting/getFormatting-class03-expected.html
deleted file mode 100644
index d53bd12..0000000
--- a/Editor/tests/formatting/getFormatting-class03-expected.html
+++ /dev/null
@@ -1 +0,0 @@
--uxwrite-paragraph-style = h1

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class03-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class03-input.html b/Editor/tests/formatting/getFormatting-class03-input.html
deleted file mode 100644
index 6142f40..0000000
--- a/Editor/tests/formatting/getFormatting-class03-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var properties = Formatting_getFormatting();
-    delete properties["-uxwrite-shift"];
-    Selection_clearSelection();
-
-    var lines = new Array();
-    var names = Object.getOwnPropertyNames(properties).sort();
-    for (var i = 0; i < names.length; i++)
-        lines.push(names[i]+" = "+properties[names[i]]+"\n");
-    return lines.join("");
-}
-</script>
-</head>
-<body>
-<h1>Text[]</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class04-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class04-expected.html b/Editor/tests/formatting/getFormatting-class04-expected.html
deleted file mode 100644
index 3031a20..0000000
--- a/Editor/tests/formatting/getFormatting-class04-expected.html
+++ /dev/null
@@ -1 +0,0 @@
--uxwrite-paragraph-style = h1.Something

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class04-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class04-input.html b/Editor/tests/formatting/getFormatting-class04-input.html
deleted file mode 100644
index b169656..0000000
--- a/Editor/tests/formatting/getFormatting-class04-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var properties = Formatting_getFormatting();
-    delete properties["-uxwrite-shift"];
-    Selection_clearSelection();
-
-    var lines = new Array();
-    var names = Object.getOwnPropertyNames(properties).sort();
-    for (var i = 0; i < names.length; i++)
-        lines.push(names[i]+" = "+properties[names[i]]+"\n");
-    return lines.join("");
-}
-</script>
-</head>
-<body>
-<h1 class="Something">Text[]</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class05-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class05-expected.html b/Editor/tests/formatting/getFormatting-class05-expected.html
deleted file mode 100644
index a347520..0000000
--- a/Editor/tests/formatting/getFormatting-class05-expected.html
+++ /dev/null
@@ -1 +0,0 @@
--uxwrite-paragraph-style = pre

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class05-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class05-input.html b/Editor/tests/formatting/getFormatting-class05-input.html
deleted file mode 100644
index 5854952..0000000
--- a/Editor/tests/formatting/getFormatting-class05-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var properties = Formatting_getFormatting();
-    delete properties["-uxwrite-shift"];
-    Selection_clearSelection();
-
-    var lines = new Array();
-    var names = Object.getOwnPropertyNames(properties).sort();
-    for (var i = 0; i < names.length; i++)
-        lines.push(names[i]+" = "+properties[names[i]]+"\n");
-    return lines.join("");
-}
-</script>
-</head>
-<body>
-<pre>Text[]</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class06-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class06-expected.html b/Editor/tests/formatting/getFormatting-class06-expected.html
deleted file mode 100644
index 4b2540c..0000000
--- a/Editor/tests/formatting/getFormatting-class06-expected.html
+++ /dev/null
@@ -1 +0,0 @@
--uxwrite-paragraph-style = pre.Something

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class06-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class06-input.html b/Editor/tests/formatting/getFormatting-class06-input.html
deleted file mode 100644
index f0c11a1..0000000
--- a/Editor/tests/formatting/getFormatting-class06-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var properties = Formatting_getFormatting();
-    delete properties["-uxwrite-shift"];
-    Selection_clearSelection();
-
-    var lines = new Array();
-    var names = Object.getOwnPropertyNames(properties).sort();
-    for (var i = 0; i < names.length; i++)
-        lines.push(names[i]+" = "+properties[names[i]]+"\n");
-    return lines.join("");
-}
-</script>
-</head>
-<body>
-<pre class="Something">Text[]</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class07-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class07-expected.html b/Editor/tests/formatting/getFormatting-class07-expected.html
deleted file mode 100644
index da17a7b..0000000
--- a/Editor/tests/formatting/getFormatting-class07-expected.html
+++ /dev/null
@@ -1 +0,0 @@
--uxwrite-paragraph-style = blockquote

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class07-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class07-input.html b/Editor/tests/formatting/getFormatting-class07-input.html
deleted file mode 100644
index afb08be..0000000
--- a/Editor/tests/formatting/getFormatting-class07-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var properties = Formatting_getFormatting();
-    delete properties["-uxwrite-shift"];
-    Selection_clearSelection();
-
-    var lines = new Array();
-    var names = Object.getOwnPropertyNames(properties).sort();
-    for (var i = 0; i < names.length; i++)
-        lines.push(names[i]+" = "+properties[names[i]]+"\n");
-    return lines.join("");
-}
-</script>
-</head>
-<body>
-<blockquote>Text[]</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class08-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class08-expected.html b/Editor/tests/formatting/getFormatting-class08-expected.html
deleted file mode 100644
index 5146c6d..0000000
--- a/Editor/tests/formatting/getFormatting-class08-expected.html
+++ /dev/null
@@ -1 +0,0 @@
--uxwrite-paragraph-style = blockquote.Something

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-class08-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-class08-input.html b/Editor/tests/formatting/getFormatting-class08-input.html
deleted file mode 100644
index d252896..0000000
--- a/Editor/tests/formatting/getFormatting-class08-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var properties = Formatting_getFormatting();
-    delete properties["-uxwrite-shift"];
-    Selection_clearSelection();
-
-    var lines = new Array();
-    var names = Object.getOwnPropertyNames(properties).sort();
-    for (var i = 0; i < names.length; i++)
-        lines.push(names[i]+" = "+properties[names[i]]+"\n");
-    return lines.join("");
-}
-</script>
-</head>
-<body>
-<blockquote class="Something">Text[]</p>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-empty01a-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-empty01a-expected.html b/Editor/tests/formatting/getFormatting-empty01a-expected.html
deleted file mode 100644
index 4bca9a2..0000000
--- a/Editor/tests/formatting/getFormatting-empty01a-expected.html
+++ /dev/null
@@ -1 +0,0 @@
--uxwrite-paragraph-style = __none

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-empty01a-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-empty01a-input.html b/Editor/tests/formatting/getFormatting-empty01a-input.html
deleted file mode 100644
index e9e88ab..0000000
--- a/Editor/tests/formatting/getFormatting-empty01a-input.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var properties = Formatting_getFormatting();
-    delete properties["-uxwrite-shift"];
-    Selection_clearSelection();
-
-    var lines = new Array();
-    var names = Object.getOwnPropertyNames(properties).sort();
-    for (var i = 0; i < names.length; i++)
-        lines.push(names[i]+" = "+properties[names[i]]+"\n");
-    return lines.join("");
-}
-</script>
-</head>
-<body>
-[]
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-empty01b-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-empty01b-expected.html b/Editor/tests/formatting/getFormatting-empty01b-expected.html
deleted file mode 100644
index 4bca9a2..0000000
--- a/Editor/tests/formatting/getFormatting-empty01b-expected.html
+++ /dev/null
@@ -1 +0,0 @@
--uxwrite-paragraph-style = __none

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-empty01b-input.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-empty01b-input.html b/Editor/tests/formatting/getFormatting-empty01b-input.html
deleted file mode 100644
index e97854e..0000000
--- a/Editor/tests/formatting/getFormatting-empty01b-input.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-function performTest()
-{
-    var node = document.body;
-    DOM_deleteAllChildren(node);
-    Selection_set(node,0,node,0);
-    var properties = Formatting_getFormatting();
-    delete properties["-uxwrite-shift"];
-    Selection_clearSelection();
-
-    var lines = new Array();
-    var names = Object.getOwnPropertyNames(properties).sort();
-    for (var i = 0; i < names.length; i++)
-        lines.push(names[i]+" = "+properties[names[i]]+"\n");
-    return lines.join("");
-}
-</script>
-</head>
-<body>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/f4102a1c/Editor/tests/formatting/getFormatting-empty02a-expected.html
----------------------------------------------------------------------
diff --git a/Editor/tests/formatting/getFormatting-empty02a-expected.html b/Editor/tests/formatting/getFormatting-empty02a-expected.html
deleted file mode 100644
index cf47ff1..0000000
--- a/Editor/tests/formatting/getFormatting-empty02a-expected.html
+++ /dev/null
@@ -1 +0,0 @@
--uxwrite-paragraph-style = p