| Index: third_party/WebKit/LayoutTests/inspector/tracing/timeline-network-received-data.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-network-received-data.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-network-received-data.html
|
| index a7372e67c1d606ab01f60c6ebecb41f394292175..2a07401c62f03859450dd73b70a1bc564c435991 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-network-received-data.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-network-received-data.html
|
| @@ -37,10 +37,10 @@ function test()
|
| function done()
|
| {
|
| InspectorTest.addResult("Script evaluated.");
|
| - var record = InspectorTest.findFirstTimelineRecord("ResourceReceivedData");
|
| + var record = InspectorTest.findFirstTimelineRecord("ResourceDispatcher::OnReceivedData");
|
| if (record) {
|
| var data = record.traceEvent().args["data"];
|
| - if (data && typeof data.encodedDataLength === "number")
|
| + if (data && typeof data["encodedDataLength"] === "number")
|
| InspectorTest.addResult("Resource received data has length, test passed.");
|
| }
|
| InspectorTest.completeTest();
|
|
|