You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.1 KiB
51 lines
1.1 KiB
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |
|
"http://www.w3.org/TR/html4/strict.dtd"> |
|
<html> |
|
<head> |
|
<title>Object Debugger Test</title> |
|
<script type="text/javascript"> |
|
|
|
var djConfig = { |
|
debugAtAllCosts: true, |
|
isDebug: true |
|
}; |
|
|
|
</script> |
|
<script type="text/javascript" src="../../dojo.js"></script> |
|
<script type="text/javascript"> |
|
dojo.require("dojo.uri.*"); //Needed for dojo.debugDeep() |
|
dojo.require("dojo.widget.Tree"); |
|
dojo.hostenv.writeIncludes(); |
|
|
|
dojo.arrayOfStuff = ['woo', 'yay', 'hoopla', 'foo', 'bar', 'baz']; |
|
|
|
dojo.hugeArray = []; |
|
for (var i=0; i<50; i++){ |
|
dojo.hugeArray.push('hello world'); |
|
} |
|
|
|
dojo.SortMeRight = 'I have an uppercase key, but would like to be sorted correctly!'; |
|
</script> |
|
<style> |
|
|
|
body { |
|
background-color: #3A6EA5; |
|
color: white; |
|
} |
|
|
|
a { |
|
color: white; |
|
} |
|
|
|
</style> |
|
</head> |
|
<body> |
|
|
|
<h1>Debug testing</h1> |
|
|
|
<p><a href="#" onclick="dojo.debug(dojo);">Plain debug of the root dojo object</a></p> |
|
<p><a href="#" onclick="dojo.debugShallow(dojo);">Shallow debug of the root dojo object</a></p> |
|
<p><a href="#" onclick="dojo.debugDeep(dojo);">Deep debug of the root dojo object</a></p> |
|
|
|
</body> |
|
</html>
|
|
|