| Index: LayoutTests/inspector/timeline/timeline-receive-response-event.html
|
| diff --git a/LayoutTests/inspector/timeline/timeline-receive-response-event.html b/LayoutTests/inspector/timeline/timeline-receive-response-event.html
|
| index 5d6f8521d7d46c5739ca86eec9a03b51d61c7319..fd40c4df6bff07565ed97687c3d9110f8e193f9a 100644
|
| --- a/LayoutTests/inspector/timeline/timeline-receive-response-event.html
|
| +++ b/LayoutTests/inspector/timeline/timeline-receive-response-event.html
|
| @@ -20,7 +20,7 @@ function performActions()
|
| function test()
|
| {
|
| WebInspector.inspectorView.showPanel("timeline");
|
| - WebInspector.panels.timeline._model._collectionEnabled = true;
|
| + WebInspector.inspectorView.panel("timeline")._model._collectionEnabled = true;
|
|
|
| TimelineAgent.start(step1);
|
|
|
| @@ -52,9 +52,9 @@ function test()
|
| dumpFormattedRecord(presentationRecord.presentationChildren()[i], childPrefix);
|
| }
|
| }
|
| - WebInspector.panels.timeline._model._collectionEnabled = false;
|
| + WebInspector.inspectorView.panel("timeline")._model._collectionEnabled = false;
|
|
|
| - var records = WebInspector.panels.timeline._currentViews[0]._rootRecord().presentationChildren();
|
| + var records = WebInspector.inspectorView.panel("timeline")._currentViews[0]._rootRecord().presentationChildren();
|
| for (var i = 0; i < records.length; ++i)
|
| dumpFormattedRecord(records[i]);
|
| InspectorTest.completeTest();
|
|
|