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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-network/timeline-network-resource-details.html

Issue 2540023003: Dispatch encoded_data_length separately in content/child (Closed)
Patch Set: fix Created 4 years 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 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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698