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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-network/timeline-network-resource.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 var scriptUrl = "timeline-network-resource.js"; 7 var scriptUrl = "../../../http/tests/inspector/tracing/resources/timeline-networ k-resource.js";
8 8
9 function performActions() 9 function performActions()
10 { 10 {
11 var promise = new Promise((fulfill) => window.timelineNetworkResourceEvaluat ed = fulfill); 11 var promise = new Promise((fulfill) => window.timelineNetworkResourceEvaluat ed = fulfill);
12 var script = document.createElement("script"); 12 var script = document.createElement("script");
13 script.src = scriptUrl; 13 script.src = scriptUrl;
14 document.body.appendChild(script); 14 document.body.appendChild(script);
15 return promise; 15 return promise;
16 } 16 }
17 17
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 81
82 </script> 82 </script>
83 </head> 83 </head>
84 84
85 <body onload="runTest()"> 85 <body onload="runTest()">
86 <p> 86 <p>
87 Tests the Timeline API instrumentation of a network resource load 87 Tests the Timeline API instrumentation of a network resource load
88 </p> 88 </p>
89 </body> 89 </body>
90 </html> 90 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698