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

Unified Diff: LayoutTests/inspector/elements/animation-timeline.html

Issue 1149373004: Devtools: Extensible toolbar in SSP (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix test Created 5 years, 7 months 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
« no previous file with comments | « no previous file | Source/devtools/devtools.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | Source/devtools/devtools.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698