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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-receive-response-event.html

Issue 1911243002: DevTools: Do not record nested FunctionCall events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaseline Created 4 years, 8 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 | « no previous file | third_party/WebKit/LayoutTests/inspector/tracing/timeline-receive-response-event-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/tracing/timeline-receive-response-event.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-receive-response-event.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-receive-response-event.html
index 1150f04baf0b6bc11f676cc25c331eea583ea122..c4512b49b4192f244b8a3f794c1c3e6f8dab3239 100644
--- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-receive-response-event.html
+++ b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-receive-response-event.html
@@ -34,13 +34,12 @@ function test()
{
// Ignore stray paint & rendering events for better stability.
var categoryName = WebInspector.TimelineUIUtils.eventStyle(traceEvent).category.name;
- if (categoryName !== "loading" && categoryName !== "scripting")
+ if (categoryName !== "loading" && categoryName !== "scripting")
return;
// Here and below: pretend coalesced record are just not there, as coalescation is time dependent and, hence, not stable.
// Filter out InjectedScript function call because they happen out of sync.
- if (typesToDump.has(traceEvent.name) && (traceEvent.name !== "FunctionCall" || traceEvent.args["data"].scriptName)) {
+ if (typesToDump.has(traceEvent.name) && (traceEvent.name !== "FunctionCall" || traceEvent.args["data"].scriptName))
InspectorTest.addResult(" ".repeat(level - 1) + traceEvent.name);
- }
}
InspectorTest.walkTimelineEventTree(dumpEvent);
InspectorTest.completeTest();
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/tracing/timeline-receive-response-event-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698