My application engine runs inside a WebView. It spans different IFRAMES. Both the main application html and the iframes html are on android_assets. On Android 3.x no problems ever. Same on chrome browser, etc.
If I create an IFRAME (createElement -> appendChild) the iframe is created.
When I load stuff in it (iframe.src="url" <> iframe.contentWindow.location.href="url") ... IT REPLACES THE MAIN APPLICATION!! (instead of loading into iframe)
Already tried:
- window.setTimeout to delay the loading... failed.
- in webview, inject X-Frame-Options=SAME_ORIGIN as header into any loaded page -> failed
- creating the iframe, setting sandbox=same_origin,allow_scripts -> failed
Anybody with similar problems? Or can someone help me find documentation about WebView ICS bugs vs Honeycomb?
Also found many other strange issues... is ICS really this buggy? :S :S