| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="inspector-protocol-test.js"></script> | 4 <script src="resources/inspector-protocol-test.js"></script> |
| 5 <script src="resources/blank.js"></script> | 5 <script src="resources/blank.js"></script> |
| 6 | 6 |
| 7 <script> | 7 <script> |
| 8 | 8 |
| 9 function test() | 9 function test() |
| 10 { | 10 { |
| 11 InspectorTest.eventHandler["Network.requestWillBeSent"] = onRequestWillBeSen
t; | 11 InspectorTest.eventHandler["Network.requestWillBeSent"] = onRequestWillBeSen
t; |
| 12 InspectorTest.eventHandler["Network.responseReceived"] = onResponseReceived; | 12 InspectorTest.eventHandler["Network.responseReceived"] = onResponseReceived; |
| 13 InspectorTest.eventHandler["Network.requestServedFromCache"] = onServedFromC
ache; | 13 InspectorTest.eventHandler["Network.requestServedFromCache"] = onServedFromC
ache; |
| 14 | 14 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 InspectorTest.completeTest(); | 58 InspectorTest.completeTest(); |
| 59 } | 59 } |
| 60 } | 60 } |
| 61 } | 61 } |
| 62 </script> | 62 </script> |
| 63 </head> | 63 </head> |
| 64 <body onload="runTest();"> | 64 <body onload="runTest();"> |
| 65 <p>Tests that reloads when coming from protocol still use memory cache.</p> | 65 <p>Tests that reloads when coming from protocol still use memory cache.</p> |
| 66 </body> | 66 </body> |
| 67 </html> | 67 </html> |
| OLD | NEW |