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

Side by Side Diff: ManualTests/blackberry/http-cookie-database-set.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 if (isset($_COOKIE["db_cookie"])) {
2 if ($_COOKIE["db_cookie"] == "https_cookie")
3 echo 'PASS';
4 else
5 echo 'FAIL';
6 } else {
7 header("Set-Cookie: db_cookie = http_cookie; expires=Thu, 12-Apr-2312 08:32:29 GMT;");
8 $path = str_replace("http-cookie-database-set.php", "http-cookie-datab ase-update.php", $_SERVER["PHP_SELF"]);
9 $newurl = 'https://'.$_SERVER["HTTP_HOST"].$path;
10 $location = 'Location:'.$newurl;
11 header($location);
12 }
13 ?>
14
OLDNEW
« no previous file with comments | « ManualTests/blackberry/http-auth-private-mode-changed.php ('k') | ManualTests/blackberry/http-cookie-database-update.php » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698