OLD | NEW |
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/redirect-iframe.html"; | 10 iframe.src = "resources/redirect-iframe.html"; |
11 document.body.appendChild(iframe); | 11 document.body.appendChild(iframe); |
12 } | 12 } |
13 | 13 |
14 function test() | 14 function test() |
(...skipping 11 matching lines...) Expand all Loading... |
26 | 26 |
27 InspectorTest.startInterceptionTest(requestInterceptedDict, 1); | 27 InspectorTest.startInterceptionTest(requestInterceptedDict, 1); |
28 } | 28 } |
29 </script> | 29 </script> |
30 </head> | 30 </head> |
31 <body onload="runTest();"> | 31 <body onload="runTest();"> |
32 <p>Tests a mock 302 resource.</a> | 32 <p>Tests a mock 302 resource.</a> |
33 </p> | 33 </p> |
34 </body> | 34 </body> |
35 </html> | 35 </html> |
OLD | NEW |