| Index: LayoutTests/inspector/tracing/timeline-event-causes.html
|
| diff --git a/LayoutTests/inspector/tracing/timeline-event-causes.html b/LayoutTests/inspector/tracing/timeline-event-causes.html
|
| index 8c829cccd7daf69e980e23e434e045f1693a4bcc..910f339a6c24899785fda09a7db706a8a32b8c41 100644
|
| --- a/LayoutTests/inspector/tracing/timeline-event-causes.html
|
| +++ b/LayoutTests/inspector/tracing/timeline-event-causes.html
|
| @@ -31,7 +31,7 @@ function test()
|
| var record = InspectorTest.findFirstTimelineRecord("TimerFire");
|
| InspectorTest.check(record, "Should receive a TimerFire record.");
|
| var contentHelper = new WebInspector.TimelineDetailsContentHelper(record.traceEvent().thread.target(), linkifier, true);
|
| - WebInspector.TracingTimelineUIUtils._generateCauses(record.traceEvent(), contentHelper);
|
| + WebInspector.TimelineUIUtils._generateCauses(record.traceEvent(), contentHelper);
|
| var causes = contentHelper.element.textContent;
|
| InspectorTest.check(causes, "Should generate causes");
|
| checkStringContains(causes, "Timer installedsetTimeoutFunction @ setTimeoutFunction.js:");
|
| @@ -57,7 +57,7 @@ function test()
|
| var record = InspectorTest.findFirstTimelineRecord("FireAnimationFrame");
|
| InspectorTest.check(record, "Should receive a FireAnimationFrame record.");
|
| var contentHelper = new WebInspector.TimelineDetailsContentHelper(record.traceEvent().thread.target(), linkifier, true);
|
| - WebInspector.TracingTimelineUIUtils._generateCauses(record.traceEvent(), contentHelper);
|
| + WebInspector.TimelineUIUtils._generateCauses(record.traceEvent(), contentHelper);
|
| var causes = contentHelper.element.textContent;
|
| InspectorTest.check(causes, "Should generate causes");
|
| checkStringContains(causes, "Animation frame requestedrequestAnimationFrameFunction @ requestAnimationFrameFunction.js:");
|
| @@ -85,7 +85,7 @@ function test()
|
| var record = InspectorTest.findFirstTimelineRecord("RecalculateStyles");
|
| InspectorTest.check(record, "Should receive a RecalculateStyles record.");
|
| var contentHelper = new WebInspector.TimelineDetailsContentHelper(record.traceEvent().thread.target(), linkifier, true);
|
| - WebInspector.TracingTimelineUIUtils._generateCauses(record.traceEvent(), contentHelper);
|
| + WebInspector.TimelineUIUtils._generateCauses(record.traceEvent(), contentHelper);
|
| var causes = contentHelper.element.textContent;
|
| InspectorTest.check(causes, "Should generate causes");
|
| checkStringContains(causes, "First invalidatedstyleRecalcFunction @ styleRecalcFunction.js:");
|
| @@ -114,7 +114,7 @@ function test()
|
| var record = InspectorTest.findFirstTimelineRecord("Layout");
|
| InspectorTest.check(record, "Should receive a Layout record.");
|
| var contentHelper = new WebInspector.TimelineDetailsContentHelper(record.traceEvent().thread.target(), linkifier, true);
|
| - WebInspector.TracingTimelineUIUtils._generateCauses(record.traceEvent(), contentHelper);
|
| + WebInspector.TimelineUIUtils._generateCauses(record.traceEvent(), contentHelper);
|
| var causes = contentHelper.element.textContent;
|
| InspectorTest.check(causes, "Should generate causes");
|
| checkStringContains(causes, "Layout forcedlayoutFunction @ layoutFunction.js:");
|
|
|