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

Unified Diff: LayoutTests/inspector/timeline/timeline-timer-fired-from-eval-call-site.html

Issue 461323003: DevTools: Make Timeline tests use only model records (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/inspector/timeline/timeline-script-tag-1.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/timeline/timeline-timer-fired-from-eval-call-site.html
diff --git a/LayoutTests/inspector/timeline/timeline-timer-fired-from-eval-call-site.html b/LayoutTests/inspector/timeline/timeline-timer-fired-from-eval-call-site.html
index 9efdb175fa8ce6758f22deabf9beb8a4bb274144..28453f121365ff49fd28edf02adb43d8b805720d 100644
--- a/LayoutTests/inspector/timeline/timeline-timer-fired-from-eval-call-site.html
+++ b/LayoutTests/inspector/timeline/timeline-timer-fired-from-eval-call-site.html
@@ -33,9 +33,9 @@ function test()
{
function formatter(record)
{
- if (record.type === "TimerFire") {
- var fnCallSite = record.children[0].data;
- InspectorTest.addResult(record.type + " " + fnCallSite.scriptName + ":" + fnCallSite.scriptLine);
+ if (record.type() === "TimerFire") {
+ var fnCallSite = record.children()[0].data();
+ InspectorTest.addResult(record.type() + " " + fnCallSite.scriptName + ":" + fnCallSite.scriptLine);
}
}
InspectorTest.printTimelineRecords(null, formatter);
« no previous file with comments | « LayoutTests/inspector/timeline/timeline-script-tag-1.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698