[Webkit-unassigned] [Bug 47886] New: When basic authentication is cancelled no rendering happens

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Oct 18 23:37:13 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=47886

           Summary: When basic authentication is cancelled no rendering
                    happens
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Macintosh
        OS/Version: Mac OS X 10.4
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: Page Loading
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: rc at opelgt.org


This little php script echos a bit HTML if authentication is cancelled but
nothing of it appears in the Safari window whereas Firefox 3.6 works well.

<?php
if(!isset($_SERVER['PHP_AUTH_USER']))
 {
  header('WWW-Authenticate: Basic realm="My realm"');
  header('HTTP/1.0 401 Unauthorized');
  echo '<HTML><HEAD><TITLE>Titel</TITLE></HEAD><BODY>Authentication cancelled!</BODY></HTML>';
  exit;
 }
?>

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



More information about the webkit-unassigned mailing list