I've found strange thing- after setting EnableWebSecurity to false, context menu partially doesn't work. For example, I can't get a window with contents of the page by clicking "View Source" in the standart context menu.
Full code to reproduce the problem:
Code:
EO.WinForm.WebControl wc = new EO.WinForm.WebControl();
wc.WebView = new WebView();
wc.WebView.Url = "google.com";
EO.WebEngine.BrowserOptions options = new EO.WebEngine.BrowserOptions();
options.EnableWebSecurity = false;
Runtime.DefaultEngineOptions.SetDefaultBrowserOptions(options);
panel.Controls.Add(wc); // "panel" - is the panel on the windows form