| Index: LayoutTests/inspector/elements/animation-timeline.html
|
| diff --git a/LayoutTests/inspector/elements/animation-timeline.html b/LayoutTests/inspector/elements/animation-timeline.html
|
| index cafaa1967de884308bfa52b9d4330c40a6352b9c..3c862878f8da0aee9d8c5c212b8387aa46a10bf7 100644
|
| --- a/LayoutTests/inspector/elements/animation-timeline.html
|
| +++ b/LayoutTests/inspector/elements/animation-timeline.html
|
| @@ -29,9 +29,9 @@ function startAnimationWithStepTiming()
|
| function test()
|
| {
|
| InspectorTest.selectNodeWithId("node", step1);
|
| - var stylesPane = WebInspector.panels.elements.sidebarPanes.styles;
|
| - stylesPane._toggleAnimationsControlPane();
|
| - var timeline = stylesPane._animationTimeline;
|
| + var timeline = new WebInspector.AnimationTimeline();
|
| + var elementsPanel = WebInspector.ElementsPanel.instance();
|
| + elementsPanel.setWidgetBelowDOM(timeline);
|
| // Override timeline width for testing
|
| WebInspector.AnimationTimeline.prototype.width = function() { return 1000; }
|
| // Override animation color for testing
|
|
|