From 1c5685d68f1b73270fb814fe04cbb490eb90ba5f Mon Sep 17 00:00:00 2001 From: mensonge Date: Fri, 14 Nov 2008 15:39:19 +0000 Subject: Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library) git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f --- includes/js/dojox/gfx/tests/decompose.js | 114 ----- includes/js/dojox/gfx/tests/matrix.js | 228 ---------- includes/js/dojox/gfx/tests/module.js | 13 - includes/js/dojox/gfx/tests/runTests.html | 9 - includes/js/dojox/gfx/tests/test_arc.html | 71 --- includes/js/dojox/gfx/tests/test_bezier.html | 85 ---- includes/js/dojox/gfx/tests/test_decompose.html | 54 --- includes/js/dojox/gfx/tests/test_fill.html | 47 -- includes/js/dojox/gfx/tests/test_fx.html | 113 ----- includes/js/dojox/gfx/tests/test_gfx.html | 489 --------------------- includes/js/dojox/gfx/tests/test_gradient.html | 70 --- includes/js/dojox/gfx/tests/test_group.html | 73 --- includes/js/dojox/gfx/tests/test_image1.html | 74 ---- includes/js/dojox/gfx/tests/test_image2.html | 50 --- .../js/dojox/gfx/tests/test_linearGradient.html | 80 ---- includes/js/dojox/gfx/tests/test_linestyle.html | 45 -- includes/js/dojox/gfx/tests/test_pattern.html | 44 -- includes/js/dojox/gfx/tests/test_poly.html | 53 --- includes/js/dojox/gfx/tests/test_resize.html | 61 --- includes/js/dojox/gfx/tests/test_setPath.html | 76 ---- includes/js/dojox/gfx/tests/test_tbbox.html | 117 ----- includes/js/dojox/gfx/tests/test_text.html | 88 ---- includes/js/dojox/gfx/tests/test_textpath.html | 76 ---- includes/js/dojox/gfx/tests/test_transform.html | 98 ----- 24 files changed, 2228 deletions(-) delete mode 100644 includes/js/dojox/gfx/tests/decompose.js delete mode 100644 includes/js/dojox/gfx/tests/matrix.js delete mode 100644 includes/js/dojox/gfx/tests/module.js delete mode 100644 includes/js/dojox/gfx/tests/runTests.html delete mode 100644 includes/js/dojox/gfx/tests/test_arc.html delete mode 100644 includes/js/dojox/gfx/tests/test_bezier.html delete mode 100644 includes/js/dojox/gfx/tests/test_decompose.html delete mode 100644 includes/js/dojox/gfx/tests/test_fill.html delete mode 100644 includes/js/dojox/gfx/tests/test_fx.html delete mode 100644 includes/js/dojox/gfx/tests/test_gfx.html delete mode 100644 includes/js/dojox/gfx/tests/test_gradient.html delete mode 100644 includes/js/dojox/gfx/tests/test_group.html delete mode 100644 includes/js/dojox/gfx/tests/test_image1.html delete mode 100644 includes/js/dojox/gfx/tests/test_image2.html delete mode 100644 includes/js/dojox/gfx/tests/test_linearGradient.html delete mode 100644 includes/js/dojox/gfx/tests/test_linestyle.html delete mode 100644 includes/js/dojox/gfx/tests/test_pattern.html delete mode 100644 includes/js/dojox/gfx/tests/test_poly.html delete mode 100644 includes/js/dojox/gfx/tests/test_resize.html delete mode 100644 includes/js/dojox/gfx/tests/test_setPath.html delete mode 100644 includes/js/dojox/gfx/tests/test_tbbox.html delete mode 100644 includes/js/dojox/gfx/tests/test_text.html delete mode 100644 includes/js/dojox/gfx/tests/test_textpath.html delete mode 100644 includes/js/dojox/gfx/tests/test_transform.html (limited to 'includes/js/dojox/gfx/tests') diff --git a/includes/js/dojox/gfx/tests/decompose.js b/includes/js/dojox/gfx/tests/decompose.js deleted file mode 100644 index b488bdd..0000000 --- a/includes/js/dojox/gfx/tests/decompose.js +++ /dev/null @@ -1,114 +0,0 @@ -if(!dojo._hasResource["dojox.gfx.tests.decompose"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.gfx.tests.decompose"] = true; -dojo.provide("dojox.gfx.tests.decompose"); -dojo.require("dojox.gfx.decompose"); - -(function(){ - var m = dojox.gfx.matrix; - var eq = function(t, a, b){ t.t(2 * Math.abs(a - b) / ((a < 1 && b < 1) ? 1 : a + b) < 1e-6); }; - var eqM = function(t, a, b){ - eq(t, a.xx, b.xx); - eq(t, a.yy, b.yy); - eq(t, a.xy, b.xy); - eq(t, a.yx, b.yx); - eq(t, a.dx, b.dx); - eq(t, a.dy, b.dy); - }; - var compose = function(r){ - return m.normalize([ - m.translate(r.dx, r.dy), - m.rotate(r.angle2), - m.scale(r.sx, r.sy), - m.rotate(r.angle1) - ]); - }; - var reconstruct = function(a){ - return compose(dojox.gfx.decompose(a)); - }; - var compare = function(t, a){ - var A = m.normalize(a); - eqM(t, A, reconstruct(A)); - }; - tests.register("dojox.gfx.tests.decompose", [ - function IdentityTest(t){ - compare(t, m.identity); - }, - function FlipXTest(t){ - compare(t, m.flipX); - }, - function FlipYTest(t){ - compare(t, m.flipY); - }, - function FlipXYTest(t){ - compare(t, m.flipXY); - }, - function TranslationTest(t){ - compare(t, m.translate(45, -15)); - }, - function RotationTest(t){ - compare(t, m.rotateg(35)); - }, - function SkewXTest(t){ - compare(t, m.skewXg(35)); - }, - function SkewYTest(t){ - compare(t, m.skewYg(35)); - }, - function ReflectTest(t){ - compare(t, m.reflect(13, 27)); - }, - function ProjectTest(t){ - compare(t, m.project(13, 27)); - }, - function ScaleTest1(t){ - compare(t, m.scale(3)); - }, - function ScaleTest2(t){ - compare(t, m.scale(3, -1)); - }, - function ScaleTest3(t){ - compare(t, m.scale(-3, 1)); - }, - function ScaleTest4(t){ - compare(t, m.scale(-3, -1)); - }, - function ScaleRotateTest1(t){ - compare(t, [m.scale(3), m.rotateAt(35, 13, 27)]); - }, - function ScaleRotateTest2(t){ - compare(t, [m.scale(3, -1), m.rotateAt(35, 13, 27)]); - }, - function ScaleRotateTest3(t){ - compare(t, [m.scale(-3, 1), m.rotateAt(35, 13, 27)]); - }, - function ScaleRotateTest4(t){ - compare(t, [m.scale(-3, -1), m.rotateAt(35, 13, 27)]); - }, - function RotateScaleTest1(t){ - compare(t, [m.rotateAt(35, 13, 27), m.scale(3)]); - }, - function RotateScaleTest2(t){ - compare(t, [m.rotateAt(35, 13, 27), m.scale(3, -1)]); - }, - function RotateScaleTest3(t){ - compare(t, [m.rotateAt(35, 13, 27), m.scale(-3, 1)]); - }, - function RotateScaleTest4(t){ - compare(t, [m.rotateAt(35, 13, 27), m.scale(-3, -1)]); - }, - function RotateScaleRotateTest1(t){ - compare(t, [m.rotateAt(35, 13, 27), m.scale(3), m.rotateAt(-15, 163, -287)]); - }, - function RotateScaleRotateTest2(t){ - compare(t, [m.rotateAt(35, 13, 27), m.scale(3, -1), m.rotateAt(-15, 163, -287)]); - }, - function RotateScaleRotateTest3(t){ - compare(t, [m.rotateAt(35, 13, 27), m.scale(-3, 1), m.rotateAt(-15, 163, -287)]); - }, - function RotateScaleRotateTest4(t){ - compare(t, [m.rotateAt(35, 13, 27), m.scale(-3, -1), m.rotateAt(-15, 163, -287)]); - } - ]); -})(); - -} diff --git a/includes/js/dojox/gfx/tests/matrix.js b/includes/js/dojox/gfx/tests/matrix.js deleted file mode 100644 index 282ec36..0000000 --- a/includes/js/dojox/gfx/tests/matrix.js +++ /dev/null @@ -1,228 +0,0 @@ -if(!dojo._hasResource["dojox.gfx.tests.matrix"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.gfx.tests.matrix"] = true; -dojo.provide("dojox.gfx.tests.matrix"); -dojo.require("dojox.gfx.matrix"); - -(function(){ - var m = dojox.gfx.matrix; - var eq = function(t, a, b){ t.t(2 * Math.abs(a - b) / ((a < 1 && b < 1) ? 1 : a + b) < 1e-6); }; - tests.register("dojox.gfx.tests.matrix", [ - function IdentityTest(t){ - var a = new m.Matrix2D(); - eq(t, a.xx, 1); - eq(t, a.yy, 1); - eq(t, a.xy, 0); - eq(t, a.yx, 0); - eq(t, a.dx, 0); - eq(t, a.dy, 0); - }, - function Rot30gTest(t){ - var a = m.rotateg(30); - eq(t, a.xx, a.yy); - eq(t, a.xy, -a.yx); - eq(t, a.dx, 0); - eq(t, a.dy, 0); - eq(t, a.yx, 0.5); - t.t(a.xy < 0); - t.t(a.yx > 0); - }, - function Rot45gTest(t){ - var a = m.rotateg(45); - eq(t, a.xx, a.yy); - eq(t, a.xy, -a.yx); - eq(t, a.dx, 0); - eq(t, a.dy, 0); - eq(t, a.xx, a.yx); - eq(t, a.yy, -a.xy); - }, - function Rot90gTest(t){ - var a = m.rotateg(90); - eq(t, a.xx, a.yy); - eq(t, a.xy, -a.yx); - eq(t, a.dx, 0); - eq(t, a.dy, 0); - eq(t, a.xx, 0); - eq(t, a.yx, 1); - }, - function CombineIdentitiesTest(t){ - var a = m.normalize([new m.Matrix2D(), new m.Matrix2D(), new m.Matrix2D()]); - eq(t, a.xx, 1); - eq(t, a.yy, 1); - eq(t, a.xy, 0); - eq(t, a.yx, 0); - eq(t, a.dx, 0); - eq(t, a.dy, 0); - }, - function CombineExclusiveTest(t){ - var a = m.normalize([m.rotateg(30), m.rotateg(-30)]); - eq(t, a.xx, 1); - eq(t, a.yy, 1); - eq(t, a.xy, 0); - eq(t, a.yx, 0); - eq(t, a.dx, 0); - eq(t, a.dy, 0); - }, - function CombineInvertedTest(t){ - var a = m.normalize([m.rotateg(30), m.invert(m.rotateg(30))]); - eq(t, a.xx, 1); - eq(t, a.yy, 1); - eq(t, a.xy, 0); - eq(t, a.yx, 0); - eq(t, a.dx, 0); - eq(t, a.dy, 0); - }, - function Rot90gAtTest(t){ - var a = m.rotategAt(90, 10, 10); - eq(t, a.xx, a.yy); - eq(t, a.xy, -a.yx); - eq(t, a.dx, 20); - eq(t, a.dy, 0); - eq(t, a.xx, 0); - eq(t, a.yx, 1); - }, - function MultPointTest1(t){ - var b = m.multiplyPoint(m.rotategAt(90, 10, 10), 10, 10); - eq(t, b.x, 10); - eq(t, b.y, 10); - }, - function MultPointTest2(t){ - var b = m.multiplyPoint(m.rotategAt(90, 10, 10), {x: 10, y: 5}); - eq(t, b.x, 15); - eq(t, b.y, 10); - }, - function MultPointTest3(t){ - var b = m.multiplyPoint(m.rotategAt(90, 10, 10), 10, 15); - eq(t, b.x, 5); - eq(t, b.y, 10); - }, - function ScaleTest1(t){ - var a = m.normalize([m.scale(2, 1), m.invert(m.rotateg(45))]); - eq(t, a.xx, 2 * a.yy); - eq(t, a.xy, -2 * a.yx); - eq(t, a.dx, 0); - eq(t, a.dy, 0); - eq(t, a.xx, a.xy); - eq(t, a.yy, -a.yx); - }, - function ScaleTest2(t){ - var a = m.normalize([m.scale(1, 2), m.invert(m.rotateg(45))]); - eq(t, 2 * a.xx, a.yy); - eq(t, 2 * a.xy, -a.yx); - eq(t, a.dx, 0); - eq(t, a.dy, 0); - eq(t, a.xx, a.xy); - eq(t, a.yy, -a.yx); - }, - function ScaleTest3(t){ - var a = m.normalize([m.rotateg(45), m.scale(2, 1)]); - eq(t, a.xx, 2 * a.yy); - eq(t, a.yx, -2 * a.xy); - eq(t, a.dx, 0); - eq(t, a.dy, 0); - eq(t, a.xx, a.yx); - eq(t, a.yy, -a.xy); - }, - function ScaleTest4(t){ - var a = m.normalize([m.rotateg(45), m.scale(1, 2)]); - eq(t, 2 * a.xx, a.yy); - eq(t, 2 * a.yx, -a.xy); - eq(t, a.dx, 0); - eq(t, a.dy, 0); - eq(t, a.xx, a.yx); - eq(t, a.yy, -a.xy); - }, - function ScaleTest5(t){ - var a = m.normalize([m.rotategAt(45, 100, 100), m.scale(2)]); - eq(t, a.xx, a.yy); - eq(t, a.xy, -a.yx); - eq(t, a.xx, a.yx); - eq(t, a.yy, -a.xy); - eq(t, a.dx, 100); - t.t(a.dy < 0); - var b = m.normalize([m.scale(2), m.rotategAt(45, 100, 100)]); - eq(t, b.xx, b.yy); - eq(t, b.xy, -b.yx); - eq(t, b.xx, b.yx); - eq(t, b.yy, -b.xy); - eq(t, b.dx, 200); - t.t(b.dy < 0); - eq(t, a.xx, b.xx); - eq(t, a.xy, b.xy); - eq(t, a.yx, b.yx); - eq(t, a.yy, b.yy); - eq(t, 2 * a.dx, b.dx); - eq(t, 2 * a.dy, b.dy); - var c = m.normalize([m.rotateg(45), m.scale(2)]); - eq(t, c.xx, c.yy); - eq(t, c.xy, -c.yx); - eq(t, c.xx, c.yx); - eq(t, c.yy, -c.xy); - eq(t, c.dx, 0); - eq(t, c.dy, 0); - var d = m.normalize([m.scale(2), m.rotateg(45)]); - eq(t, d.xx, d.yy); - eq(t, d.xy, -d.yx); - eq(t, d.xx, d.yx); - eq(t, d.yy, -d.xy); - eq(t, d.dx, 0); - eq(t, d.dy, 0); - eq(t, a.xx, c.xx); - eq(t, a.xy, c.xy); - eq(t, a.yx, c.yx); - eq(t, a.yy, c.yy); - eq(t, a.xx, d.xx); - eq(t, a.xy, d.xy); - eq(t, a.yx, d.yx); - eq(t, a.yy, d.yy); - }, - function ScaleTest6(t){ - var a = m.normalize(6); - eq(t, a.xx, 6); - eq(t, a.yy, 6); - eq(t, a.xy, 0); - eq(t, a.yx, 0); - eq(t, a.dx, 0); - eq(t, a.dy, 0); - }, - function ScaleTest7(t){ - var a = m.normalize([2, m.scale(2, 1)]); - eq(t, a.xx, 4); - eq(t, a.yy, 2); - eq(t, a.xy, 0); - eq(t, a.yx, 0); - eq(t, a.dx, 0); - eq(t, a.dy, 0); - }, - function TranslateTest(t){ - var a = m.normalize({dx: 100, dy: 200}); - eq(t, a.xx, 1); - eq(t, a.yy, 1); - eq(t, a.xy, 0); - eq(t, a.yx, 0); - eq(t, a.dx, 100); - eq(t, a.dy, 200); - }, - function ReflectTest1(t){ - var b = m.multiplyPoint(m.reflect(1, 1), 1, 0); - eq(t, b.x, 0); - eq(t, b.y, 1); - }, - function ReflectTest2(t){ - var b = m.multiplyPoint(m.reflect(1, 1), 0, 1); - eq(t, b.x, 1); - eq(t, b.y, 0); - }, - function ProjectTest1(t){ - var b = m.multiplyPoint(m.project(1, 1), 1, 0); - eq(t, b.x, 0.5); - eq(t, b.y, 0.5); - }, - function ProjectTest2(t){ - var b = m.multiplyPoint(m.project(1, 1), 0, 1); - eq(t, b.x, 0.5); - eq(t, b.y, 0.5); - } - ]); -})(); - -} diff --git a/includes/js/dojox/gfx/tests/module.js b/includes/js/dojox/gfx/tests/module.js deleted file mode 100644 index 0790b6b..0000000 --- a/includes/js/dojox/gfx/tests/module.js +++ /dev/null @@ -1,13 +0,0 @@ -if(!dojo._hasResource["dojox.gfx.tests.module"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.gfx.tests.module"] = true; -dojo.provide("dojox.gfx.tests.module"); - -try{ - dojo.require("dojox.gfx.tests.matrix"); - dojo.require("dojox.gfx.tests.decompose"); -}catch(e){ - doh.debug(e); -} - - -} diff --git a/includes/js/dojox/gfx/tests/runTests.html b/includes/js/dojox/gfx/tests/runTests.html deleted file mode 100644 index 4e13179..0000000 --- a/includes/js/dojox/gfx/tests/runTests.html +++ /dev/null @@ -1,9 +0,0 @@ - - - - Dojox Unit Test Runner - - - Redirecting to D.O.H runner. - - diff --git a/includes/js/dojox/gfx/tests/test_arc.html b/includes/js/dojox/gfx/tests/test_arc.html deleted file mode 100644 index f7fc589..0000000 --- a/includes/js/dojox/gfx/tests/test_arc.html +++ /dev/null @@ -1,71 +0,0 @@ - - -Testing arc - - - - - - - - - - - - - - - -

Testing arc

- -
-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_bezier.html b/includes/js/dojox/gfx/tests/test_bezier.html deleted file mode 100644 index bcee2d0..0000000 --- a/includes/js/dojox/gfx/tests/test_bezier.html +++ /dev/null @@ -1,85 +0,0 @@ - - -Approximation of an arc with bezier - - - - - - - - - - - - - - - -

Approximation of an arc with bezier

- -
-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_decompose.html b/includes/js/dojox/gfx/tests/test_decompose.html deleted file mode 100644 index 6291cc2..0000000 --- a/includes/js/dojox/gfx/tests/test_decompose.html +++ /dev/null @@ -1,54 +0,0 @@ - - -Testing decompose - - - - - - - - -

Testing decompose

-

- Example: m.rotategAt(30, 100, 100), m.scaleAt(2, 3, 5, 5), m.rotate(45)
- -

-

Result:

-

- Original matrix
- -

-

- Decomposed matrix
- -

-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_fill.html b/includes/js/dojox/gfx/tests/test_fill.html deleted file mode 100644 index 84827ea..0000000 --- a/includes/js/dojox/gfx/tests/test_fill.html +++ /dev/null @@ -1,47 +0,0 @@ - - -Testing fill rule - - - - - - - - - - - - - -

Testing fill rule

-
-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_fx.html b/includes/js/dojox/gfx/tests/test_fx.html deleted file mode 100644 index c7b5b81..0000000 --- a/includes/js/dojox/gfx/tests/test_fx.html +++ /dev/null @@ -1,113 +0,0 @@ - - - -Testing animation - - - - - - - - - - - - - -

Testing animation

-

- -   - -   - -   - -

-
-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_gfx.html b/includes/js/dojox/gfx/tests/test_gfx.html deleted file mode 100644 index 6d2bef3..0000000 --- a/includes/js/dojox/gfx/tests/test_gfx.html +++ /dev/null @@ -1,489 +0,0 @@ - - -Dojo Unified 2D Graphics - - - - - - - - - - - - - -

dojox.gfx tests

- - - -
- - diff --git a/includes/js/dojox/gfx/tests/test_gradient.html b/includes/js/dojox/gfx/tests/test_gradient.html deleted file mode 100644 index cd4e772..0000000 --- a/includes/js/dojox/gfx/tests/test_gradient.html +++ /dev/null @@ -1,70 +0,0 @@ - - -Dojo Unified 2D Graphics - - - - - - - - - - - -

dojox.gfx Alpha gradient test

-
- - diff --git a/includes/js/dojox/gfx/tests/test_group.html b/includes/js/dojox/gfx/tests/test_group.html deleted file mode 100644 index fe11b37..0000000 --- a/includes/js/dojox/gfx/tests/test_group.html +++ /dev/null @@ -1,73 +0,0 @@ - - -Dojo Unified 2D Graphics - - - - - - - - - - - - - - -

dojox.gfx Group tests

-

-
-
- -

-
-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_image1.html b/includes/js/dojox/gfx/tests/test_image1.html deleted file mode 100644 index 41b168e..0000000 --- a/includes/js/dojox/gfx/tests/test_image1.html +++ /dev/null @@ -1,74 +0,0 @@ - - -Testing image - - - - - - - - - - -

dojox.gfx Image tests

-

Note: Silverlight doesn't allow downloading images when run from a file system. This demo should be run from a server.

-

-
-
-
-
-
-

-

-
-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_image2.html b/includes/js/dojox/gfx/tests/test_image2.html deleted file mode 100644 index 25f71c0..0000000 --- a/includes/js/dojox/gfx/tests/test_image2.html +++ /dev/null @@ -1,50 +0,0 @@ - - -Testing image - - - - - - - - - -

Testing image:

-

Note: Silverlight doesn't allow downloading images when run from a file system. This demo should be run from a server.

-
-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_linearGradient.html b/includes/js/dojox/gfx/tests/test_linearGradient.html deleted file mode 100644 index f18021a..0000000 --- a/includes/js/dojox/gfx/tests/test_linearGradient.html +++ /dev/null @@ -1,80 +0,0 @@ - - -Dojo Unified 2D Graphics - - - - - - - - - - - - - - - - - -

dojox.gfx Linear Gradient test

-
- - diff --git a/includes/js/dojox/gfx/tests/test_linestyle.html b/includes/js/dojox/gfx/tests/test_linestyle.html deleted file mode 100644 index c4a422b..0000000 --- a/includes/js/dojox/gfx/tests/test_linestyle.html +++ /dev/null @@ -1,45 +0,0 @@ - - -Dojo Unified 2D Graphics - - - - - - - - - - - - - -

dojox.gfx: Line style test

-
-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_pattern.html b/includes/js/dojox/gfx/tests/test_pattern.html deleted file mode 100644 index 04d5c3d..0000000 --- a/includes/js/dojox/gfx/tests/test_pattern.html +++ /dev/null @@ -1,44 +0,0 @@ - - -Testing pattern - - - - - - - - - - - - -

dojox.gfx Pattern test

-
-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_poly.html b/includes/js/dojox/gfx/tests/test_poly.html deleted file mode 100644 index 7db70f1..0000000 --- a/includes/js/dojox/gfx/tests/test_poly.html +++ /dev/null @@ -1,53 +0,0 @@ - - -Testing polyline and line transforms - - - - - - - - - - - - - - - -

dojox.gfx Polyline test

-
-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_resize.html b/includes/js/dojox/gfx/tests/test_resize.html deleted file mode 100644 index 3870ab0..0000000 --- a/includes/js/dojox/gfx/tests/test_resize.html +++ /dev/null @@ -1,61 +0,0 @@ - - -Testing surface resizing - - - - - - - - - - - - - - - -

Testing surface resizing

- -

- -   - -   - -   - -

-
-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_setPath.html b/includes/js/dojox/gfx/tests/test_setPath.html deleted file mode 100644 index c8d7749..0000000 --- a/includes/js/dojox/gfx/tests/test_setPath.html +++ /dev/null @@ -1,76 +0,0 @@ - - -Testing setPath and curves - - - - - - - - - - - -

dojox.gfx setPath and curve test

-
-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_tbbox.html b/includes/js/dojox/gfx/tests/test_tbbox.html deleted file mode 100644 index 1fb1275..0000000 --- a/includes/js/dojox/gfx/tests/test_tbbox.html +++ /dev/null @@ -1,117 +0,0 @@ - - -Dojo Unified 2D Graphics - - - - - - - - - - - - - - - - -

dojox.gfx Transformation test

-
-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_text.html b/includes/js/dojox/gfx/tests/test_text.html deleted file mode 100644 index 446156f..0000000 --- a/includes/js/dojox/gfx/tests/test_text.html +++ /dev/null @@ -1,88 +0,0 @@ - - -Testing text - - - - - - - - - - - -

dojox.gfx Text test

-
-
 
-

 

-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_textpath.html b/includes/js/dojox/gfx/tests/test_textpath.html deleted file mode 100644 index 201b0b5..0000000 --- a/includes/js/dojox/gfx/tests/test_textpath.html +++ /dev/null @@ -1,76 +0,0 @@ - - -Testing textpath - - - - - - - - - -

dojox.gfx Text on a Path test

-
-

That's all Folks!

- - diff --git a/includes/js/dojox/gfx/tests/test_transform.html b/includes/js/dojox/gfx/tests/test_transform.html deleted file mode 100644 index abc50d5..0000000 --- a/includes/js/dojox/gfx/tests/test_transform.html +++ /dev/null @@ -1,98 +0,0 @@ - - -Dojo Unified 2D Graphics - - - - - - - - - - -

dojox.gfx Transform test

-
-

That's all Folks!

- - -- cgit v1.2.3