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

Unified Diff: third_party/WebKit/LayoutTests/inspector/animation/animation-web-anim-negative-start-time.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-web-anim-negative-start-time.html
diff --git a/third_party/WebKit/LayoutTests/inspector/animation/animation-web-anim-negative-start-time.html b/third_party/WebKit/LayoutTests/inspector/animation/animation-web-anim-negative-start-time.html
index ce843a08863201dae273f88b1441b3797a786f0d..fde793b8461b1ccef8974c17de5637499a81fefd 100644
--- a/third_party/WebKit/LayoutTests/inspector/animation/animation-web-anim-negative-start-time.html
+++ b/third_party/WebKit/LayoutTests/inspector/animation/animation-web-anim-negative-start-time.html
@@ -22,13 +22,13 @@ var initialize_Animations = function() {
function test()
{
// Override timeline width for testing
- WebInspector.AnimationTimeline.prototype.width = function() { return 50; }
+ Animation.AnimationTimeline.prototype.width = function() { return 50; }
// 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("startAnimation()");
InspectorTest.waitForAnimationAdded(step2);

Powered by Google App Engine
This is Rietveld 408576698