[Webkit-unassigned] [Bug 16249] Site is not rendered completely.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Feb 15 06:06:41 PST 2008


http://bugs.webkit.org/show_bug.cgi?id=16249


webkit at blaut.biz changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |webkit at blaut.biz
             Status|UNCONFIRMED                 |NEW
          Component|New Bugs                    |Evangelism
     Ever Confirmed|0                           |1
         OS/Version|Windows XP                  |All
           Platform|PC                          |All




------- Comment #2 from webkit at blaut.biz  2008-02-15 06:06 PDT -------
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.


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list