Bug 16249 - Site is not rendered completely.
Summary: Site is not rendered completely.
Status: RESOLVED CONFIGURATION CHANGED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Evangelism (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Nobody
URL: http://my.walla.co.il/
Keywords:
Depends on:
Blocks:
 
Reported: 2007-12-02 08:43 PST by Anantha Keesara
Modified: 2020-10-23 13:36 PDT (History)
3 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Anantha Keesara 2007-12-02 08:43:23 PST
Verified with: WebKit-SVN-r28278

Other Browsers: 
This site is not rendered in Opera and Safari.
Comment 1 mitz 2007-12-02 09:08:15 PST
Works fine when spoofing as IE 7.
Comment 2 Robert Blaut 2008-02-15 06:06:40 PST
Browser sniffing throws away Webkit:

function WallaCheckBrowser()
{
	var navFamily = navigator.userAgent.toLowerCase();
	if (navFamily.indexOf('msie')!=-1) {
		var ver = parseFloat( navFamily.substring(navFamily.indexOf('msie')+5,
			navFamily.length) );
		scriptStr='SCRIPT';
		navFamily = 'IE7';
	} else if (navFamily.indexOf('gecko')!=-1) {
		var ver = parseFloat( navFamily.substring(navFamily.indexOf('gecko')+6,
			navFamily.length) );
		scriptStr='script';
		navFamily = 'Gecko';
	} else {
		scriptStr='script';navFamily = 'Gecko';
	}
	
	return navFamily;
}

The bug confirmed as an Evangelism bug.