| 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();
|
|
|