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

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

Issue 713913002: DevTools: merge TracingTimelineUIUtils into TimelineUIUtils (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Deleted instance refs 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 side-by-side diff with in-line comments
Download patch
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:");
« no previous file with comments | « LayoutTests/inspector/tracing/timeline-coalescing.html ('k') | LayoutTests/inspector/tracing/timeline-node-reference.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698