| Index: LayoutTests/inspector/timeline-dfs.html
|
| diff --git a/LayoutTests/inspector/timeline-dfs.html b/LayoutTests/inspector/timeline-dfs.html
|
| index bee15285efddf33577f2b1d24d34eb0254581fec..e09afadf1f3f7aedad943647c2509e021389e0b8 100644
|
| --- a/LayoutTests/inspector/timeline-dfs.html
|
| +++ b/LayoutTests/inspector/timeline-dfs.html
|
| @@ -36,17 +36,17 @@ var test = function()
|
| ];
|
|
|
| InspectorTest.addResult("DFS preorder:");
|
| - WebInspector.TimelinePresentationModel.forAllRecords(records, dumper);
|
| + WebInspector.TimelineModel.forAllRecords(records, dumper);
|
| InspectorTest.addResult("");
|
|
|
| InspectorTest.addResult("DFS postorder:");
|
| - WebInspector.TimelinePresentationModel.forAllRecords(records, null, dumper);
|
| + WebInspector.TimelineModel.forAllRecords(records, null, dumper);
|
| InspectorTest.completeTest();
|
| }
|
|
|
| </script>
|
| </head>
|
| <body onload="runTest()">
|
| -<p>Tests TimelinePresentationModel.forAllRecords function.</p>
|
| +<p>Tests TimelineModel.forAllRecords function.</p>
|
| </body>
|
| </html>
|
|
|