Dear software developers,
A WinForm application using WebBrowser control that is hosting html5 webapp. It use two HTML5 features: 1. Application Cache 2. Local Storage
Application Cache works perfect. The Local Storage does not work. (typeof(Storage) == "undefined")
When requesting http://html5test.com in the WebBrowser control it shows: "You are using Internet Explorer 11.... " and full support for both Application Cache and Local Storage.
What need I do in order to enable the WebBrowser control to handle Local Storage?
All hints that guid me in the right direction are more than welcome.