summaryrefslogtreecommitdiffstatshomepage
path: root/includes/js/dojox/gfx/tests/test_pattern.html
diff options
context:
space:
mode:
authorGravatar mensonge2008-11-14 15:39:19 +0000
committerGravatar mensonge2008-11-14 15:39:19 +0000
commit1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch)
tree3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dojox/gfx/tests/test_pattern.html
parent104d59099e048688c4dbac37d72137006e396558 (diff)
downloadscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.gz
scuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.zip
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
Diffstat (limited to 'includes/js/dojox/gfx/tests/test_pattern.html')
-rw-r--r--includes/js/dojox/gfx/tests/test_pattern.html44
1 files changed, 0 insertions, 44 deletions
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 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" >
-<head>
-<title>Testing pattern</title>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<style type="text/css">
- @import "../../../dojo/resources/dojo.css";
- @import "../../../dijit/tests/css/dijitTests.css";
-</style>
-<!--
-The next line should include Microsoft's Silverligth.js, if you plan to use the silverlight backend
-<script type="text/javascript" src="Silverlight.js"></script>
--->
-<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug: true"></script>
-<!--<script type="text/javascript" src="../matrix.js"></script>-->
-<!--<script type="text/javascript" src="../vml.js"></script>-->
-<!--<script type="text/javascript" src="../svg.js"></script>-->
-<!--<script type="text/javascript" src="../silverlight.js"></script>-->
-<!--<script type="text/javascript" src="../canvas.js"></script>-->
-<script type="text/javascript">
-dojo.require("dojox.gfx");
-
-makeShapes = function(){
- var pattern = {
- type: "pattern",
- x: 0, y: 0, width: 333, height: 80,
- src: "http://dojotoolkit.org/files/downloadButton.gif"
- };
- var ellipse = {cx: 400, cy: 200, rx: 350, ry: 150};
- var surface = dojox.gfx.createSurface("test", 800, 600);
- surface.createEllipse(ellipse)
- .setStroke({color: "blue", width: 1 })
- .setFill(pattern);
-};
-
-dojo.addOnLoad(makeShapes);
-
-</script>
-</head>
-<body>
- <h1>dojox.gfx Pattern test</h1>
-<div id="test"></div>
-<p>That's all Folks!</p>
-</body>
-</html>