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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/navigation-redirect-body.php

Issue 1612423002: Don't send the body of the redirected request to the ServiceWorker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: incorporated falken's comment Created 4 years, 11 months 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
OLDNEW
(Empty)
1 <?php
2 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
3 header ("HTTP/1.1 302");
4 header("Location: ./navigation-redirect-body.php?redirect");
5 } else {
6 echo urlencode($_SERVER['REQUEST_URI']);
7 }
8 ?>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698