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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-receive-response-event.html

Issue 1624783002: DevTools: Switch to using fast stack iterator to collect stacks during timeline recording. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressing more caseq@ comments. Created 4 years, 10 months 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(callback) 7 function performActions(callback)
8 { 8 {
9 var image = new Image(); 9 var image = new Image();
10 image.onload = bar; 10 image.onload = bar;
11 image.src = "resources/anImage.png"; 11 image.src = "resources/anImage.png";
12 12
13 function bar() 13 function bar()
14 { 14 {
15 var image = new Image(); 15 var image = new Image();
16 image.onload = function(event) { callback(); } // do not pass event arg ument to the callback. 16 image.onload = function(event) { callback(); } // do not pass event arg ument to the callback.
17 image.src = "resources/anotherImage.png"; 17 image.src = "resources/anotherImage.png";
18 } 18 }
19 } 19 }
20 20
21 function test() 21 function test()
22 { 22 {
23 WebInspector.TimelinePanel.show(); 23 WebInspector.TimelinePanel.show();
24 WebInspector.panels.timeline._model._currentTarget = WebInspector.targetMana ger.mainTarget(); 24 WebInspector.panels.timeline._model._currentTarget = WebInspector.targetMana ger.mainTarget();
25 WebInspector.panels.timeline._captureJSProfileSetting.set(false);
25 InspectorTest.invokeAsyncWithTimeline("performActions", finish); 26 InspectorTest.invokeAsyncWithTimeline("performActions", finish);
26 27
27 function finish() 28 function finish()
28 { 29 {
29 var recordTypes = WebInspector.TimelineModel.RecordType; 30 var recordTypes = WebInspector.TimelineModel.RecordType;
30 var typesToDump = new Set([recordTypes.ResourceSendRequest, recordTypes. ResourceReceiveResponse, recordTypes.ResourceReceivedData, recordTypes.ResourceF inish, 31 var typesToDump = new Set([recordTypes.ResourceSendRequest, recordTypes. ResourceReceiveResponse, recordTypes.ResourceReceivedData, recordTypes.ResourceF inish,
31 recordTypes.EventDispatch, recordTypes.FunctionCall]); 32 recordTypes.EventDispatch, recordTypes.FunctionCall]);
32 function dumpEvent(traceEvent, level) 33 function dumpEvent(traceEvent, level)
33 { 34 {
34 // Ignore stray paint & rendering events for better stability. 35 // Ignore stray paint & rendering events for better stability.
(...skipping 17 matching lines...) Expand all
52 </script> 53 </script>
53 </head> 54 </head>
54 55
55 <body onload="runTest()"> 56 <body onload="runTest()">
56 <p> 57 <p>
57 Tests the Timeline API instrumentation of a SendRequest, ReceiveResponse etc. 58 Tests the Timeline API instrumentation of a SendRequest, ReceiveResponse etc.
58 </p> 59 </p>
59 60
60 </body> 61 </body>
61 </html> 62 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698