When I load dojo 1.4 from google's CDN, I get the following error:
native string.js:183 Uncaught illegal access
This only happens on about half the refreshes when using Chrome, other times it works fine. I've verified that the problem reproduces on multiple windows machines running Chrome.
I'm using the following code to create my dojo dijits:
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/dojo/1.4/dijit/themes/tundra/tundra.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/dojo/1.4/dojo/dojo.xd.js" djConfig="parseOnLoad: true">
</script>
<script type="text/javascript">
dojo.require("dijit.layout.TabContainer");
dojo.require("dijit.layout.ContentPane");
dojo.require("dijit.Dialog");
dojo.require("dijit.form.DateTextBox");
</script>
Any ideas?