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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/paint-profiler-update.html

Issue 2486853002: Timeline: remove TimelineModel inferred properties from TracingModel.Event (Closed)
Patch Set: addressed comments and rebased Created 4 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: third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/paint-profiler-update.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/paint-profiler-update.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/paint-profiler-update.html
index 7a0b2ece8805ef8c588694a48819d7f717562e4e..34142ec6e26ac3368c2b859a9f3a12d7425a7d3b 100644
--- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/paint-profiler-update.html
+++ b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-paint/paint-profiler-update.html
@@ -39,7 +39,7 @@ function test()
for (var event of events) {
if (event.name === WebInspector.TimelineModel.RecordType.Paint) {
paintEvents.push(event);
- if (!event.picture)
+ if (!WebInspector.TimelineData.forEvent(event).picture)
InspectorTest.addResult("Event without picture at " + paintEvents.length);
}
}

Powered by Google App Engine
This is Rietveld 408576698