I resubmitted the bug report but still no confirmation email…
Well the bug is quite easy to reproduce with this code:
-- main.lua local webView = native.newWebView( display.contentCenterX, display.contentCenterY, display.contentWidth, display.contentHeight ) webView:request( "http://www.shakebrowser.net/resize.html" )
-- build.settings settings = { osx = { plist = { NSAppTransportSecurity = { NSAllowsArbitraryLoads = true }, }, }, orientation = { default = "landscapeRight", }, }
The webpage requested was created by me to demonstrate the problem.
It contains the following code:
\<!DOCTYPE html\> \<html\> \<body\> \<button onclick="resizeWin()"\>Resize window\</button\> \<button onclick="openWin()"\>Open new window\</button\> \<button onclick="moveWin()"\>Move window\</button\> \<script\> function resizeWin() { window.resizeTo(250, 250);} function openWin() {window.open("", "", "width=100, height=100");} function moveWin() {window.moveBy(250, 250);} \</script\> \</body\> \</html\>