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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector-protocol/resources/ping-redirect.php

Issue 2586063002: DevTools: Show redirects from navigator.sendBeacon() (Closed)
Patch Set: corrected m_frame->frame() 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/inspector-protocol/resources/ping-redirect.php
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/resources/ping-redirect.php b/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/resources/ping-redirect.php
new file mode 100644
index 0000000000000000000000000000000000000000..5a9172332a7776aa9009b7cb19e259b44e7d2449
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/resources/ping-redirect.php
@@ -0,0 +1,7 @@
+<?php
+header('HTTP/1.1 307 Temporary Redirect');
+header('Expires: Thu, 01 Dec 2003 16:00:00 GMT');
+header('Cache-Control: no-cache, must-revalidate');
+header('Pragma: no-cache');
+header('Location: ping-redirected-page.html');
+?>

Powered by Google App Engine
This is Rietveld 408576698