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

Unified Diff: Source/devtools/front_end/elements/StylesSidebarPane.js

Issue 682423002: Devtools Animations: Show subtree animations for a given node (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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: Source/devtools/front_end/elements/StylesSidebarPane.js
diff --git a/Source/devtools/front_end/elements/StylesSidebarPane.js b/Source/devtools/front_end/elements/StylesSidebarPane.js
index 75cef59dd38dbd84380fc2548021fe90f4ab00a3..26a0db4e420fcd42282dc44a3a2f9d54fd154322 100644
--- a/Source/devtools/front_end/elements/StylesSidebarPane.js
+++ b/Source/devtools/front_end/elements/StylesSidebarPane.js
@@ -579,7 +579,7 @@ WebInspector.StylesSidebarPane.prototype = {
if (this._computedStylePane.isShowing())
this._target.cssModel.getComputedStyleAsync(node.id, computedCallback);
if (Runtime.experiments.isEnabled("animationInspection"))
- this._target.animationModel.getAnimationPlayers(node.id, animationPlayersCallback.bind(this));
+ this._target.animationModel.getAnimationPlayers(node.id, false, animationPlayersCallback.bind(this));
this._target.cssModel.getInlineStylesAsync(node.id, inlineCallback);
this._target.cssModel.getMatchedStylesAsync(node.id, false, false, stylesCallback.bind(this));
},
« no previous file with comments | « Source/devtools/front_end/elements/AnimationsSidebarPane.js ('k') | Source/devtools/front_end/elements/elementsPanel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698