Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-26540] Windows: When using html in webView application closes

GitHub Issuen/a
TypeBug
PriorityHigh
StatusClosed
ResolutionFixed
Resolution Date2018-11-14T00:38:01.000+0000
Affected Version/sRelease 7.5.0
Fix Version/sRelease 7.5.0
ComponentsWindows
Labelsregression
ReporterSamir Mohammed
AssigneeKota Iguchi
Created2018-11-09T17:16:25.000+0000
Updated2018-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

Comments

  1. Kota Iguchi 2018-11-12

    7_5_X: https://github.com/appcelerator/titanium_mobile_windows/pull/1316 master: https://github.com/appcelerator/titanium_mobile_windows/pull/1317

JSON Source