[AC-2861] Webview documents incorrectly states .html property is read-only on everything other than iOS
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | n/a |
| Status | Closed |
| Resolution | Fixed |
| Resolution Date | 2013-04-01T20:59:28.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | n/a |
| Labels | n/a |
| Reporter | Neville Dastur |
| Assignee | Daniel Sefton |
| Created | 2012-07-01T11:32:19.000+0000 |
| Updated | 2016-03-08T07:47:48.000+0000 |
Description
var webview = Ti.UI.createWebView({});
webview.html = '<html><body>Some HTML</body></html>';
does work on Android
Cannot reproduce
var win = Ti.UI.createWindow({ backgroundColor: 'white' }); var webview = Ti.UI.createWebView({}); webview.html = '<html><body>Some HTML</body></html>'; win.add(webview); win.open();