| Index: third_party/WebKit/LayoutTests/inspector/animation/animation-timeline.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/animation/animation-timeline.html b/third_party/WebKit/LayoutTests/inspector/animation/animation-timeline.html
|
| index 40b3f6ca949cd6913ab81527eff943641249c2ab..2d1a5b57d70fcb51366d2d238caf3eb8e461d4ef 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/animation/animation-timeline.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/animation/animation-timeline.html
|
| @@ -56,13 +56,13 @@ var initialize_Animations = function() {
|
| function test()
|
| {
|
| // Override timeline width for testing
|
| - WebInspector.AnimationTimeline.prototype.width = function() { return 1000; }
|
| + Animation.AnimationTimeline.prototype.width = function() { return 1000; }
|
| // Override animation color for testing
|
| // FIXME: Set animation name of Web Animation instead; not supported yet
|
| - WebInspector.AnimationUI.Color = function() { return "black"; }
|
| + Animation.AnimationUI.Color = function() { return "black"; }
|
|
|
| - WebInspector.viewManager.showView("animations");
|
| - var timeline = self.runtime.sharedInstance(WebInspector.AnimationTimeline);
|
| + UI.viewManager.showView("animations");
|
| + var timeline = self.runtime.sharedInstance(Animation.AnimationTimeline);
|
| InspectorTest.evaluateInPage("startAnimationWithDelay()");
|
| InspectorTest.waitForAnimationAdded(step2);
|
|
|
|
|