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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/request-interception-mock302.html

Issue 2739323003: DevTools protocol interception, blocking & modification of requests (Closed)
Patch Set: Add a comment Created 3 years, 7 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/network/request-interception-mock302.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/request-interception-mock302.html b/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/request-interception-mock302.html
new file mode 100644
index 0000000000000000000000000000000000000000..14bbe3d0be69e7c1ea472151b6896b8f773bb4ac
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/request-interception-mock302.html
@@ -0,0 +1,35 @@
+<html>
+<head>
+<script type="text/javascript" src="../inspector-protocol-test.js"></script>
+<script type="text/javascript" src="interception-test.js"></script>
+
+<script>
+function appendIframe()
+{
+ var iframe = document.createElement("iframe");
+ iframe.src = "resources/redirect-iframe.html";
+ document.body.appendChild(iframe);
+}
+
+function test()
+{
+ var requestInterceptedDict = {
+ "redirect-iframe.html": InspectorTest.allowRequest,
+ "redirect1.pl": function(event) {
+ var rawResponse =
+ "HTTP/1.1 302 Found\r\n" +
+ "Location: final.js\r\n\r\n";
+ InspectorTest.mockResponse(event, rawResponse);
+ },
+ "final.js": InspectorTest.allowRequest,
+ };
+
+ InspectorTest.startInterceptionTest(requestInterceptedDict, 1);
+}
+</script>
+</head>
+<body onload="runTest();">
+<p>Tests a mock 302 resource.</a>
+</p>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698