Blame | Last modification | View Log | RSS feed
<html><head><script djConfig="isDebug: true" src="../../../../dojo.js"></script><script>dojo.registerModulePath("foo", "tests/_base/_loader/744/foo");dojo.require("foo.bar");dojo.addOnLoad(function(){console.debug(barMessage);console.debug(getBar2Message());console.debug(getBarMessage());});dojo.addOnLoad(function(){//This fails if window.execScripts is used for MSIE, since that function//does not return a value.var temp = "({name: 'light'})";var evalTemp = dojo.eval(temp);console.debug("Object's name is: ", evalTemp.name);});</script></head><body><p>Defining global variables/functions in a module that is loaded via dojo.require()(meaning that XHR is used to load the text of the file and then eval the text) doesnot seem to define the global variables/functions on window.</p><p>The test succeeds if you see "It Worked" 3 times in the debug console, then a "Object's name is: light" message.</p></body></html>