OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> |
4 <script src="../../../http/tests/inspector/timeline-test.js"></script> | 4 <script src="../../../http/tests/inspector/timeline-test.js"></script> |
5 <script> | 5 <script> |
6 | 6 |
7 function performActions() | 7 function performActions() |
8 { | 8 { |
9 var image = new Image(); | 9 var image = new Image(); |
10 var imagePromise = new Promise((fulfill) => image.onload = fulfill); | 10 var imagePromise = new Promise((fulfill) => image.onload = fulfill); |
11 image.src = "../resources/anImage.png"; | 11 image.src = "../resources/anImage.png"; |
12 | 12 |
13 var script = document.createElement("script"); | 13 var script = document.createElement("script"); |
14 script.src = "timeline-network-resource.js"; | 14 script.src = "../../../http/tests/inspector/tracing/resources/timeline-netwo
rk-resource.js"; |
15 document.body.appendChild(script); | 15 document.body.appendChild(script); |
16 var scriptPromise = new Promise((fulfill) => window.timelineNetworkResourceE
valuated = fulfill); | 16 var scriptPromise = new Promise((fulfill) => window.timelineNetworkResourceE
valuated = fulfill); |
17 | 17 |
18 return Promise.all([imagePromise, scriptPromise]); | 18 return Promise.all([imagePromise, scriptPromise]); |
19 } | 19 } |
20 | 20 |
21 function test() | 21 function test() |
22 { | 22 { |
23 var model = UI.panels.timeline._model; | 23 var model = UI.panels.timeline._model; |
24 | 24 |
(...skipping 25 matching lines...) Expand all Loading... |
50 | 50 |
51 </script> | 51 </script> |
52 </head> | 52 </head> |
53 | 53 |
54 <body onload="runTest()"> | 54 <body onload="runTest()"> |
55 <p> | 55 <p> |
56 Tests the Timeline UI API for network requests. | 56 Tests the Timeline UI API for network requests. |
57 </p> | 57 </p> |
58 </body> | 58 </body> |
59 </html> | 59 </html> |
OLD | NEW |