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

Side by Side Diff: LayoutTests/inspector/tracing/timeline-event-causes.html

Issue 717243002: Timeline: do not imply event.thread.target is the main target (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: avoid keep stale model in TimelineFrameModel Created 6 years, 1 month 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 | Annotate | Revision Log
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 function test() 6 function test()
7 { 7 {
8 function checkStringContains(string, contains) 8 function checkStringContains(string, contains)
9 { 9 {
10 var doesContain = string.indexOf(contains) >= 0; 10 var doesContain = string.indexOf(contains) >= 0;
(...skipping 12 matching lines...) Expand all
23 var source = setTimeoutFunction.toString(); 23 var source = setTimeoutFunction.toString();
24 source += "\n//@ sourceURL=setTimeoutFunction.js"; 24 source += "\n//@ sourceURL=setTimeoutFunction.js";
25 InspectorTest.evaluateInPage(source); 25 InspectorTest.evaluateInPage(source);
26 26
27 InspectorTest.invokeAsyncWithTimeline("setTimeoutFunction", finishAn dRunNextTest); 27 InspectorTest.invokeAsyncWithTimeline("setTimeoutFunction", finishAn dRunNextTest);
28 function finishAndRunNextTest() 28 function finishAndRunNextTest()
29 { 29 {
30 var linkifier = new WebInspector.Linkifier(); 30 var linkifier = new WebInspector.Linkifier();
31 var record = InspectorTest.findFirstTimelineRecord("TimerFire"); 31 var record = InspectorTest.findFirstTimelineRecord("TimerFire");
32 InspectorTest.check(record, "Should receive a TimerFire record." ); 32 InspectorTest.check(record, "Should receive a TimerFire record." );
33 var contentHelper = new WebInspector.TimelineDetailsContentHelpe r(record.traceEvent().thread.target(), linkifier, true); 33 var contentHelper = new WebInspector.TimelineDetailsContentHelpe r(InspectorTest.timelineModel().target(), linkifier, true);
34 WebInspector.TimelineUIUtils._generateCauses(record.traceEvent() , contentHelper); 34 WebInspector.TimelineUIUtils._generateCauses(record.traceEvent() , InspectorTest.timelineModel().target(), contentHelper);
35 var causes = contentHelper.element.textContent; 35 var causes = contentHelper.element.textContent;
36 InspectorTest.check(causes, "Should generate causes"); 36 InspectorTest.check(causes, "Should generate causes");
37 checkStringContains(causes, "Timer installedsetTimeoutFunction @ setTimeoutFunction.js:"); 37 checkStringContains(causes, "Timer installedsetTimeoutFunction @ setTimeoutFunction.js:");
38 next(); 38 next();
39 } 39 }
40 }, 40 },
41 41
42 function testRequestAnimationFrame(next) 42 function testRequestAnimationFrame(next)
43 { 43 {
44 function requestAnimationFrameFunction(callback) 44 function requestAnimationFrameFunction(callback)
45 { 45 {
46 requestAnimationFrame(callback); 46 requestAnimationFrame(callback);
47 } 47 }
48 48
49 var source = requestAnimationFrameFunction.toString(); 49 var source = requestAnimationFrameFunction.toString();
50 source += "\n//@ sourceURL=requestAnimationFrameFunction.js"; 50 source += "\n//@ sourceURL=requestAnimationFrameFunction.js";
51 InspectorTest.evaluateInPage(source); 51 InspectorTest.evaluateInPage(source);
52 52
53 InspectorTest.invokeAsyncWithTimeline("requestAnimationFrameFunction ", finishAndRunNextTest); 53 InspectorTest.invokeAsyncWithTimeline("requestAnimationFrameFunction ", finishAndRunNextTest);
54 function finishAndRunNextTest() 54 function finishAndRunNextTest()
55 { 55 {
56 var linkifier = new WebInspector.Linkifier(); 56 var linkifier = new WebInspector.Linkifier();
57 var record = InspectorTest.findFirstTimelineRecord("FireAnimatio nFrame"); 57 var record = InspectorTest.findFirstTimelineRecord("FireAnimatio nFrame");
58 InspectorTest.check(record, "Should receive a FireAnimationFrame record."); 58 InspectorTest.check(record, "Should receive a FireAnimationFrame record.");
59 var contentHelper = new WebInspector.TimelineDetailsContentHelpe r(record.traceEvent().thread.target(), linkifier, true); 59 var contentHelper = new WebInspector.TimelineDetailsContentHelpe r(InspectorTest.timelineModel().target(), linkifier, true);
60 WebInspector.TimelineUIUtils._generateCauses(record.traceEvent() , contentHelper); 60 WebInspector.TimelineUIUtils._generateCauses(record.traceEvent() , InspectorTest.timelineModel().target(), contentHelper);
61 var causes = contentHelper.element.textContent; 61 var causes = contentHelper.element.textContent;
62 InspectorTest.check(causes, "Should generate causes"); 62 InspectorTest.check(causes, "Should generate causes");
63 checkStringContains(causes, "Animation frame requestedrequestAni mationFrameFunction @ requestAnimationFrameFunction.js:"); 63 checkStringContains(causes, "Animation frame requestedrequestAni mationFrameFunction @ requestAnimationFrameFunction.js:");
64 next(); 64 next();
65 } 65 }
66 }, 66 },
67 67
68 function testStyleRecalc(next) 68 function testStyleRecalc(next)
69 { 69 {
70 function styleRecalcFunction(callback) 70 function styleRecalcFunction(callback)
71 { 71 {
72 var element = document.getElementById("testElement"); 72 var element = document.getElementById("testElement");
73 element.style.backgroundColor = "papayawhip"; 73 element.style.backgroundColor = "papayawhip";
74 callback(); 74 callback();
75 } 75 }
76 76
77 var source = styleRecalcFunction.toString(); 77 var source = styleRecalcFunction.toString();
78 source += "\n//@ sourceURL=styleRecalcFunction.js"; 78 source += "\n//@ sourceURL=styleRecalcFunction.js";
79 InspectorTest.evaluateInPage(source); 79 InspectorTest.evaluateInPage(source);
80 80
81 InspectorTest.invokeAsyncWithTimeline("styleRecalcFunction", finishA ndRunNextTest); 81 InspectorTest.invokeAsyncWithTimeline("styleRecalcFunction", finishA ndRunNextTest);
82 function finishAndRunNextTest() 82 function finishAndRunNextTest()
83 { 83 {
84 var linkifier = new WebInspector.Linkifier(); 84 var linkifier = new WebInspector.Linkifier();
85 var record = InspectorTest.findFirstTimelineRecord("RecalculateS tyles"); 85 var record = InspectorTest.findFirstTimelineRecord("RecalculateS tyles");
86 InspectorTest.check(record, "Should receive a RecalculateStyles record."); 86 InspectorTest.check(record, "Should receive a RecalculateStyles record.");
87 var contentHelper = new WebInspector.TimelineDetailsContentHelpe r(record.traceEvent().thread.target(), linkifier, true); 87 var contentHelper = new WebInspector.TimelineDetailsContentHelpe r(InspectorTest.timelineModel().target(), linkifier, true);
88 WebInspector.TimelineUIUtils._generateCauses(record.traceEvent() , contentHelper); 88 WebInspector.TimelineUIUtils._generateCauses(record.traceEvent() , InspectorTest.timelineModel().target(), contentHelper);
89 var causes = contentHelper.element.textContent; 89 var causes = contentHelper.element.textContent;
90 InspectorTest.check(causes, "Should generate causes"); 90 InspectorTest.check(causes, "Should generate causes");
91 checkStringContains(causes, "First invalidatedstyleRecalcFunctio n @ styleRecalcFunction.js:"); 91 checkStringContains(causes, "First invalidatedstyleRecalcFunctio n @ styleRecalcFunction.js:");
92 next(); 92 next();
93 } 93 }
94 }, 94 },
95 95
96 function testLayout(next) 96 function testLayout(next)
97 { 97 {
98 function layoutFunction(callback) 98 function layoutFunction(callback)
99 { 99 {
100 var element = document.getElementById("testElement"); 100 var element = document.getElementById("testElement");
101 element.style.width = "200px"; 101 element.style.width = "200px";
102 var forceLayout = element.offsetWidth; 102 var forceLayout = element.offsetWidth;
103 callback(); 103 callback();
104 } 104 }
105 105
106 var source = layoutFunction.toString(); 106 var source = layoutFunction.toString();
107 source += "\n//@ sourceURL=layoutFunction.js"; 107 source += "\n//@ sourceURL=layoutFunction.js";
108 InspectorTest.evaluateInPage(source); 108 InspectorTest.evaluateInPage(source);
109 109
110 InspectorTest.invokeAsyncWithTimeline("layoutFunction", finishAndRun NextTest); 110 InspectorTest.invokeAsyncWithTimeline("layoutFunction", finishAndRun NextTest);
111 function finishAndRunNextTest() 111 function finishAndRunNextTest()
112 { 112 {
113 var linkifier = new WebInspector.Linkifier(); 113 var linkifier = new WebInspector.Linkifier();
114 var record = InspectorTest.findFirstTimelineRecord("Layout"); 114 var record = InspectorTest.findFirstTimelineRecord("Layout");
115 InspectorTest.check(record, "Should receive a Layout record."); 115 InspectorTest.check(record, "Should receive a Layout record.");
116 var contentHelper = new WebInspector.TimelineDetailsContentHelpe r(record.traceEvent().thread.target(), linkifier, true); 116 var contentHelper = new WebInspector.TimelineDetailsContentHelpe r(InspectorTest.timelineModel().target(), linkifier, true);
117 WebInspector.TimelineUIUtils._generateCauses(record.traceEvent() , contentHelper); 117 WebInspector.TimelineUIUtils._generateCauses(record.traceEvent() , InspectorTest.timelineModel().target(), contentHelper);
118 var causes = contentHelper.element.textContent; 118 var causes = contentHelper.element.textContent;
119 InspectorTest.check(causes, "Should generate causes"); 119 InspectorTest.check(causes, "Should generate causes");
120 checkStringContains(causes, "Layout forcedlayoutFunction @ layou tFunction.js:"); 120 checkStringContains(causes, "Layout forcedlayoutFunction @ layou tFunction.js:");
121 checkStringContains(causes, "First layout invalidationlayoutFunc tion @ layoutFunction.js:"); 121 checkStringContains(causes, "First layout invalidationlayoutFunc tion @ layoutFunction.js:");
122 next(); 122 next();
123 } 123 }
124 } 124 }
125 ]); 125 ]);
126 } 126 }
127 </script> 127 </script>
128 </head> 128 </head>
129 129
130 <body onload="runTest()"> 130 <body onload="runTest()">
131 <p> 131 <p>
132 Test that causes are correctly generated for various types of events. 132 Test that causes are correctly generated for various types of events.
133 </p> 133 </p>
134 <div id="testElement"></div> 134 <div id="testElement"></div>
135 </body> 135 </body>
136 </html> 136 </html>
OLDNEW
« no previous file with comments | « LayoutTests/inspector/tracing/layer-tree-expected.txt ('k') | LayoutTests/inspector/tracing/timeline-script-id.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698