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/dojo/tests/test_FirebugLitePopup.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/dojo/tests/test_FirebugLitePopup.html')
-rw-r--r-- | includes/js/dojo/tests/test_FirebugLitePopup.html | 101 |
1 files changed, 0 insertions, 101 deletions
diff --git a/includes/js/dojo/tests/test_FirebugLitePopup.html b/includes/js/dojo/tests/test_FirebugLitePopup.html deleted file mode 100644 index 926713e..0000000 --- a/includes/js/dojo/tests/test_FirebugLitePopup.html +++ /dev/null @@ -1,101 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> - <title>Firebug Lite Tests</title> - <script type="text/javascript"> - // enable Lite in Firefox: - console = null; - var djConfig = { - isDebug: true, - debugHeight: 100, - popup:true // who knew? - }; - </script> - - <script type="text/javascript" src="../dojo.js"></script> - <script type="text/javascript"> - obj = { // a long object to test scrolling in object inspector - mobby:{d:"objectify", e:"erroroneous", f:"functastic", obby:{lilOb:"moOb"}}, - a:"Dojo", - b:2, - c:[0,8], - id:"MyCoolObject", - extra:{d:"objectify2", e:"erroroneous2", f:"functastic2", obby:{lilOb:"moOb2"}}, - aaa:"Dojo", - bbb:22, - ccc:[10,18], - idDeedYee:"MyCoolObjectie" - } - - obj2 = { - a:"Dojo", - b:2, - c:[0,8], - id:"MyCoolObject" - } - - obj3 = { - a:"Dojo", - b:2, - c:[0,8] - } - - outputText = function(){ - for ( var i = 0; i < 20 ; i++){ - console.log (i+":: foo"); - } - } - doStuff = function(){ - console.log("FOO! More FOO! Gotta have some FOO MAN!") - } - - doStuffLots = function(){ - for ( var i = 0; i < 5 ; i++){ - console.log("xxxxxxxx") - doStuff(); - }} - dojo.addOnLoad(function(){ - console.time("foo time") - // test objects - console.log(obj3, "::", [1,2,3,4,5,6,7,8,9,0]); - console.log("Dojo was here", obj, "object over", obj2); - - // test that tracing dom node does not break (due to lack of support) - console.log(dojo.byId("foo")) - - // test error functionality - console.error( new Error("There was a dummy error") ); - - //throws exception: - //console.assert(true == false) - - console.group("myGroup"); - console.log("group me 1"); - console.log("group me 2"); - console.log("group me 3"); - console.groupEnd(); - - // testing log styling - console.log("foo"); - console.debug("foo"); - console.info("foo"); - console.warn("foo"); - console.error("foo"); - //timer end - console.timeEnd("foo time") - }) - - function doCon(){ - } - </script> -</head> -<body> - <h1>test Firebug popup window</h1> - <div id="foo" font="Arial" style="display:none;">Dojo was here</div> - <button onclick="doStuff()">Do Foo Stuff</button> - <button onclick="doStuffLots()">Do Stuff Lots</button> - <div id="trc"></div> - </body> -</html> |