Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Unified Diff: third_party/WebKit/LayoutTests/inspector/animation/animation-timeline.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698