Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(630)

Side by Side Diff: ManualTests/blackberry/http-auth-private-mode-changed.php

Issue 780003004: Cleanup: Remove notification test from blackberry. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: g rm -rf ManualTests/blackberry Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <?php
2 $username = $password = "aaaa";
3
4 if ($_SERVER['PHP_AUTH_USER'] == $username && $_SERVER['PHP_AUTH_PW'] == $pa ssword){
5 echo 'Test steps:<br>';
6 echo '1. Set Private Browsing off. (Settings -> Privacy & Security -> Pr ivate Browsing)<br>';
7 echo '2. Refresh the page.<br>';
8 echo '3. There should be a dialog for you to input username and password again.<br>';
9 echo 'If you can\'t see the dialog, this test fails.<br>';
10 exit;
11 } else {
12 header('WWW-Authenticate: Basic realm="My Realm"');
13 header('HTTP/1.0 401 Unauthorized');
14 echo "Authorization Required.";
15 exit;
16 }
17 ?>
OLDNEW
« no previous file with comments | « ManualTests/blackberry/http-auth-private-mode-changed.html ('k') | ManualTests/blackberry/http-cookie-database-set.php » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698