Re: Inconsistent Data in Webkit

2011-02-24 Thread Bruce Cresanta
John, This is what I have: - (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame { // Only report feedback for the main frame. if (frame == [sender mainFrame]){ while([sender isLoading]) {}; //delay until fully loaded

Re: Inconsistent Data in Webkit

2011-02-24 Thread John Joyce
On Feb 25, 2011, at 12:24 PM, Bruce Cresanta wrote: > Hello, > > I've noticed that certain webpages render fine in WebView, but that the > data in the dataSource remains nil.Is this a bug in webkit? Is there a > way to get consistent data? For example, http://www.php.net renders

Inconsistent Data in Webkit

2011-02-24 Thread Bruce Cresanta
Hello, I've noticed that certain webpages render fine in WebView, but that the data in the dataSource remains nil.Is this a bug in webkit? Is there a way to get consistent data? For example, http://www.php.net renders fine in the browser, but the control's data is never set. Th