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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/service-workers/resources/navigation-preload-scope.php

Issue 2620463002: Show service worker navigation preload requests in DevTools Network tab (Closed)
Patch Set: incorporated falken's comment Created 3 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 (isset($_GET['RedirectError'])) {
3 header('Location: dummy.html');
4 header('HTTP/1.0 302 Found');
5 } if (isset($_GET['BrokenCunked'])) {
falken 2017/01/18 14:50:07 Chunked
horo 2017/01/19 09:57:09 Done.
6 header("Content-type: text/html; charset=UTF-8");
7 header("Transfer-encoding: chunked");
8 echo "hello\nworld\n";
9 } else {
10 header("Content-Type: text/html; charset=UTF-8");
11 echo "OK";
12 }
13 ?>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698