[TIMOB-26540] Windows: When using html in webView application closes
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | High |
Status | Closed |
Resolution | Fixed |
Resolution Date | 2018-11-14T00:38:01.000+0000 |
Affected Version/s | Release 7.5.0 |
Fix Version/s | Release 7.5.0 |
Components | Windows |
Labels | regression |
Reporter | Samir Mohammed |
Assignee | Kota Iguchi |
Created | 2018-11-09T17:16:25.000+0000 |
Updated | 2018-11-14T00:38:09.000+0000 |
Description
When using the following test case the application crashes on Windows without throwing an error. (Works fine on Android and works fines on windows using 7.4.1.GA):
var win = Ti.UI.createWindow({
backgroundColor: '#fff'
});
var webView = Titanium.UI.createWebView({
html: '<select name="selectBox"><option value="val1">Value 1</option><option value="val2">Value 2</option><option value="val3">Value 3</option></select>'
});
webView.setBasicAuthentication('user', 'pass');
win.add(webView);
win.open();
*Expected result*
Application should show a selectBox.
*Actual result*
Application crashes without showing an error
7_5_X: https://github.com/appcelerator/titanium_mobile_windows/pull/1316 master: https://github.com/appcelerator/titanium_mobile_windows/pull/1317