Comment #4 on issue 26900 by [email protected]: Chrome hangs when a page
wants to open several http auth sheets
http://code.google.com/p/chromium/issues/detail?id=26900
Here's how to repro:
1. sudo mvim /etc/apache2/httpd.conf
2. Uncomment
LoadModule php5_module libexec/apache2/libphp5.so
to enable php
3. If your homedir is FileVault-protected, run
chmod +a "www allow search" ~
4. Open sysprefs, sharing, turn on "Web Sharing"
Copy this to ~/Sites/p1.php and ~/Sites/p2.php:
<?php
header("WWW-Authenticate: " .
"Basic realm=\"Protected Page: " .
"Enter your username and password " .
"for access.\"");
header("HTTP/1.0 401 Unauthorized");
?>
5. Copy this to ~/Sites/test.html:
<img src="p1.php">
<img src="p2.php">
6. Open "http://localhost/~thakis/test.html" in chrome
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---