diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
commit | 1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch) | |
tree | 3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dojox/gfx/tests/test_linestyle.html | |
parent | 104d59099e048688c4dbac37d72137006e396558 (diff) | |
download | semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.gz semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.bz2 |
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_linestyle.html')
-rw-r--r-- | includes/js/dojox/gfx/tests/test_linestyle.html | 45 |
1 files changed, 0 insertions, 45 deletions
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 @@ -<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" > -<head> -<title>Dojo Unified 2D Graphics</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="../_base.js"></script>--> -<!--<script type="text/javascript" src="../shape.js"></script>--> -<!--<script type="text/javascript" src="../path.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"> -dojo.require("dojox.gfx"); - -makeShapes = function(){ - var surface = dojox.gfx.createSurface(document.getElementById("test"), 500, 500); - var styles = ["none", "Solid", "ShortDash", "ShortDot", "ShortDashDot", "ShortDashDotDot", - "Dot", "Dash", "LongDash", "DashDot", "LongDashDot", "LongDashDotDot"]; - var font = "normal normal normal 10pt Arial"; // CSS font style - var y_offset = dojox.gfx.normalizedLength("4pt"); - for(var i = 0; i < styles.length; ++i){ - var y = 20 + i * 20; - surface.createText({x: 140, y: y + y_offset, text: styles[i], align: "end"}).setFont(font).setFill("black"); - surface.createLine({x1: 150, y1: y, x2: 490, y2: y}).setStroke({style: styles[i], width: 3, cap: "round"}); - } -}; - -dojo.addOnLoad(makeShapes); - -</script> -</head> -<body> - <h1>dojox.gfx: Line style test</h1> -<div id="test"></div> -<p>That's all Folks!</p> -</body> -</html> |