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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/disable-interception-midway.html

Issue 2942573003: [DevTools] New harness for inspector-protocol layout tests (Closed)
Patch Set: Protocol -> dp 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
1 <html> 1 <html>
2 <head> 2 <head>
3 <script type="text/javascript" src="../inspector-protocol-test.js"></script> 3 <script type="text/javascript" src="../resources/inspector-protocol-test.js"></s cript>
4 <script type="text/javascript" src="interception-test.js"></script> 4 <script type="text/javascript" src="../resources/interception-test.js"></script>
5 5
6 <script> 6 <script>
7 function appendIframe() 7 function appendIframe()
8 { 8 {
9 var iframe = document.createElement("iframe"); 9 var iframe = document.createElement("iframe");
10 iframe.src = "resources/resource-iframe.html"; 10 iframe.src = "resources/resource-iframe.html";
11 document.body.appendChild(iframe); 11 document.body.appendChild(iframe);
12 } 12 }
13 13
14 function test() 14 function test()
(...skipping 18 matching lines...) Expand all
33 33
34 InspectorTest.startInterceptionTest(requestInterceptedDict, 1); 34 InspectorTest.startInterceptionTest(requestInterceptedDict, 1);
35 } 35 }
36 </script> 36 </script>
37 </head> 37 </head>
38 <body onload="runTest();"> 38 <body onload="runTest();">
39 <p>Tests interception blocking, modification of network fetches.</a> 39 <p>Tests interception blocking, modification of network fetches.</a>
40 </p> 40 </p>
41 </body> 41 </body>
42 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698