Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an app that uses the application cache, that I am trying to run in the android browser (android 4.0.4).

Starting with an empty cache, the application loads fine, dojo loads and the dojo object is defined.

If I refresh the page, it again loads fine (from cache).

If I close down the browser (force stop) and reopen it and load the application if fails to load correctly. Specifically, my compiled dojo.js module does not complete execution, and leaves me without a dojo object.

Adding console.log messages to track the problem down, it shows that an xhr.get requestis failing with a status=0 a readyState=4 and a responseText with the contents of the requested javascript.

Initially it was selector/lite.js that was causing the problem. I added some console.log messages to lite.js to see if I could figure out what was going on. The mere act of changing this file, and updating the manifest meant that it no longer failed on this module anymore, but is now failing on firebug.js with the same symptoms.

So I touched firebug.js and update the manifest, and sure enough it now starts loading firebug.js ok and dojo.js completes execution.

I then force close the android browser and re-open it, and load my app, and its back to failing on trying to load lite.js with status 0 readyState 4 and responseText containing the response.

I cut my project down to nothing more than the basic dojo code and can re-produce the problem with it (in fact I did my debugging with it and it contains all the console.logs I added.

https://dl.dropbox.com/u/43876768/android-browser-cache-bug.tgz

Note: that, due to another issue I was having with the browser with console.log messages not showing up in adb logcat I use a service called jsconsole.com to have console.log messages appear there. This works very well. The script tag at the top of index.html uses the UUID in the link below. Anyone testing might want to use their own UUID to avoid confusion.

http://jsconsole.com/?%3Alisten%20FE11F6BD-4F40-433F-9C46-C1939D98A4BB

So, to my question. Really I want to know is this really a bug, or am I doing something wrong. If its a bug, I can probably change the dojo xhr code to cope with it by examining the responseText to see if it looks like valid code and treating it as successful

if (isAndroid && xhr.status == 0 && xhr.readyState == 4 && xhr.responseText.length > 0) {
  // treat as success if it looks like a dojo module
  ...
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.