| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../http/tests/inspector-protocol/inspector-protocol-test.js"></s
cript> | 4 <script src="../../http/tests/inspector-protocol/resources/inspector-protocol-te
st.js"></script> |
| 5 <script> | 5 <script> |
| 6 function appendIframe() | 6 function appendIframe() |
| 7 { | 7 { |
| 8 var iframe = document.createElement("iframe"); | 8 var iframe = document.createElement("iframe"); |
| 9 iframe.src = "resources/resources-page.html"; | 9 iframe.src = "resources/resources-page.html"; |
| 10 document.body.appendChild(iframe); | 10 document.body.appendChild(iframe); |
| 11 } | 11 } |
| 12 | 12 |
| 13 function test() | 13 function test() |
| 14 { | 14 { |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 | 116 |
| 117 enableNetwork(); | 117 enableNetwork(); |
| 118 } | 118 } |
| 119 </script> | 119 </script> |
| 120 </head> | 120 </head> |
| 121 <body onload="runTest();"> | 121 <body onload="runTest();"> |
| 122 <p>Tests that responseReceived contains the | 122 <p>Tests that responseReceived contains the |
| 123 <a href="https://developers.google.com/chrome-developer-tools/docs/protocol/
tot/page#type-ResourceType">documented resource types</a>. | 123 <a href="https://developers.google.com/chrome-developer-tools/docs/protocol/
tot/page#type-ResourceType">documented resource types</a>. |
| 124 </p> | 124 </p> |
| 125 </body> | 125 </body> |
| OLD | NEW |