In the Navigate method in WebKitBrowser.cs there is the line...
GetScriptManager.EvaluateScript(url.Split(Convert.ToChar("::"))[1]);
Convert.ToChar("::")) is not valid and a suggested fix since we are only
checking for url starting with javascript::
GetScriptManager.EvaluateScript(url.Substring(12));
Original issue reported on code.google.com by Peter.Tr...@gmail.com on 25 May 2012 at 11:31
Original issue reported on code.google.com by
Peter.Tr...@gmail.com
on 25 May 2012 at 11:31