I use postMessage
and addEventListener("message", ... , false)
for inter-frame communication in our javascript application.
Messages work and pass successfully between frames when I test Mobile Safari (iOS / iPad), Playbook WebKit, and desktop Chrome, but on the Galaxy Tab 10.1, the postMessage () call silently ends. Exceptions are not thrown, no errors occur, and the line immediately after postMessage never starts.
Is postMessage () fully supported in Android WebKit? Is there any other syntax or something I have to do to make it work?
source share