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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/resources/resource-iframe.html

Issue 2739323003: DevTools protocol interception, blocking & modification of requests (Closed)
Patch Set: Add a comment Created 3 years, 6 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 <!DOCTYPE html>
2 <html>
3 <head>
4 <link rel="stylesheet" href="i-dont-exist.css">
5 <script src="script.js"></script>
6 <script src="script2.js"></script>
7 <script>
8 var xhr = new XMLHttpRequest;
9 xhr.open('POST', 'post-echo.pl', true);
10 xhr.onreadystatechange = function () {
11 if (xhr.readyState != 4)
12 return;
13 console.log(xhr.responseText);
14 }
15 xhr.send("Post - ECHO SUCCESS!");
16 </script>
17 </head>
18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698