]> git.pond.sub.org Git - eow/blobdiff - static/dojo-release-1.1.1/dijit/tests/test.html
Replace Dojo with jQuery
[eow] / static / dojo-release-1.1.1 / dijit / tests / test.html
diff --git a/static/dojo-release-1.1.1/dijit/tests/test.html b/static/dojo-release-1.1.1/dijit/tests/test.html
deleted file mode 100644 (file)
index c793092..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
-       "http://www.w3.org/TR/html4/strict.dtd">
-<html>
-<head>
-       <title>widget infrastructure test</title>
-
-       <script type="text/javascript" src="../../dojo/dojo.js"
-               djConfig="isDebug: true"></script>
-
-       <script type="text/javascript">
-               dojo.require("dijit.form.Button");
-               
-               dojo.addOnLoad(function(){
-                       for(var i=1; i<=3; i++){
-                               var node = dojo.byId("b"+i);
-                               var myButton = new dijit.form.Button(null, node);
-                       }
-               });
-
-       </script>
-
-       <style type="text/css">
-
-               @import "../../dojo/resources/dojo.css";
-               @import "../themes/tundra/tundra.css";
-               @import "css/dijitTests.css";
-
-               body { padding: 5em; }
-       </style>
-</head>
-
-<body class="tundra">
-       <button id="b1" style="background: yellow;">button #1</button>
-       <button id="b2" style="background: orange;">button #2</button>
-       <button id="b3" style="background: violet;">button #3</button>
-</body>
-</html>