If i navigate to google.com it will look fine like in chrome. But if i navigate to a site maybe the problem it's in hebrew not sure for example to http://www.tapuz.co.il/forums/addmsg/393/ An hebrew site. Then everything is mess i mean textboxes and images in the site not in places. But browsing to this site from chrome is looking fine.
I just navigate to the site regular: In form1 constructor:
webBrowser1.DocumentCompleted += webBrowser4_DocumentCompleted;
webBrowser1.ScriptErrorsSuppressed = true;
webBrowser1.Navigate("http://www.tapuz.co.il/forums/addmsg/393");
And in documentcompleted just checking until the page loaded:
void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
if (e.Url.AbsoluteUri != webBrowser1.Url.AbsoluteUri)
{
return;
}
}
The result i get using the webBrowser is this screenshot: